-- MySQL dump 10.13  Distrib 9.5.0, for macos15.7 (arm64)
--
-- Host: localhost    Database: showprima_dev
-- ------------------------------------------------------
-- Server version	9.5.0

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
SET @MYSQLDUMP_TEMP_LOG_BIN = @@SESSION.SQL_LOG_BIN;
SET @@SESSION.SQL_LOG_BIN= 0;

--
-- GTID state at the beginning of the backup 
--

SET @@GLOBAL.GTID_PURGED=/*!80000 '+'*/ '94c59b6a-9ae5-11f0-a279-bbf28bdfbe19:1-26874';

--
-- Table structure for table `account_setup_invitations`
--

DROP TABLE IF EXISTS `account_setup_invitations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `account_setup_invitations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `first_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `last_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `setup_token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `invitation_email_tracking_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `invitation_email_sent_at` timestamp NULL DEFAULT NULL,
  `invitation_email_opened_at` timestamp NULL DEFAULT NULL,
  `invitation_email_clicked_at` timestamp NULL DEFAULT NULL,
  `link_clicked` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'setup_account, decline, unsubscribe',
  `email_send_attempts` int NOT NULL DEFAULT '0',
  `email_send_failed` tinyint(1) NOT NULL DEFAULT '0',
  `email_send_error` text COLLATE utf8mb4_unicode_ci,
  `bounce_type` enum('hard','soft','none') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'none',
  `bounce_reason` text COLLATE utf8mb4_unicode_ci,
  `bounced_at` timestamp NULL DEFAULT NULL,
  `soft_bounce_count` int NOT NULL DEFAULT '0',
  `status` enum('pending','completed','expired','declined','bounced') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `expires_at` timestamp NOT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `unsubscribed_at` timestamp NULL DEFAULT NULL,
  `metadata` json DEFAULT NULL,
  `campaign_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `source` enum('csv','bulk','api','manual','scheduled') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'manual' COMMENT 'How campaign was created',
  `target_filter` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'For bulk campaigns: all, high_value, repeat_customers',
  `campaign_status` enum('scheduled','active','paused','completed','cancelled') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active' COMMENT 'Current campaign lifecycle state',
  `batch_config` json DEFAULT NULL COMMENT 'Stores: batch_size, batch_delay, max_per_hour',
  `progress_data` json DEFAULT NULL COMMENT 'Stores: current_batch, total_batches, sent, pending, failed, skipped',
  `paused_at` timestamp NULL DEFAULT NULL,
  `resumed_at` timestamp NULL DEFAULT NULL,
  `cancelled_at` timestamp NULL DEFAULT NULL,
  `user_id` bigint unsigned DEFAULT NULL,
  `sent_by` bigint unsigned DEFAULT NULL,
  `decline_reason` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `account_setup_invitations_setup_token_unique` (`setup_token`),
  KEY `account_setup_invitations_created_at_index` (`created_at`),
  KEY `account_setup_invitations_status_expires_at_index` (`status`,`expires_at`),
  KEY `account_setup_invitations_email_index` (`email`),
  KEY `account_setup_invitations_status_index` (`status`),
  KEY `account_setup_invitations_expires_at_index` (`expires_at`),
  KEY `account_setup_invitations_user_id_index` (`user_id`),
  KEY `idx_campaign_status` (`campaign_status`),
  KEY `idx_source` (`source`),
  KEY `idx_campaign_name` (`campaign_name`),
  KEY `idx_created_at` (`created_at`),
  KEY `idx_invitation_email_tracking_id` (`invitation_email_tracking_id`),
  KEY `idx_invitation_email_sent_at` (`invitation_email_sent_at`),
  KEY `idx_bounced_at` (`bounced_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `account_setup_invitations`
--

LOCK TABLES `account_setup_invitations` WRITE;
/*!40000 ALTER TABLE `account_setup_invitations` DISABLE KEYS */;
/*!40000 ALTER TABLE `account_setup_invitations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `act_sponsor_photos`
--

DROP TABLE IF EXISTS `act_sponsor_photos`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `act_sponsor_photos` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `act_sponsor_photos`
--

LOCK TABLES `act_sponsor_photos` WRITE;
/*!40000 ALTER TABLE `act_sponsor_photos` DISABLE KEYS */;
/*!40000 ALTER TABLE `act_sponsor_photos` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `acts`
--

DROP TABLE IF EXISTS `acts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `acts` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `event_id` bigint unsigned NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `no_of_perticipant` int NOT NULL,
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `video` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `added_by` bigint unsigned DEFAULT NULL,
  `deleted_by` bigint unsigned DEFAULT NULL,
  `status` tinyint NOT NULL DEFAULT '1',
  `is_deleted` tinyint NOT NULL DEFAULT '0' COMMENT 'allow only 0 / 1 for true and false',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `acts_event_id_foreign` (`event_id`),
  KEY `acts_added_by_foreign` (`added_by`),
  KEY `acts_deleted_by_foreign` (`deleted_by`),
  CONSTRAINT `acts_added_by_foreign` FOREIGN KEY (`added_by`) REFERENCES `users` (`id`),
  CONSTRAINT `acts_deleted_by_foreign` FOREIGN KEY (`deleted_by`) REFERENCES `users` (`id`),
  CONSTRAINT `acts_event_id_foreign` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `acts`
--

LOCK TABLES `acts` WRITE;
/*!40000 ALTER TABLE `acts` DISABLE KEYS */;
/*!40000 ALTER TABLE `acts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_password_resets`
--

DROP TABLE IF EXISTS `admin_password_resets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_password_resets` (
  `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  KEY `admin_password_resets_email_index` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_password_resets`
--

LOCK TABLES `admin_password_resets` WRITE;
/*!40000 ALTER TABLE `admin_password_resets` DISABLE KEYS */;
/*!40000 ALTER TABLE `admin_password_resets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_permissions`
--

DROP TABLE IF EXISTS `admin_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_permissions` (
  `admin_id` bigint unsigned NOT NULL,
  `permission_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`admin_id`,`permission_id`),
  KEY `idx_admin_id` (`admin_id`),
  CONSTRAINT `admin_permissions_admin_id_foreign` FOREIGN KEY (`admin_id`) REFERENCES `admins` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_permissions`
--

LOCK TABLES `admin_permissions` WRITE;
/*!40000 ALTER TABLE `admin_permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `admin_permissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_roles`
--

DROP TABLE IF EXISTS `admin_roles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_roles` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `display_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `permissions` json NOT NULL,
  `is_system` tinyint(1) NOT NULL DEFAULT '0',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `admin_roles_name_unique` (`name`),
  KEY `admin_roles_is_active_index` (`is_active`),
  KEY `admin_roles_is_system_index` (`is_system`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_roles`
--

LOCK TABLES `admin_roles` WRITE;
/*!40000 ALTER TABLE `admin_roles` DISABLE KEYS */;
INSERT INTO `admin_roles` VALUES (1,'super_admin','Super Admin','Full system access with all permissions including Ticket Office/MBS','[\"events.view\", \"events.create\", \"events.edit\", \"events.delete\", \"events.manage_venues\", \"orders.view\", \"orders.edit\", \"orders.refund\", \"orders.export\", \"orders.statistics\", \"seats.view_availability\", \"seats.shadow_sold\", \"seats.block\", \"seats.release\", \"seats.bulk_operations\", \"admins.view\", \"admins.create\", \"admins.edit\", \"admins.delete\", \"admins.manage_roles\", \"settings.banners\", \"settings.content\", \"settings.email_templates\", \"settings.system_config\", \"finance.view_revenue\", \"finance.view_detailed_reports\", \"finance.export_reports\", \"customers.view\", \"customers.edit\", \"customers.export\", \"system.view_logs\", \"system.view_metrics\", \"system.emergency_controls\", \"mbs.access\", \"mbs.admin\", \"pos.sell\", \"pos.recall\", \"financial.view\", \"financial.export\", \"scanners.manage\", \"scanners.view\", \"wristband.print\", \"reports.view\", \"settings.manage\"]',1,1,'2025-11-27 20:24:41','2025-11-30 15:39:18'),(2,'staff','Staff','Limited access for staff members - view-only permissions','[\"events.view\", \"orders.view\", \"seats.view_availability\"]',0,1,'2025-11-27 20:24:41','2025-11-27 20:24:41'),(3,'mbs_admin','MBS Admin','Customer and order management permissions','[\"customers.view\", \"customers.edit\", \"customers.export\", \"orders.view\", \"events.view\"]',0,1,'2025-11-27 20:24:41','2025-11-27 20:24:41'),(4,'ticket_office_manager','Ticket Office Manager','Full access to Ticket Office operations','[\"mbs.access\", \"mbs.admin\", \"pos.sell\", \"pos.recall\", \"financial.view\", \"financial.export\", \"scanners.manage\", \"scanners.view\", \"wristband.print\", \"reports.view\", \"settings.manage\"]',0,1,'2025-11-27 20:24:41','2025-11-27 20:24:41'),(5,'pos_operator','POS Operator','Ticket sales and order management only','[\"mbs.access\", \"pos.sell\", \"pos.recall\", \"reports.view\"]',0,1,'2025-11-27 20:24:41','2025-11-27 20:24:41'),(6,'financial_viewer','Financial Viewer','Read-only access to financial reports','[\"mbs.access\", \"financial.view\", \"financial.export\", \"reports.view\", \"scanners.view\"]',0,1,'2025-11-27 20:24:41','2025-11-27 20:24:41');
/*!40000 ALTER TABLE `admin_roles` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `admins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admins` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `backup_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `password_changed_at` timestamp NULL DEFAULT NULL,
  `profile_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `role_id` bigint unsigned DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `last_login_at` timestamp NULL DEFAULT NULL,
  `last_login_ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `last_action_at` timestamp NULL DEFAULT NULL,
  `last_action_description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `suspension_reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `suspended_at` timestamp NULL DEFAULT NULL,
  `suspended_by` bigint unsigned DEFAULT NULL,
  `created_by` bigint unsigned DEFAULT NULL,
  `updated_by` bigint unsigned DEFAULT NULL,
  `remember_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `admins_username_unique` (`username`),
  UNIQUE KEY `admins_email_unique` (`email`),
  KEY `admins_is_active_index` (`is_active`),
  KEY `admins_role_id_index` (`role_id`),
  KEY `admins_email_index` (`email`),
  KEY `admins_username_index` (`username`),
  KEY `admins_suspended_by_foreign` (`suspended_by`),
  KEY `admins_created_by_foreign` (`created_by`),
  KEY `admins_updated_by_foreign` (`updated_by`),
  KEY `admins_backup_email_index` (`backup_email`),
  KEY `admins_suspended_at_index` (`suspended_at`),
  KEY `admins_last_action_at_index` (`last_action_at`),
  CONSTRAINT `admins_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `admins` (`id`) ON DELETE SET NULL,
  CONSTRAINT `admins_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `admin_roles` (`id`) ON DELETE SET NULL,
  CONSTRAINT `admins_suspended_by_foreign` FOREIGN KEY (`suspended_by`) REFERENCES `admins` (`id`) ON DELETE SET NULL,
  CONSTRAINT `admins_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `admins` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `admins` WRITE;
/*!40000 ALTER TABLE `admins` DISABLE KEYS */;
INSERT INTO `admins` VALUES (1,'QA Test Admin','oglover','qa-test@showprima.com',NULL,NULL,NULL,'$2y$10$Qnmktp73IxcX/tZY/fq9HOndndXeTFtd2Dko6Q.OVOHUAIXbPnXW.',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'CpjBAnQjv9','2025-11-23 22:05:48','2025-11-23 22:05:48'),(2,'Super Admin','','admin@local.com',NULL,NULL,NULL,'$2y$10$229kA8nDSpFiqmYdsCgIXe/N/ksQIi7XR815kuN5FyNAd8EywShfa',NULL,NULL,1,1,'2025-12-03 12:36:04','192.168.0.30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-24 13:11:09','2025-12-03 12:36:04'),(4,'Test Manager','test_manager','manager@test.showprima.com',NULL,NULL,NULL,'$2y$10$zeJdDttOS0foxpH1HrLh5OSL6JDd6VK7NR1zOrGVo00Wn288xiBIW',NULL,NULL,4,1,'2025-11-27 21:18:02','127.0.0.1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-27 21:15:10','2025-11-27 21:18:02'),(5,'Test Operator','test_operator','operator@test.showprima.com',NULL,NULL,NULL,'$2y$10$UPYGw5VxgIhy.rzTrhxUIOevS8bCYNu5o4u9m97C1i6Kdl.t6M8HW',NULL,NULL,5,1,'2025-11-27 21:59:11','127.0.0.1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-27 21:15:10','2025-11-27 21:59:11'),(6,'Test Viewer','test_viewer','viewer@test.showprima.com',NULL,NULL,NULL,'$2y$10$d/DMoe362Dy6Y4eZTNdLD.awNuzLSNE2lmi0VxqI9ErUliWsxjVIu',NULL,NULL,6,1,'2025-11-27 21:59:11','127.0.0.1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2025-11-27 21:15:11','2025-11-27 21:59:11'),(7,'Super Admin','superadmin','admin@globalgala.com',NULL,'+1234567890',NULL,'$2y$10$ggvkkDHfbItrLUYECk7r2OfySbHcpngyj82TgwOZgBi68ZPCxUoL2',NULL,NULL,1,1,'2025-12-04 13:39:42','127.0.0.1',NULL,NULL,'System super administrator with full access',NULL,NULL,NULL,NULL,NULL,NULL,'2025-12-04 13:31:33','2025-12-04 13:39:42'),(8,'Staff User','staff','staff@globalgala.com',NULL,'+1234567891',NULL,'$2y$10$1.YBmSresqe9pBHR.vbW9O7jjHRjHRq2kpyfSNHbcyd9DPK0NCLyi',NULL,NULL,2,1,NULL,NULL,NULL,NULL,'Staff member with view-only permissions',NULL,NULL,NULL,NULL,NULL,NULL,'2025-12-04 13:31:33','2025-12-04 13:31:33'),(9,'MBS Admin','mbsadmin','mbs@globalgala.com',NULL,'+1234567892',NULL,'$2y$10$6g1JazTo0D8Ai05BdLejyuFF1x1crBkKuzVsJU.vS4Mqs74umC7.K',NULL,NULL,3,1,NULL,NULL,NULL,NULL,'MBS administrator with customer and order management access',NULL,NULL,NULL,NULL,NULL,NULL,'2025-12-04 13:31:33','2025-12-04 13:31:33');
/*!40000 ALTER TABLE `admins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `analytics_events`
--

DROP TABLE IF EXISTS `analytics_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `analytics_events` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `event_id` bigint unsigned DEFAULT NULL,
  `session_id` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
  `event_type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
  `event_status` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `event_data` text COLLATE utf8mb4_unicode_ci,
  `user_agent` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `analytics_events_event_id_event_type_created_at_index` (`event_id`,`event_type`,`created_at`),
  KEY `analytics_events_session_id_created_at_index` (`session_id`,`created_at`),
  KEY `analytics_events_session_id_index` (`session_id`),
  KEY `analytics_events_event_type_index` (`event_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `analytics_events`
--

LOCK TABLES `analytics_events` WRITE;
/*!40000 ALTER TABLE `analytics_events` DISABLE KEYS */;
/*!40000 ALTER TABLE `analytics_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `archived_event_artist`
--

DROP TABLE IF EXISTS `archived_event_artist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `archived_event_artist` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `archived_event_id` bigint unsigned NOT NULL,
  `artist_id` bigint unsigned NOT NULL,
  `display_order` int NOT NULL DEFAULT '0',
  `role` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_archived_event_artist` (`archived_event_id`,`artist_id`),
  KEY `archived_event_artist_archived_event_id_index` (`archived_event_id`),
  KEY `archived_event_artist_artist_id_index` (`artist_id`),
  CONSTRAINT `archived_event_artist_archived_event_id_foreign` FOREIGN KEY (`archived_event_id`) REFERENCES `archived_events` (`id`) ON DELETE CASCADE,
  CONSTRAINT `archived_event_artist_artist_id_foreign` FOREIGN KEY (`artist_id`) REFERENCES `artists` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `archived_event_artist`
--

LOCK TABLES `archived_event_artist` WRITE;
/*!40000 ALTER TABLE `archived_event_artist` DISABLE KEYS */;
INSERT INTO `archived_event_artist` VALUES (1,3,53,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(2,4,30,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(3,4,67,2,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(4,5,42,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(5,5,30,2,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(6,5,46,3,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(7,7,53,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(8,8,30,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(9,9,48,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(10,10,53,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(11,11,30,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(12,13,53,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(13,14,38,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(14,17,38,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(15,17,54,2,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(16,18,33,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(17,19,36,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(18,19,53,2,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(19,20,48,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(20,27,38,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(21,27,53,2,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(22,28,53,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(23,29,53,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(24,30,30,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(25,31,53,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(26,33,30,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(27,36,30,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(28,39,30,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(29,40,30,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(30,42,30,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(31,44,30,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(32,45,30,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(33,46,53,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(34,47,48,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(35,48,30,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(36,48,46,2,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(37,48,51,3,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(38,50,38,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(40,52,30,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(41,53,30,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(42,54,30,1,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(43,54,67,2,'Performer','2025-11-28 14:54:33','2025-11-28 14:54:33'),(45,51,50,1,'Performer','2025-11-29 15:36:14','2025-11-29 15:36:14');
/*!40000 ALTER TABLE `archived_event_artist` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `archived_events`
--

DROP TABLE IF EXISTS `archived_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `archived_events` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `subtitle` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci,
  `venue_name` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `venue_city` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'London',
  `venue_country` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'United Kingdom',
  `event_date` date DEFAULT NULL,
  `event_year` year DEFAULT NULL,
  `is_published` tinyint(1) NOT NULL DEFAULT '1',
  `is_featured` tinyint(1) NOT NULL DEFAULT '0',
  `display_order` int NOT NULL DEFAULT '0',
  `legacy_event_id` int unsigned DEFAULT NULL,
  `legacy_metadata` json DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `archived_events_slug_unique` (`slug`),
  UNIQUE KEY `archived_events_legacy_event_id_unique` (`legacy_event_id`),
  KEY `archived_events_slug_index` (`slug`),
  KEY `archived_events_event_year_index` (`event_year`),
  KEY `archived_events_is_published_display_order_index` (`is_published`,`display_order`),
  KEY `archived_events_legacy_event_id_index` (`legacy_event_id`),
  KEY `archived_events_is_featured_index` (`is_featured`)
) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `archived_events`
--

LOCK TABLES `archived_events` WRITE;
/*!40000 ALTER TABLE `archived_events` DISABLE KEYS */;
INSERT INTO `archived_events` VALUES (1,'Majed Al Mohandes & Shatha Hassoun','majed-al-mohandes-shatha-hassoun',NULL,NULL,'Park Lane','London','United Kingdom',NULL,0000,1,1,1,2,'{\"image_count\": 0, \"original_title\": \"Majed Al Mohandes & Shatha Hassoun\", \"original_venue\": \"Park Lane\", \"original_status\": \"0000-00-00\", \"original_event_id\": \"2\"}','2025-11-28 14:48:13','2025-11-29 17:01:45'),(2,'Fahad Alkubaisi','fahad-alkubaisi',NULL,NULL,' Asma Lmnawar &  Jaber Alkaser','London','United Kingdom',NULL,0000,1,0,2,4,'{\"image_count\": 0, \"original_title\": \"Fahad Alkubaisi\", \"original_venue\": \" Asma Lmnawar &  Jaber Alkaser\", \"original_status\": \" Park Lane\", \"original_event_id\": \"4\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(3,'Rabeh Saker','rabeh-saker',NULL,NULL,'The Grosvenor House Hotel','London','United Kingdom',NULL,0000,1,0,3,5,'{\"image_count\": 0, \"original_title\": \"Rabeh Saker\", \"original_venue\": \"The Grosvenor House Hotel\", \"original_status\": \" London\", \"original_event_id\": \"5\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(4,'حمد عبده','hmd-aabdh',NULL,NULL,'Great Room','London','United Kingdom',NULL,1986,1,0,4,61,'{\"image_count\": 0, \"original_title\": \"حمد عبده\", \"original_venue\": \"Great Room\", \"original_status\": \" London  W1K 7TN\", \"original_event_id\": \"61\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(5,'Aseel Hameem and Fouad Abdulwahed 2024','aseel-hameem-and-fouad-abdulwahed-2024',NULL,NULL,'The Great Hall - The Grosvenor House','London','United Kingdom',NULL,2024,0,0,5,94,'{\"image_count\": 0, \"original_title\": \"Aseel Hameem and Fouad Abdulwahed 2024\", \"original_venue\": \"The Great Hall - The Grosvenor House\", \"original_status\": \"Hidden\", \"original_event_id\": \"94\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(6,'Fahad Al Kubaisi','fahad-al-kubaisi',NULL,NULL,' Asma & Waleed El Shami','London','United Kingdom',NULL,0000,1,0,6,11,'{\"image_count\": 0, \"original_title\": \"Fahad Al Kubaisi\", \"original_venue\": \" Asma & Waleed El Shami\", \"original_status\": \" W1K 7TN\", \"original_event_id\": \"11\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(7,'Rabeh Saker & Shatha Hassoun','rabeh-saker-shatha-hassoun',NULL,NULL,'The Grosvenor House Hotel','London','United Kingdom',NULL,0000,1,0,7,17,'{\"image_count\": 0, \"original_title\": \"Rabeh Saker & Shatha Hassoun\", \"original_venue\": \"The Grosvenor House Hotel\", \"original_status\": \" W1K 7TN\", \"original_event_id\": \"17\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(8,'Mohamed Abdo','mohamed-abdo',NULL,NULL,'The Grosvenor House Hotel','London','United Kingdom',NULL,0000,1,0,8,18,'{\"image_count\": 0, \"original_title\": \"Mohamed Abdo\", \"original_venue\": \"The Grosvenor House Hotel\", \"original_status\": \" W1K 7TN\", \"original_event_id\": \"18\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(9,'Majed Al Muhandis & Elissa','majed-al-muhandis-elissa',NULL,NULL,'The Grosvenor House Hotel','London','United Kingdom',NULL,0000,1,0,9,19,'{\"image_count\": 0, \"original_title\": \"Majed Al Muhandis & Elissa\", \"original_venue\": \"The Grosvenor House Hotel\", \"original_status\": \" W1K 7TN\", \"original_event_id\": \"19\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(10,'Rabeh Saker & Nahwa','rabeh-saker-nahwa',NULL,NULL,'The Grosvenor House Hotel','London','United Kingdom',NULL,0000,1,0,10,20,'{\"image_count\": 0, \"original_title\": \"Rabeh Saker & Nahwa\", \"original_venue\": \"The Grosvenor House Hotel\", \"original_status\": \" W1K 7TN\", \"original_event_id\": \"20\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(11,'ABDO','abdo',NULL,NULL,'The Grosvenor House Hotel','London','United Kingdom',NULL,0000,1,0,11,23,'{\"image_count\": 0, \"original_title\": \"ABDO\", \"original_venue\": \"The Grosvenor House Hotel\", \"original_status\": \" London\", \"original_event_id\": \"23\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(12,'Majid & Haifa','majid-haifa',NULL,NULL,'The Grosvenor House Hotel','London','United Kingdom',NULL,0000,1,0,12,24,'{\"image_count\": 0, \"original_title\": \"Majid & Haifa\", \"original_venue\": \"The Grosvenor House Hotel\", \"original_status\": \" London\", \"original_event_id\": \"24\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(13,'Rabeh Saqer & Dalia','rabeh-saqer-dalia',NULL,NULL,'The Grosvenor House Hotel','London','United Kingdom',NULL,0000,1,0,13,25,'{\"image_count\": 0, \"original_title\": \"Rabeh Saqer & Dalia\", \"original_venue\": \"The Grosvenor House Hotel\", \"original_status\": \" London\", \"original_event_id\": \"25\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(14,'Balqees & Fahad Al Kubaisi','balqees-fahad-al-kubaisi',NULL,NULL,'The Grosvenor House Hotel','London','United Kingdom',NULL,0000,1,0,14,26,'{\"image_count\": 0, \"original_title\": \"Balqees & Fahad Al Kubaisi\", \"original_venue\": \"The Grosvenor House Hotel\", \"original_status\": \" London\", \"original_event_id\": \"26\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(15,'Abdallah Ruaeshed & Nawal','abdallah-ruaeshed-nawal',NULL,NULL,'The Grosvenor House Hotel','London','United Kingdom',NULL,0000,1,0,15,27,'{\"image_count\": 0, \"original_title\": \"Abdallah Ruaeshed & Nawal\", \"original_venue\": \"The Grosvenor House Hotel\", \"original_status\": \" London\", \"original_event_id\": \"27\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(17,'Balqees - Shamma Hamdan - Khalid Foad','balqees-shamma-hamdan-khalid-foad',NULL,NULL,'The Grand Ballroom','London','United Kingdom',NULL,2022,1,0,16,46,'{\"image_count\": 0, \"original_title\": \"Balqees - Shamma Hamdan - Khalid Foad\", \"original_venue\": \"The Grand Ballroom\", \"original_status\": \" London\", \"original_event_id\": \"46\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(18,'Abdallah Ruwaished - Abadi Aljohar','abdallah-ruwaished-abadi-aljohar',NULL,NULL,'The Grand Ballroom','London','United Kingdom',NULL,2022,1,0,17,47,'{\"image_count\": 0, \"original_title\": \"Abdallah Ruwaished - Abadi Aljohar\", \"original_venue\": \"The Grand Ballroom\", \"original_status\": \" London\", \"original_event_id\": \"47\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(19,'Rabeh Saqer - Ayoub Sisters','rabeh-saqer-ayoub-sisters',NULL,NULL,'The Grand Ballroom','London','United Kingdom',NULL,2022,1,0,18,48,'{\"image_count\": 0, \"original_title\": \"Rabeh Saqer - Ayoub Sisters\", \"original_venue\": \"The Grand Ballroom\", \"original_status\": \" London\", \"original_event_id\": \"48\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(20,'Majid Elmohandes','majid-elmohandes',NULL,NULL,'The Grand Ballroom','London','United Kingdom',NULL,2022,1,0,19,49,'{\"image_count\": 0, \"original_title\": \"Majid Elmohandes\", \"original_venue\": \"The Grand Ballroom\", \"original_status\": \" London\", \"original_event_id\": \"49\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(22,'Majid Al-Muhandis','majid-al-muhandis',NULL,NULL,' Rabeh Sager','London','United Kingdom',NULL,0000,1,0,20,55,'{\"image_count\": 0, \"original_title\": \"Majid Al-Muhandis\", \"original_venue\": \" Rabeh Sager\", \"original_status\": \"Great Room\", \"original_event_id\": \"55\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(23,'Asala and Walid Alshami','asala-and-walid-alshami',NULL,NULL,'Great Room','London','United Kingdom',NULL,1986,1,0,21,57,'{\"image_count\": 0, \"original_title\": \"Asala and Walid Alshami\", \"original_venue\": \"Great Room\", \"original_status\": \" London  W1K 7TN\", \"original_event_id\": \"57\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(24,'majid and walid','majid-and-walid',NULL,NULL,NULL,'London','United Kingdom',NULL,NULL,1,0,22,58,'{\"image_count\": 0, \"original_title\": \"majid and walid\", \"original_venue\": \"\", \"original_status\": \"Published\", \"original_event_id\": \"58\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(25,'test','test',NULL,NULL,NULL,'London','United Kingdom',NULL,NULL,1,0,23,59,'{\"image_count\": 0, \"original_title\": \"test\", \"original_venue\": \"\", \"original_status\": \"Published\", \"original_event_id\": \"59\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(27,'Rabeh Saker & Balqees','rabeh-saker-balqees',NULL,NULL,'The Grosvenor House Hotel','London','United Kingdom',NULL,0000,1,0,24,6,'{\"image_count\": 0, \"original_title\": \"Rabeh Saker & Balqees\", \"original_venue\": \"The Grosvenor House Hotel\", \"original_status\": \" London\", \"original_event_id\": \"6\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(28,'Rabeh Saqer','rabeh-saqer',NULL,NULL,'Ayda Hall - Marriott Zamalik','London','United Kingdom',NULL,NULL,1,0,25,62,'{\"image_count\": 0, \"original_title\": \"Rabeh Saqer\", \"original_venue\": \"Ayda Hall - Marriott Zamalik\", \"original_status\": \"Published\", \"original_event_id\": \"62\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(29,'* TEST Rabeh Saquer TEST*','test-rabeh-saquer-test',NULL,NULL,'*TEST Rabeh Saquer Address TEST*','London','United Kingdom',NULL,NULL,1,0,26,63,'{\"image_count\": 0, \"original_title\": \"* TEST Rabeh Saquer TEST*\", \"original_venue\": \"*TEST Rabeh Saquer Address TEST*\", \"original_status\": \"Published\", \"original_event_id\": \"63\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(30,'Mohamed Abdo Concert 2019','mohamed-abdo-concert-2019',NULL,NULL,'The Great Room The Grosvenor House','London','United Kingdom',NULL,2019,1,0,27,64,'{\"image_count\": 0, \"original_title\": \"Mohamed Abdo Concert 2019\", \"original_venue\": \"The Great Room The Grosvenor House\", \"original_status\": \"Published\", \"original_event_id\": \"64\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(31,'Rabeh Saqer Concert 2019','rabeh-saqer-concert-2019',NULL,NULL,'The Great Room The Grosvenor House','London','United Kingdom',NULL,2019,1,0,28,65,'{\"image_count\": 0, \"original_title\": \"Rabeh Saqer Concert 2019\", \"original_venue\": \"The Great Room The Grosvenor House\", \"original_status\": \"Published\", \"original_event_id\": \"65\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(32,'MYRIAM FARES','myriam-fares',NULL,NULL,' FOUAD ABDELWAHED','London','United Kingdom',NULL,0000,1,0,29,66,'{\"image_count\": 0, \"original_title\": \"MYRIAM FARES\", \"original_venue\": \" FOUAD ABDELWAHED\", \"original_status\": \"NULL\", \"original_event_id\": \"66\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(33,'Mohamed Abdo 25th August 2019','mohamed-abdo-25th-august-2019',NULL,NULL,'The Great Room The Grosvenor House','London','United Kingdom',NULL,2019,1,0,30,68,'{\"image_count\": 0, \"original_title\": \"Mohamed Abdo 25th August 2019\", \"original_venue\": \"The Great Room The Grosvenor House\", \"original_status\": \"Published\", \"original_event_id\": \"68\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(34,'EventMapExample','eventmapexample',NULL,NULL,NULL,'London','United Kingdom',NULL,NULL,1,0,31,69,'{\"image_count\": 0, \"original_title\": \"EventMapExample\", \"original_venue\": \"\", \"original_status\": \"Published\", \"original_event_id\": \"69\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(35,'Ibrahim Alhakmi','ibrahim-alhakmi',NULL,NULL,' Aseel Hameem ','London','United Kingdom',NULL,0000,1,0,32,70,'{\"image_count\": 0, \"original_title\": \"Ibrahim Alhakmi\", \"original_venue\": \" Aseel Hameem \", \"original_status\": \"The Nile Ritz Carlton\", \"original_event_id\": \"70\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(36,'Mohamed Abdo au Palais Garnier OLD','mohamed-abdo-au-palais-garnier-old',NULL,NULL,'opera Paris','Paris','France',NULL,NULL,1,0,33,71,'{\"image_count\": 0, \"original_title\": \"Mohamed Abdo au Palais Garnier OLD\", \"original_venue\": \"opera Paris\", \"original_status\": \"Published\", \"original_event_id\": \"71\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(37,'Oum Kalthum  Palais Des Congres','oum-kalthum-palais-des-congres',NULL,NULL,'Old Version','London','United Kingdom',NULL,NULL,1,0,34,77,'{\"image_count\": 0, \"original_title\": \"Oum Kalthum  Palais Des Congres\", \"original_venue\": \"Old Version\", \"original_status\": \"Published\", \"original_event_id\": \"77\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(38,'Oum Kalthum Palais Des Congres live','oum-kalthum-palais-des-congres-live',NULL,NULL,'Palais Des Congres Live','London','United Kingdom',NULL,NULL,1,0,35,79,'{\"image_count\": 0, \"original_title\": \"Oum Kalthum Palais Des Congres live\", \"original_venue\": \"Palais Des Congres Live\", \"original_status\": \"Published\", \"original_event_id\": \"79\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(39,'Mohamed Abdo at Opera Paris Friday 22 July 2022','mohamed-abdo-at-opera-paris-friday-22-july-2022',NULL,NULL,'Abdo concert 22 July','London','United Kingdom',NULL,2022,1,0,36,80,'{\"image_count\": 0, \"original_title\": \"Mohamed Abdo at Opera Paris Friday 22 July 2022\", \"original_venue\": \"Abdo concert 22 July\", \"original_status\": \"Published\", \"original_event_id\": \"80\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(40,'Mohamed Abdo at Opera Paris  Saturday 23rd July 2022','mohamed-abdo-at-opera-paris-saturday-23rd-july-2022',NULL,NULL,'Abdo concert','London','United Kingdom',NULL,2022,1,0,37,81,'{\"image_count\": 0, \"original_title\": \"Mohamed Abdo at Opera Paris  Saturday 23rd July 2022\", \"original_venue\": \"Abdo concert\", \"original_status\": \"Published\", \"original_event_id\": \"81\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(41,'Event Streaming Test','event-streaming-test',NULL,NULL,NULL,'London','United Kingdom',NULL,NULL,1,0,38,82,'{\"image_count\": 0, \"original_title\": \"Event Streaming Test\", \"original_venue\": \"\", \"original_status\": \"Published\", \"original_event_id\": \"82\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(42,'Mohamed Abdo London 2022','mohamed-abdo-london-2022',NULL,NULL,'Great Room Grosvenor House','London','United Kingdom',NULL,2022,1,0,39,83,'{\"image_count\": 0, \"original_title\": \"Mohamed Abdo London 2022\", \"original_venue\": \"Great Room Grosvenor House\", \"original_status\": \"Published\", \"original_event_id\": \"83\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(43,'Moody  Al-Ashamrani london 2022','moody-al-ashamrani-london-2022',NULL,NULL,'Great room Grosvenor house - location','London','United Kingdom',NULL,2022,1,0,40,84,'{\"image_count\": 0, \"original_title\": \"Moody  Al-Ashamrani london 2022\", \"original_venue\": \"Great room Grosvenor house - location\", \"original_status\": \"Published\", \"original_event_id\": \"84\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(44,'Mohamed Abdo Concert at Salle Pleyel   Paris 2023','mohamed-abdo-concert-at-salle-pleyel-paris-2023',NULL,NULL,' Salle Pleyel ','London','United Kingdom',NULL,2023,1,0,41,85,'{\"image_count\": 0, \"original_title\": \"Mohamed Abdo Concert at Salle Pleyel   Paris 2023\", \"original_venue\": \" Salle Pleyel \", \"original_status\": \"Published\", \"original_event_id\": \"85\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(45,'Mohamed Abdo Concert - Grosvenor House London 2023','mohamed-abdo-concert-grosvenor-house-london-2023',NULL,NULL,'Great Hall - The Grosvenor House','London','United Kingdom',NULL,2023,1,0,42,86,'{\"image_count\": 0, \"original_title\": \"Mohamed Abdo Concert - Grosvenor House London 2023\", \"original_venue\": \"Great Hall - The Grosvenor House\", \"original_status\": \"Published\", \"original_event_id\": \"86\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(46,'Rabeh Saqer Concert London 2023','rabeh-saqer-concert-london-2023',NULL,NULL,'The Great Hall - The Grosvenor  House','London','United Kingdom',NULL,2023,1,0,43,88,'{\"image_count\": 0, \"original_title\": \"Rabeh Saqer Concert London 2023\", \"original_venue\": \"The Great Hall - The Grosvenor  House\", \"original_status\": \"Published\", \"original_event_id\": \"88\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(47,'Majid  Almohandis London concert 2023','majid-almohandis-london-concert-2023',NULL,NULL,'The Great Hall - The Grosvenor House','London','United Kingdom',NULL,2023,1,0,44,89,'{\"image_count\": 0, \"original_title\": \"Majid  Almohandis London concert 2023\", \"original_venue\": \"The Great Hall - The Grosvenor House\", \"original_status\": \"Published\", \"original_event_id\": \"89\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(48,'Fouad Abdul Wahed- Oumaima Taleb- Ayed Yousef','fouad-abdul-wahed-oumaima-taleb-ayed-yousef',NULL,NULL,'The Great Hall- Ayed Yousef - Oumaima Taleb - Fouad Abdulwahed','London','United Kingdom',NULL,NULL,1,0,45,90,'{\"image_count\": 0, \"original_title\": \"Fouad Abdul Wahed- Oumaima Taleb- Ayed Yousef\", \"original_venue\": \"The Great Hall- Ayed Yousef - Oumaima Taleb - Fouad Abdulwahed\", \"original_status\": \"Published\", \"original_event_id\": \"90\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(49,'Cairo New Year 2023','cairo-new-year-2023',NULL,NULL,'Ritz Carton Cairo','Cairo','Egypt',NULL,2023,1,0,46,91,'{\"image_count\": 0, \"original_title\": \"Cairo New Year 2023\", \"original_venue\": \"Ritz Carton Cairo\", \"original_status\": \"Published\", \"original_event_id\": \"91\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(50,'Balqees- Aseel Hameem- Dahoom Altalassi','balqees-aseel-hameem-dahoom-altalassi',NULL,NULL,'Nile Ritz Carlton- Cairo','Cairo','Egypt',NULL,NULL,1,0,47,92,'{\"image_count\": 0, \"original_title\": \"Balqees- Aseel Hameem- Dahoom Altalassi\", \"original_venue\": \"Nile Ritz Carlton- Cairo\", \"original_status\": \"Published\", \"original_event_id\": \"92\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(51,'Ayed and Mody  Alshamrani London 2024','ayed-and-mody-alshamrani-london-2024',NULL,NULL,'The Great Hall - The Grosvenor House','London','United Kingdom','2025-11-01',2024,1,0,48,93,'{\"image_count\": 0, \"original_title\": \"Ayed and Mody  Alshamrani London 2024\", \"original_venue\": \"The Great Hall - The Grosvenor House\", \"original_status\": \"Published\", \"original_event_id\": \"93\"}','2025-11-28 14:48:14','2025-11-29 15:36:14'),(52,'Mohamed Abdu','mohamed-abdu',NULL,NULL,'The Grosvenor House Hotel','London','United Kingdom',NULL,0000,1,0,49,7,'{\"image_count\": 0, \"original_title\": \"Mohamed Abdu\", \"original_venue\": \"The Grosvenor House Hotel\", \"original_status\": \" London\", \"original_event_id\": \"7\"}','2025-11-28 14:48:14','2025-11-28 14:48:14'),(53,'Mohamed Abdo','mohamed-abdo-22',NULL,NULL,'The Grand Ballroom','London','United Kingdom',NULL,2022,1,0,1,45,'{\"image_count\": 0, \"original_title\": \"Mohamed Abdo\", \"original_venue\": \"The Grand Ballroom\", \"original_status\": \" London\", \"original_event_id\": \"45\"}','2025-11-28 14:48:46','2025-11-28 14:48:46'),(54,'حمد عبده','hmd-aabdh-22',NULL,NULL,'The Grand Ballroom','London','United Kingdom',NULL,2022,1,0,2,50,'{\"image_count\": 0, \"original_title\": \"حمد عبده\", \"original_venue\": \"The Grand Ballroom\", \"original_status\": \" London\", \"original_event_id\": \"50\"}','2025-11-28 14:48:46','2025-11-28 14:48:46'),(55,'test','test-60',NULL,NULL,NULL,'London','United Kingdom',NULL,NULL,1,0,3,60,'{\"image_count\": 0, \"original_title\": \"test\", \"original_venue\": \"\", \"original_status\": \"Published\", \"original_event_id\": \"60\"}','2025-11-28 14:48:46','2025-11-28 14:48:46');
/*!40000 ALTER TABLE `archived_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `artist_event`
--

DROP TABLE IF EXISTS `artist_event`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `artist_event` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `artist_id` bigint unsigned NOT NULL,
  `event_id` bigint unsigned NOT NULL,
  `display_order` int NOT NULL DEFAULT '0',
  `role` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'performer',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `artist_event_artist_id_event_id_unique` (`artist_id`,`event_id`),
  KEY `artist_event_event_id_display_order_index` (`event_id`,`display_order`),
  CONSTRAINT `artist_event_artist_id_foreign` FOREIGN KEY (`artist_id`) REFERENCES `artists` (`id`) ON DELETE CASCADE,
  CONSTRAINT `artist_event_event_id_foreign` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `artist_event`
--

LOCK TABLES `artist_event` WRITE;
/*!40000 ALTER TABLE `artist_event` DISABLE KEYS */;
/*!40000 ALTER TABLE `artist_event` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `artists`
--

DROP TABLE IF EXISTS `artists`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `artists` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `legacy_artist_id` int unsigned DEFAULT NULL COMMENT 'ID from legacy globalgala_inspect.infrecord table',
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name_arabic` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Artist name in Arabic',
  `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `bio` text COLLATE utf8mb4_unicode_ci,
  `bio_arabic` text COLLATE utf8mb4_unicode_ci COMMENT 'Biography in Arabic',
  `profile_image` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `website_url` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `instagram_url` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `twitter_url` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `facebook_url` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `youtube_url` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `spotify_url` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `legacy_metadata` json DEFAULT NULL COMMENT 'JSON storage for legacy system data (dates, fields, etc.)',
  `is_published` tinyint(1) NOT NULL DEFAULT '0',
  `is_featured` tinyint(1) NOT NULL DEFAULT '0',
  `is_legacy` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Indicates if artist migrated from legacy system',
  `display_order` int unsigned NOT NULL DEFAULT '0' COMMENT 'Manual sorting order for artist listings',
  `status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `artists_slug_unique` (`slug`),
  KEY `artists_slug_index` (`slug`),
  KEY `artists_status_index` (`status`),
  KEY `artists_is_published_index` (`is_published`),
  KEY `artists_legacy_artist_id_index` (`legacy_artist_id`),
  KEY `artists_is_legacy_index` (`is_legacy`),
  KEY `artists_display_order_index` (`display_order`)
) ENGINE=InnoDB AUTO_INCREMENT=68 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `artists`
--

LOCK TABLES `artists` WRITE;
/*!40000 ALTER TABLE `artists` DISABLE KEYS */;
INSERT INTO `artists` VALUES (30,NULL,'Mohamed Abdo','محمد عبده','mohamed-abdo','Mohamed Abdu began his music career at the beginning of the 1960s and became one of the most renowned Arabic singers.','بدأ محمد عبده مسيرته الموسيقية في أوائل الستينيات وأصبح من أشهر المطربين العرب',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,10,'active','2025-11-28 13:57:42','2025-11-28 14:04:07'),(31,NULL,'The Beatles',NULL,'the-beatles',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,20,'active','2025-11-28 13:58:34','2025-11-28 14:04:56'),(32,127,'Abadi al-Johar',NULL,'abadi-al-johar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 269, \"date_created\": \"2017-07-20\", \"publication_status\": \"Hidden\"}',0,0,1,1,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(33,126,'Abdallah Ruwaished',NULL,'abdallah-ruwaished',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 277, \"date_created\": \"2017-07-20\", \"publication_status\": \"Hidden\"}',0,0,1,2,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(34,374,'Aseel Hamem',NULL,'aseel-hamem',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 2017, \"date_created\": \"2019-12-09\", \"publication_status\": \"Hidden\"}',0,0,1,3,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(35,788,'Ayed Youssef',NULL,'ayed-youssef',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 2466, \"date_created\": \"2023-07-27\", \"publication_status\": \"Hidden\"}',0,0,1,4,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(36,289,'Ayoub Sisters',NULL,'ayoub-sisters',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 311, \"date_created\": \"2017-07-20\", \"publication_status\": \"Published\"}',1,0,1,5,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(38,119,'Balqees',NULL,'balqees',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 229, \"date_created\": \"2017-07-19\", \"publication_status\": \"Hidden\"}',0,0,1,6,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(39,817,'Dalia Mubarak',NULL,'dalia-mubarak',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 593, \"date_created\": \"2024-07-09\", \"publication_status\": \"Hidden\"}',0,0,1,7,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(40,804,'Dhom Altlasy',NULL,'dhom-altlasy',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": false, \"bio_length\": 0, \"date_created\": \"2023-12-25\", \"publication_status\": \"Hidden\"}',0,0,1,8,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(41,376,'Dina',NULL,'dina',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 1495, \"date_created\": \"2019-12-09\", \"publication_status\": \"Hidden\"}',0,0,1,9,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(42,787,'Fouad AbdulWahed',NULL,'fouad-abdulwahed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 2453, \"date_created\": \"2023-07-27\", \"publication_status\": \"Hidden\"}',0,0,1,10,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(43,377,'Halima Boland',NULL,'halima-boland',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 1987, \"date_created\": \"2019-12-09\", \"publication_status\": \"Hidden\"}',0,0,1,11,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(44,375,'Ibrahim Al Sultan',NULL,'ibrahim-al-sultan',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 995, \"date_created\": \"2019-12-09\", \"publication_status\": \"Hidden\"}',0,0,1,12,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(45,373,'Ibrahim Alhakami',NULL,'ibrahim-alhakami',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 1175, \"date_created\": \"2019-12-09\", \"publication_status\": \"Hidden\"}',0,0,1,13,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(46,121,'Khalid Fouad',NULL,'khalid-fouad',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 185, \"date_created\": \"2017-07-19\", \"publication_status\": \"Hidden\"}',0,0,1,14,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(47,803,'Lurdiana',NULL,'lurdiana',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": false, \"bio_length\": 0, \"date_created\": \"2023-12-25\", \"publication_status\": \"Hidden\"}',0,0,1,15,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(48,124,'Majed Elmohandes',NULL,'majed-elmohandes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 258, \"date_created\": \"2017-07-20\", \"publication_status\": \"Hidden\"}',0,0,1,16,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(50,818,'moody Alshamrani',NULL,'moody-alshamrani',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 1703, \"date_created\": \"2024-07-20\", \"publication_status\": \"Hidden\"}',0,0,1,17,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(51,789,'Omiuma Taleb',NULL,'omiuma-taleb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 1095, \"date_created\": \"2023-07-27\", \"publication_status\": \"Hidden\"}',0,0,1,18,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(53,123,'Rabeh Saqer',NULL,'rabeh-saqer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 240, \"date_created\": \"2017-07-20\", \"publication_status\": \"Hidden\"}',0,0,1,20,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(54,120,'Shamma Hamdan',NULL,'shamma-hamdan',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 631, \"date_created\": \"2017-07-19\", \"publication_status\": \"Hidden\"}',0,0,1,21,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(55,125,'Sherine AbdulWahhab',NULL,'sherine-abdulwahhab',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 137, \"date_created\": \"2017-07-20\", \"publication_status\": \"Published\"}',1,0,1,22,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(56,566,'Umm Kalthome',NULL,'umm-kalthome',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 2384, \"date_created\": \"2022-04-16\", \"publication_status\": \"Hidden\"}',0,0,1,23,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(57,572,'Umm Kalthoum french',NULL,'umm-kalthoum-french',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 2081, \"date_created\": \"2022-04-28\", \"publication_status\": \"Published\"}',1,0,1,24,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(58,286,'بلقيس',NULL,'blkys',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 260, \"date_created\": \"2017-07-19\", \"publication_status\": \"Published\"}',1,0,1,25,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(59,288,'خالد فواد',NULL,'khald-foad',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 218, \"date_created\": \"2017-07-19\", \"publication_status\": \"Published\"}',1,0,1,26,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(60,293,'رابح صقر',NULL,'rabh-skr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": false, \"bio_length\": 0, \"date_created\": \"2017-07-20\", \"publication_status\": \"Published\"}',1,0,1,27,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(61,291,'راشد الماجد',NULL,'rashd-almagd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 1209, \"date_created\": \"2018-08-11\", \"publication_status\": \"Hidden\"}',0,0,1,28,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(62,287,'شما حمدان',NULL,'shma-hmdan',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 630, \"date_created\": \"2017-07-19\", \"publication_status\": \"Published\"}',1,0,1,29,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(63,290,'شيرين عبد الوهاب',NULL,'shyryn-aabd-alohab',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 137, \"date_created\": \"2017-07-20\", \"publication_status\": \"Published\"}',1,0,1,30,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(64,296,'عبادي الجوهر',NULL,'aabady-algohr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 269, \"date_created\": \"2017-07-20\", \"publication_status\": \"Hidden\"}',0,0,1,31,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(65,295,'عبد الله الرويشد',NULL,'aabd-allh-alroyshd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 284, \"date_created\": \"2017-07-20\", \"publication_status\": \"Hidden\"}',0,0,1,32,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(66,294,'ماجد المهندس',NULL,'magd-almhnds',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 261, \"date_created\": \"2017-07-20\", \"publication_status\": \"Hidden\"}',0,0,1,33,'active','2025-11-28 14:08:28','2025-11-28 14:08:28'),(67,292,'محمد عبده',NULL,'mhmd-aabdh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"has_bio\": true, \"bio_length\": 1007, \"date_created\": \"2017-07-17\", \"publication_status\": \"Hidden\"}',0,0,1,34,'active','2025-11-28 14:08:28','2025-11-28 14:08:28');
/*!40000 ALTER TABLE `artists` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `banners`
--

DROP TABLE IF EXISTS `banners`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `banners` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `status` int NOT NULL DEFAULT '1',
  `order` int NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `banners`
--

LOCK TABLES `banners` WRITE;
/*!40000 ALTER TABLE `banners` DISABLE KEYS */;
/*!40000 ALTER TABLE `banners` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `batch_jobs`
--

DROP TABLE IF EXISTS `batch_jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `batch_jobs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `batch_id` char(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` enum('initializing','processing','completed','failed','cancelled') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'initializing',
  `total_items` int NOT NULL DEFAULT '0',
  `processed_items` int NOT NULL DEFAULT '0',
  `failed_items` int NOT NULL DEFAULT '0',
  `chunk_size` int NOT NULL DEFAULT '100',
  `progress_percentage` decimal(5,2) NOT NULL DEFAULT '0.00',
  `options` json DEFAULT NULL,
  `error_message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `started_at` timestamp NULL DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `cancelled_at` timestamp NULL DEFAULT NULL,
  `metadata` json DEFAULT NULL,
  `result_summary` json DEFAULT NULL,
  `created_by` bigint unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `batch_jobs_batch_id_unique` (`batch_id`),
  KEY `batch_jobs_batch_id_index` (`batch_id`),
  KEY `batch_jobs_status_index` (`status`),
  KEY `batch_jobs_created_at_index` (`created_at`),
  KEY `batch_jobs_status_created_at_index` (`status`,`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `batch_jobs`
--

LOCK TABLES `batch_jobs` WRITE;
/*!40000 ALTER TABLE `batch_jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `batch_jobs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `blog_categories`
--

DROP TABLE IF EXISTS `blog_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `blog_categories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` int NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `blog_categories`
--

LOCK TABLES `blog_categories` WRITE;
/*!40000 ALTER TABLE `blog_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `blog_categories` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `blogs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `blogs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `category_id` int NOT NULL,
  `sub_category_id` int DEFAULT NULL,
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_published` int NOT NULL,
  `show_on_homepage` int NOT NULL,
  `blog_views` int NOT NULL DEFAULT '0',
  `status` int NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `blogs` WRITE;
/*!40000 ALTER TABLE `blogs` DISABLE KEYS */;
/*!40000 ALTER TABLE `blogs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `booking_access_code_sessions`
--

DROP TABLE IF EXISTS `booking_access_code_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `booking_access_code_sessions` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `code_id` bigint unsigned NOT NULL,
  `session_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Browser UUID from frontend',
  `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'For analytics',
  `used_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  UNIQUE KEY `booking_access_code_sessions_code_id_session_id_unique` (`code_id`,`session_id`),
  KEY `booking_access_code_sessions_code_id_index` (`code_id`),
  KEY `booking_access_code_sessions_session_id_index` (`session_id`),
  CONSTRAINT `booking_access_code_sessions_code_id_foreign` FOREIGN KEY (`code_id`) REFERENCES `booking_access_codes` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `booking_access_code_sessions`
--

LOCK TABLES `booking_access_code_sessions` WRITE;
/*!40000 ALTER TABLE `booking_access_code_sessions` DISABLE KEYS */;
/*!40000 ALTER TABLE `booking_access_code_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `booking_access_codes`
--

DROP TABLE IF EXISTS `booking_access_codes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `booking_access_codes` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '8-char unpredictable code',
  `event_id` bigint unsigned DEFAULT NULL COMMENT 'NULL = works for all events',
  `max_sessions` tinyint unsigned NOT NULL DEFAULT '2' COMMENT 'Max different sessions allowed',
  `expires_at` timestamp NULL DEFAULT NULL COMMENT 'NULL = never expires',
  `created_by` bigint unsigned DEFAULT NULL COMMENT 'Admin user ID',
  `notes` text COLLATE utf8mb4_unicode_ci COMMENT 'Admin reference notes',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `booking_access_codes_code_unique` (`code`),
  KEY `booking_access_codes_code_index` (`code`),
  KEY `booking_access_codes_expires_at_index` (`expires_at`),
  KEY `booking_access_codes_event_id_index` (`event_id`),
  KEY `booking_access_codes_created_by_foreign` (`created_by`),
  CONSTRAINT `booking_access_codes_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `booking_access_codes_event_id_foreign` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `booking_access_codes`
--

LOCK TABLES `booking_access_codes` WRITE;
/*!40000 ALTER TABLE `booking_access_codes` DISABLE KEYS */;
/*!40000 ALTER TABLE `booking_access_codes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bulk_ticket_status_batches`
--

DROP TABLE IF EXISTS `bulk_ticket_status_batches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `bulk_ticket_status_batches` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `batch_id` char(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `operation_type` enum('block','unblock','shadow_sold','activate') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` enum('initializing','processing','completed','failed','cancelled') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'initializing',
  `event_id` bigint unsigned DEFAULT NULL,
  `total_seats` int NOT NULL DEFAULT '0',
  `processed_seats` int NOT NULL DEFAULT '0',
  `successful_seats` int NOT NULL DEFAULT '0',
  `failed_seats` int NOT NULL DEFAULT '0',
  `failed_seat_ids` json DEFAULT NULL,
  `errors` json DEFAULT NULL,
  `csv_filename` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `started_at` timestamp NULL DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `created_by` bigint unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `bulk_ticket_status_batches_batch_id_unique` (`batch_id`),
  KEY `bulk_ticket_status_batches_created_at_index` (`created_at`),
  KEY `bulk_ticket_status_batches_status_created_at_index` (`status`,`created_at`),
  KEY `bulk_ticket_status_batches_operation_type_index` (`operation_type`),
  KEY `bulk_ticket_status_batches_status_index` (`status`),
  KEY `bulk_ticket_status_batches_event_id_index` (`event_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bulk_ticket_status_batches`
--

LOCK TABLES `bulk_ticket_status_batches` WRITE;
/*!40000 ALTER TABLE `bulk_ticket_status_batches` DISABLE KEYS */;
/*!40000 ALTER TABLE `bulk_ticket_status_batches` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cache`
--

DROP TABLE IF EXISTS `cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cache` (
  `key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `expiration` int NOT NULL,
  PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache`
--

LOCK TABLES `cache` WRITE;
/*!40000 ALTER TABLE `cache` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cache_locks`
--

DROP TABLE IF EXISTS `cache_locks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cache_locks` (
  `key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `owner` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `expiration` int NOT NULL,
  PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_locks`
--

LOCK TABLES `cache_locks` WRITE;
/*!40000 ALTER TABLE `cache_locks` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache_locks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `campaign_audit_logs`
--

DROP TABLE IF EXISTS `campaign_audit_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `campaign_audit_logs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `campaign_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `event_type` enum('created','started','paused','resumed','cancelled','completed','settings_modified','invitation_sent','invitation_failed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Type of campaign event',
  `user_id` bigint unsigned DEFAULT NULL COMMENT 'Admin user ID',
  `user_email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Admin email for reference',
  `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `details` json DEFAULT NULL COMMENT 'Event-specific data',
  PRIMARY KEY (`id`),
  KEY `idx_audit_campaign_name` (`campaign_name`),
  KEY `idx_event_type` (`event_type`),
  KEY `idx_timestamp` (`timestamp`),
  KEY `idx_user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `campaign_audit_logs`
--

LOCK TABLES `campaign_audit_logs` WRITE;
/*!40000 ALTER TABLE `campaign_audit_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `campaign_audit_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `carts`
--

DROP TABLE IF EXISTS `carts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `carts` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `event_id` int DEFAULT NULL,
  `ip` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `seat_id` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `seat` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `quantity` int NOT NULL DEFAULT '1',
  `amount` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `zone` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `category` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `sub_cat` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `seat_color` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_cart_seat` (`event_id`,`seat_id`,`seat`),
  KEY `idx_user_event` (`user_id`,`event_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `carts`
--

LOCK TABLES `carts` WRITE;
/*!40000 ALTER TABLE `carts` DISABLE KEYS */;
/*!40000 ALTER TABLE `carts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `chargebacks`
--

DROP TABLE IF EXISTS `chargebacks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `chargebacks` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint unsigned NOT NULL,
  `payment_transaction_id` bigint unsigned DEFAULT NULL,
  `chargeback_amount` decimal(10,2) NOT NULL,
  `chargeback_reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `dispute_status` enum('needs_response','received','under_review','evidence_required','evidence_submitted','won','lost','accepted','withdrawn') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'received',
  `gateway` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `gateway_dispute_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `gateway_charge_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `gateway_payment_intent_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `evidence_submitted_at` timestamp NULL DEFAULT NULL,
  `evidence_due_by` timestamp NULL DEFAULT NULL,
  `admin_notified_at` timestamp NULL DEFAULT NULL,
  `resolved_at` timestamp NULL DEFAULT NULL,
  `resolution_outcome` enum('won','lost','accepted','withdrawn') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `gateway_response` json DEFAULT NULL,
  `notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `chargebacks_order_id_dispute_status_index` (`order_id`,`dispute_status`),
  KEY `chargebacks_payment_transaction_id_index` (`payment_transaction_id`),
  KEY `chargebacks_gateway_dispute_id_index` (`gateway_dispute_id`),
  KEY `chargebacks_dispute_status_index` (`dispute_status`),
  KEY `chargebacks_created_at_index` (`created_at`),
  KEY `chargebacks_gateway_payment_intent_id_index` (`gateway_payment_intent_id`),
  CONSTRAINT `chargebacks_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `chargebacks_payment_transaction_id_foreign` FOREIGN KEY (`payment_transaction_id`) REFERENCES `payment_transactions` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chargebacks`
--

LOCK TABLES `chargebacks` WRITE;
/*!40000 ALTER TABLE `chargebacks` DISABLE KEYS */;
/*!40000 ALTER TABLE `chargebacks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `clubs`
--

DROP TABLE IF EXISTS `clubs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `clubs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `contact_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `contact_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `contact_phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `treasurer` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `logo` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `bank_details` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_active` tinyint NOT NULL DEFAULT '1' COMMENT 'allow only 0 / 1 for true and false',
  `is_deleted` tinyint NOT NULL DEFAULT '0' COMMENT 'allow only 0 / 1 for true and false',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `clubs`
--

LOCK TABLES `clubs` WRITE;
/*!40000 ALTER TABLE `clubs` DISABLE KEYS */;
/*!40000 ALTER TABLE `clubs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cms_files`
--

DROP TABLE IF EXISTS `cms_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cms_files` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `filename` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `stored_filename` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `file_path` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `public_url` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `file_size` bigint unsigned DEFAULT NULL,
  `mime_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_image` tinyint(1) NOT NULL DEFAULT '0',
  `is_video` tinyint(1) NOT NULL DEFAULT '0',
  `size` bigint unsigned NOT NULL,
  `category` enum('email','blog','general') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'general',
  `tags` json DEFAULT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `is_public` tinyint(1) NOT NULL DEFAULT '1',
  `uploaded_by` bigint unsigned DEFAULT NULL,
  `usage_count` int unsigned NOT NULL DEFAULT '0',
  `last_accessed_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `cms_files_stored_filename_unique` (`stored_filename`),
  KEY `cms_files_category_index` (`category`),
  KEY `cms_files_mime_type_index` (`mime_type`),
  KEY `cms_files_is_public_index` (`is_public`),
  KEY `cms_files_uploaded_by_index` (`uploaded_by`),
  KEY `cms_files_created_at_index` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cms_files`
--

LOCK TABLES `cms_files` WRITE;
/*!40000 ALTER TABLE `cms_files` DISABLE KEYS */;
/*!40000 ALTER TABLE `cms_files` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `content_pages`
--

DROP TABLE IF EXISTS `content_pages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `content_pages` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `sort_order` int NOT NULL DEFAULT '0',
  `display_section` enum('header','footer','event_info','standalone') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'footer',
  `meta_title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `meta_keywords` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_by` bigint unsigned DEFAULT NULL,
  `updated_by` bigint unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `content_pages_slug_unique` (`slug`),
  KEY `content_pages_is_active_sort_order_index` (`is_active`,`sort_order`),
  KEY `content_pages_display_section_index` (`display_section`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `content_pages`
--

LOCK TABLES `content_pages` WRITE;
/*!40000 ALTER TABLE `content_pages` DISABLE KEYS */;
/*!40000 ALTER TABLE `content_pages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `contents`
--

DROP TABLE IF EXISTS `contents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contents` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `status` int NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contents`
--

LOCK TABLES `contents` WRITE;
/*!40000 ALTER TABLE `contents` DISABLE KEYS */;
/*!40000 ALTER TABLE `contents` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `coupon_usage`
--

DROP TABLE IF EXISTS `coupon_usage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `coupon_usage` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `coupon_id` bigint unsigned DEFAULT NULL COMMENT 'Which coupon was used (nullable to preserve audit trail if coupon deleted)',
  `order_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Order ID (alphanumeric string from orders.order_id)',
  `customer_email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Customer email (for per-customer limit tracking)',
  `discount_applied` decimal(10,2) NOT NULL COMMENT 'Actual discount amount applied to this order',
  `original_subtotal` decimal(10,2) NOT NULL COMMENT 'Order subtotal before discount',
  `final_subtotal` decimal(10,2) NOT NULL COMMENT 'Order subtotal after discount',
  `event_id` bigint unsigned DEFAULT NULL COMMENT 'Which event this order was for',
  `seats_count` int NOT NULL COMMENT 'Number of seats/tickets in this order',
  `used_at` timestamp NOT NULL COMMENT 'When coupon was redeemed',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_coupon_order_unique` (`coupon_id`,`order_id`),
  KEY `coupon_usage_event_id_foreign` (`event_id`),
  KEY `idx_coupon` (`coupon_id`),
  KEY `idx_order` (`order_id`),
  KEY `idx_customer` (`customer_email`),
  KEY `idx_coupon_customer` (`coupon_id`,`customer_email`),
  KEY `idx_used_at` (`used_at`),
  CONSTRAINT `coupon_usage_coupon_id_foreign` FOREIGN KEY (`coupon_id`) REFERENCES `coupons` (`id`) ON DELETE SET NULL,
  CONSTRAINT `coupon_usage_event_id_foreign` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `coupon_usage`
--

LOCK TABLES `coupon_usage` WRITE;
/*!40000 ALTER TABLE `coupon_usage` DISABLE KEYS */;
/*!40000 ALTER TABLE `coupon_usage` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `coupons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `coupons` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `code` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Coupon code: uppercase alphanumeric + hyphens only',
  `description` text COLLATE utf8mb4_unicode_ci COMMENT 'Admin description of coupon purpose',
  `discount_type` enum('percentage','fixed') COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'percentage: % off subtotal, fixed: € off subtotal',
  `discount_value` decimal(10,2) NOT NULL COMMENT 'Percentage (0-100) or fixed amount in euros',
  `applies_to` enum('all_events','specific_event') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'all_events' COMMENT 'Whether coupon applies globally or to specific event',
  `event_id` bigint unsigned DEFAULT NULL COMMENT 'If applies_to=specific_event, which event',
  `max_uses` int DEFAULT NULL COMMENT 'Maximum total uses (NULL = unlimited)',
  `uses_count` int NOT NULL DEFAULT '0' COMMENT 'Current usage count (incremented on each redemption)',
  `max_uses_per_customer` int NOT NULL DEFAULT '1' COMMENT 'Maximum uses per customer email',
  `min_order_value` decimal(10,2) DEFAULT NULL COMMENT 'Minimum subtotal required to apply coupon',
  `valid_from` datetime DEFAULT NULL COMMENT 'Coupon valid from this datetime (NULL = valid immediately)',
  `valid_until` datetime DEFAULT NULL COMMENT 'Coupon expires at this datetime (NULL = never expires)',
  `status` enum('active','inactive','expired') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active' COMMENT 'active: can be used, inactive: disabled by admin, expired: past valid_until',
  `created_by` bigint unsigned DEFAULT NULL COMMENT 'Admin user ID who created this coupon',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `coupons_code_unique` (`code`),
  KEY `coupons_created_by_foreign` (`created_by`),
  KEY `idx_code` (`code`),
  KEY `idx_status` (`status`),
  KEY `idx_valid_dates` (`valid_from`,`valid_until`),
  KEY `idx_event` (`event_id`),
  CONSTRAINT `coupons_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `admins` (`id`) ON DELETE SET NULL,
  CONSTRAINT `coupons_event_id_foreign` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `coupons` WRITE;
/*!40000 ALTER TABLE `coupons` DISABLE KEYS */;
/*!40000 ALTER TABLE `coupons` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `customers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `customers` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint unsigned DEFAULT NULL,
  `preferred_payment_method` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `loyalty_points` int NOT NULL DEFAULT '0',
  `membership_tier` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date_of_birth` date DEFAULT NULL,
  `preferences` json DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `customers_user_id_index` (`user_id`),
  KEY `customers_membership_tier_index` (`membership_tier`),
  CONSTRAINT `customers_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customers`
--

LOCK TABLES `customers` WRITE;
/*!40000 ALTER TABLE `customers` DISABLE KEYS */;
/*!40000 ALTER TABLE `customers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `device_tokens`
--

DROP TABLE IF EXISTS `device_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `device_tokens` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `device_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Human-readable device name',
  `scanner_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Unique scanner identifier',
  `type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'entry_scanner' COMMENT 'Device type: entry_scanner, manager_device, etc.',
  `token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'SHA256 hash of actual token',
  `is_active` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Device active status',
  `expires_at` timestamp NULL DEFAULT NULL COMMENT 'Token expiration time',
  `last_used_at` timestamp NULL DEFAULT NULL COMMENT 'Last successful authentication',
  `last_used_ip` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Last IP address used',
  `allowed_ips` json DEFAULT NULL COMMENT 'IP whitelist (CIDR supported)',
  `allowed_events` json DEFAULT NULL COMMENT 'Event IDs this device can access',
  `created_by` bigint unsigned DEFAULT NULL COMMENT 'Admin who created token',
  `notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'Admin notes about device',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `device_tokens_scanner_id_unique` (`scanner_id`),
  UNIQUE KEY `device_tokens_token_unique` (`token`),
  KEY `device_tokens_scanner_id_index` (`scanner_id`),
  KEY `device_tokens_token_index` (`token`),
  KEY `device_tokens_is_active_expires_at_index` (`is_active`,`expires_at`),
  KEY `device_tokens_type_index` (`type`),
  KEY `device_tokens_created_by_foreign` (`created_by`),
  CONSTRAINT `device_tokens_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Entry staff device authentication tokens';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `device_tokens`
--

LOCK TABLES `device_tokens` WRITE;
/*!40000 ALTER TABLE `device_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `device_tokens` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `donation_amounts`
--

DROP TABLE IF EXISTS `donation_amounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `donation_amounts` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `amount` int NOT NULL,
  `status` tinyint NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `donation_amounts`
--

LOCK TABLES `donation_amounts` WRITE;
/*!40000 ALTER TABLE `donation_amounts` DISABLE KEYS */;
/*!40000 ALTER TABLE `donation_amounts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_accounts`
--

DROP TABLE IF EXISTS `email_accounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_accounts` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `display_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `purpose` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'transactional, support, finance, system, etc.',
  `daily_send_limit` int NOT NULL DEFAULT '500',
  `hourly_send_limit` int NOT NULL DEFAULT '50',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `auto_response` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `reply_to_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `email_accounts_email_unique` (`email`),
  KEY `email_accounts_is_active_index` (`is_active`),
  KEY `email_accounts_purpose_is_active_index` (`purpose`,`is_active`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_accounts`
--

LOCK TABLES `email_accounts` WRITE;
/*!40000 ALTER TABLE `email_accounts` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_accounts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_inbox`
--

DROP TABLE IF EXISTS `email_inbox`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_inbox` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `account_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `message_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `thread_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `from_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `from_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subject` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `body_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `body_html` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `received_at` timestamp NOT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT '0',
  `is_replied` tinyint(1) NOT NULL DEFAULT '0',
  `linked_order_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `linked_ticket_id` bigint unsigned DEFAULT NULL,
  `assigned_to_admin_id` bigint unsigned DEFAULT NULL,
  `priority` enum('low','normal','high','urgent') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'normal',
  `status` enum('new','open','pending','resolved','closed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'new',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `email_inbox_message_id_unique` (`message_id`),
  KEY `email_inbox_account_email_received_at_index` (`account_email`,`received_at`),
  KEY `email_inbox_thread_id_index` (`thread_id`),
  KEY `email_inbox_status_priority_index` (`status`,`priority`),
  KEY `email_inbox_linked_order_id_index` (`linked_order_id`),
  KEY `email_inbox_assigned_to_admin_id_foreign` (`assigned_to_admin_id`),
  CONSTRAINT `email_inbox_assigned_to_admin_id_foreign` FOREIGN KEY (`assigned_to_admin_id`) REFERENCES `admins` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_inbox`
--

LOCK TABLES `email_inbox` WRITE;
/*!40000 ALTER TABLE `email_inbox` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_inbox` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_logs`
--

DROP TABLE IF EXISTS `email_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_logs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `message_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `template_id` bigint unsigned DEFAULT NULL,
  `email_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'order, ticket, receipt, notification, etc.',
  `recipient_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `recipient_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `from_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subject` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `body_html` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `body_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `status` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `send_rate_hour` int NOT NULL DEFAULT '0',
  `error_message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `bounce_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `spam_score` decimal(3,2) DEFAULT NULL,
  `delivery_time_ms` int DEFAULT NULL,
  `sent_at` timestamp NULL DEFAULT NULL,
  `metadata` json DEFAULT NULL,
  `sent_by` int DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `email_logs_message_id_unique` (`message_id`),
  KEY `email_logs_recipient_email_status_index` (`recipient_email`,`status`),
  KEY `email_logs_template_id_sent_at_index` (`template_id`,`sent_at`),
  KEY `email_logs_status_created_at_index` (`status`,`created_at`),
  KEY `idx_sent_at_account` (`sent_at`,`from_email`),
  KEY `idx_status_type` (`status`,`email_type`),
  CONSTRAINT `email_logs_template_id_foreign` FOREIGN KEY (`template_id`) REFERENCES `email_templates` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_logs`
--

LOCK TABLES `email_logs` WRITE;
/*!40000 ALTER TABLE `email_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_rate_tracking`
--

DROP TABLE IF EXISTS `email_rate_tracking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_rate_tracking` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `account_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `hour_timestamp` timestamp NOT NULL COMMENT 'Rounded to hour for rate tracking',
  `emails_sent` int NOT NULL DEFAULT '0',
  `emails_bounced` int NOT NULL DEFAULT '0',
  `emails_spam_reported` int NOT NULL DEFAULT '0',
  `avg_delivery_time_ms` int NOT NULL DEFAULT '0',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_hour` (`account_email`,`hour_timestamp`),
  KEY `email_rate_tracking_account_email_hour_timestamp_index` (`account_email`,`hour_timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_rate_tracking`
--

LOCK TABLES `email_rate_tracking` WRITE;
/*!40000 ALTER TABLE `email_rate_tracking` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_rate_tracking` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_reputation`
--

DROP TABLE IF EXISTS `email_reputation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_reputation` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `account_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `date` date NOT NULL,
  `emails_sent` int NOT NULL DEFAULT '0',
  `emails_delivered` int NOT NULL DEFAULT '0',
  `emails_bounced` int NOT NULL DEFAULT '0',
  `emails_failed` int NOT NULL DEFAULT '0',
  `hard_bounces` int NOT NULL DEFAULT '0',
  `soft_bounces` int NOT NULL DEFAULT '0',
  `spam_reports` int NOT NULL DEFAULT '0',
  `unsubscribes` int NOT NULL DEFAULT '0',
  `bounce_rate` decimal(5,2) NOT NULL DEFAULT '0.00' COMMENT 'Percentage',
  `spam_rate` decimal(5,2) NOT NULL DEFAULT '0.00' COMMENT 'Percentage',
  `delivery_rate` decimal(5,2) NOT NULL DEFAULT '0.00' COMMENT 'Percentage',
  `health_score` decimal(5,2) NOT NULL DEFAULT '100.00' COMMENT '0-100 score',
  `status` enum('good','warning','critical') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'good',
  `alert_sent` tinyint(1) NOT NULL DEFAULT '0',
  `alert_sent_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `email_reputation_account_email_date_unique` (`account_email`,`date`),
  KEY `email_reputation_date_status_index` (`date`,`status`),
  KEY `email_reputation_account_email_date_status_index` (`account_email`,`date`,`status`),
  KEY `email_reputation_account_email_index` (`account_email`),
  KEY `email_reputation_date_index` (`date`),
  CONSTRAINT `email_reputation_account_email_foreign` FOREIGN KEY (`account_email`) REFERENCES `email_accounts` (`email`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_reputation`
--

LOCK TABLES `email_reputation` WRITE;
/*!40000 ALTER TABLE `email_reputation` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_reputation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_template_versions`
--

DROP TABLE IF EXISTS `email_template_versions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_template_versions` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `email_template_id` bigint unsigned NOT NULL,
  `version` int NOT NULL,
  `subject` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `html_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `text_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `variables` json DEFAULT NULL,
  `attachments` json DEFAULT NULL,
  `settings` json DEFAULT NULL,
  `changed_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `change_notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `email_template_versions_email_template_id_version_unique` (`email_template_id`,`version`),
  KEY `email_template_versions_version_index` (`version`),
  CONSTRAINT `email_template_versions_email_template_id_foreign` FOREIGN KEY (`email_template_id`) REFERENCES `email_templates` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_template_versions`
--

LOCK TABLES `email_template_versions` WRITE;
/*!40000 ALTER TABLE `email_template_versions` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_template_versions` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `email_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_templates` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'system',
  `sender_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `sender_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `subject` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `body_html` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `body_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `placeholders` json DEFAULT NULL,
  `attachments` json DEFAULT NULL,
  `version` int NOT NULL DEFAULT '1',
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `is_system` tinyint(1) NOT NULL DEFAULT '0',
  `include_event_reminder` tinyint(1) NOT NULL DEFAULT '1',
  `include_venue_directions` tinyint(1) NOT NULL DEFAULT '1',
  `include_support_contact` tinyint(1) NOT NULL DEFAULT '1',
  `attach_pdf_ticket` tinyint(1) NOT NULL DEFAULT '1',
  `times_used` int NOT NULL DEFAULT '0',
  `last_used_at` timestamp NULL DEFAULT NULL,
  `created_by` int DEFAULT NULL,
  `updated_by` int DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `email_templates_slug_unique` (`slug`),
  KEY `email_templates_type_is_active_index` (`type`,`is_active`),
  KEY `email_templates_slug_index` (`slug`),
  KEY `email_templates_slug_is_active_index` (`slug`,`is_active`),
  KEY `email_templates_type_index` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `email_templates` WRITE;
/*!40000 ALTER TABLE `email_templates` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_templates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `event_categories`
--

DROP TABLE IF EXISTS `event_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `event_categories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `icon` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `color` varchar(7) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sort_order` int NOT NULL DEFAULT '0',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `event_categories_name_unique` (`name`),
  UNIQUE KEY `event_categories_slug_unique` (`slug`),
  KEY `event_categories_slug_index` (`slug`),
  KEY `event_categories_is_active_index` (`is_active`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `event_categories`
--

LOCK TABLES `event_categories` WRITE;
/*!40000 ALTER TABLE `event_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `event_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `event_images`
--

DROP TABLE IF EXISTS `event_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `event_images` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `imageable_id` bigint unsigned NOT NULL,
  `imageable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `role` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'gallery',
  `filename` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `storage_path` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL,
  `thumbnail_path` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `large_path` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `caption` text COLLATE utf8mb4_unicode_ci,
  `alt_text` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `width` int DEFAULT NULL,
  `height` int DEFAULT NULL,
  `file_size` int DEFAULT NULL,
  `mime_type` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_featured` tinyint(1) NOT NULL DEFAULT '0',
  `display_order` int NOT NULL DEFAULT '0',
  `legacy_image_id` int unsigned DEFAULT NULL,
  `download_status` enum('pending','downloaded','failed') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'downloaded',
  `download_error` text COLLATE utf8mb4_unicode_ci,
  `migrated_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_imageable` (`imageable_type`,`imageable_id`),
  KEY `event_images_legacy_image_id_index` (`legacy_image_id`),
  KEY `event_images_is_featured_index` (`is_featured`),
  KEY `event_images_download_status_index` (`download_status`),
  KEY `event_images_role_index` (`role`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `event_images`
--

LOCK TABLES `event_images` WRITE;
/*!40000 ALTER TABLE `event_images` DISABLE KEYS */;
INSERT INTO `event_images` VALUES (1,51,'App\\Model\\ArchivedEvent','hero','2b707b44-d055-4185-85ae-eff22585f33c.jpg','archived-events/51/original/2b707b44-d055-4185-85ae-eff22585f33c.jpg','archived-events/51/thumbnails/2b707b44-d055-4185-85ae-eff22585f33c.jpg','archived-events/51/large/2b707b44-d055-4185-85ae-eff22585f33c.jpg',NULL,NULL,'Ayed and Mody  Alshamrani London 2024',1600,970,1609924,'image/jpeg',0,0,NULL,'downloaded',NULL,NULL,'2025-11-29 13:13:45','2025-11-29 13:13:45');
/*!40000 ALTER TABLE `event_images` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `event_photos`
--

DROP TABLE IF EXISTS `event_photos`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `event_photos` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `file_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `event_id` bigint unsigned NOT NULL,
  `is_featured` tinyint NOT NULL DEFAULT '0',
  `status` tinyint NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `event_photos_event_id_foreign` (`event_id`),
  CONSTRAINT `event_photos_event_id_foreign` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `event_photos`
--

LOCK TABLES `event_photos` WRITE;
/*!40000 ALTER TABLE `event_photos` DISABLE KEYS */;
/*!40000 ALTER TABLE `event_photos` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `event_venues`
--

DROP TABLE IF EXISTS `event_venues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `event_venues` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `event_id` bigint unsigned NOT NULL,
  `venue_template_id` bigint unsigned NOT NULL,
  `pricing_overrides` json DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_event_venue_template` (`event_id`,`venue_template_id`),
  KEY `idx_event_venues_event_id` (`event_id`),
  KEY `idx_event_venues_venue_template_id` (`venue_template_id`),
  KEY `idx_event_venues_event_active` (`event_id`,`is_active`),
  CONSTRAINT `fk_event_venues_event_id` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_event_venues_venue_template_id` FOREIGN KEY (`venue_template_id`) REFERENCES `venue_templates` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `event_venues`
--

LOCK TABLES `event_venues` WRITE;
/*!40000 ALTER TABLE `event_venues` DISABLE KEYS */;
/*!40000 ALTER TABLE `event_venues` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `event_wise_seat_categories`
--

DROP TABLE IF EXISTS `event_wise_seat_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `event_wise_seat_categories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `event_id` bigint NOT NULL,
  `seats` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `ticket_category` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `price` decimal(10,2) DEFAULT NULL,
  `zone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `event_wise_seat_categories_seats_event_id_index` (`seats`,`event_id`),
  KEY `event_wise_seat_categories_event_id_index` (`event_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `event_wise_seat_categories`
--

LOCK TABLES `event_wise_seat_categories` WRITE;
/*!40000 ALTER TABLE `event_wise_seat_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `event_wise_seat_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `events`
--

DROP TABLE IF EXISTS `events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `events` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `legacy_event_id` int unsigned DEFAULT NULL COMMENT 'Original event ID from legacy globalgala system',
  `theme_id` bigint unsigned DEFAULT NULL,
  `venue_id` bigint unsigned DEFAULT NULL,
  `club_id` bigint unsigned NOT NULL,
  `organizer_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `organizer_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `organizer_phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `sub_title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `event_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `category` enum('concert','conference','convention','exhibition','festival','party','performance','other') COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Event category for Revolut industry_data (improves acceptance rates)',
  `market` enum('primary','secondary') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'primary' COMMENT 'Ticket distribution type: primary (organizer) or secondary (reseller)',
  `event_image_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `event_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `page_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `start_date` date NOT NULL,
  `event_year` int unsigned DEFAULT NULL COMMENT 'Year for archival grouping (especially for legacy events with missing dates)',
  `end_date` date NOT NULL,
  `supplier_payment_date` datetime DEFAULT NULL COMMENT 'Date when funds released to supplier (default: event_date + 7 days)',
  `start_time` time NOT NULL,
  `doors_open_time` time DEFAULT NULL,
  `timezone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'UTC',
  `voting_end_time` datetime NOT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `map_banner_text` text COLLATE utf8mb4_unicode_ci,
  `booking_banner_image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `inquiry_poll` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `event_email_thankyou_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `event_support_thankyou_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `meta_description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `is_featured` tinyint(1) NOT NULL DEFAULT '0',
  `meta_title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_keyword` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_published` tinyint(1) NOT NULL DEFAULT '0',
  `is_legacy` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Indicates if event is from legacy archive (not bookable)',
  `display_order` int unsigned NOT NULL DEFAULT '0' COMMENT 'Manual sorting order for event listings',
  `is_test_mode` tinyint(1) NOT NULL DEFAULT '0',
  `publish_website` tinyint(1) NOT NULL DEFAULT '0',
  `slug` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `currency` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '£',
  `max_no_of_tickets` int NOT NULL,
  `ticket_template_id` bigint unsigned DEFAULT NULL,
  `bracelet_template_id` bigint unsigned DEFAULT NULL,
  `label_template_id` bigint unsigned DEFAULT NULL,
  `no_of_raffle_ticket` int DEFAULT NULL,
  `raffle_ticket_price` double(8,2) DEFAULT NULL,
  `video` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `main_page_banner` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `centered_banner` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `baner_wide` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `banner_tablet` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `banner_phone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `destaque_home` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `imagem_poster` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `buttom_banner_frame` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` tinyint NOT NULL DEFAULT '1',
  `legacy_metadata` json DEFAULT NULL COMMENT 'JSON storage for legacy system data (original status, notes, etc.)',
  `enable_booking_fee` tinyint(1) NOT NULL DEFAULT '0',
  `enable_vat` tinyint(1) NOT NULL DEFAULT '0',
  `booking_fee_rate` decimal(5,4) DEFAULT NULL,
  `booking_fee_min` decimal(8,2) DEFAULT NULL,
  `booking_fee_max` decimal(8,2) DEFAULT NULL,
  `vat_rate` decimal(5,4) DEFAULT NULL,
  `ticket_code_type` enum('qr','barcode','both') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'qr' COMMENT 'Primary code type for tickets (qr, barcode, or both)',
  `email_code_type` enum('qr','barcode') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'qr' COMMENT 'Code type to display in emails (qr or barcode only)',
  `wristband_code_type` enum('qr','barcode') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'barcode' COMMENT 'Code type for wristband printing (usually barcode)',
  `pdf_code_type` enum('qr','barcode','both') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'qr' COMMENT 'Code type for PDF tickets',
  `enable_wristband_printing` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Enable wristband printing for this event',
  `wristband_printer_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Zebra printer identifier for this event',
  `wristband_printing_enabled_at` timestamp NULL DEFAULT NULL COMMENT 'Timestamp when wristband printing was enabled',
  `scanner_config` json DEFAULT NULL COMMENT 'Scanner configuration (allowed code types, duplicate window, etc.)',
  `is_deleted` tinyint NOT NULL DEFAULT '0' COMMENT 'allow only 0 / 1 for true and false',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `sell_start_date` date DEFAULT NULL,
  `sell_start_time` time DEFAULT NULL,
  `sell_end_date` date DEFAULT NULL,
  `sell_end_time` time DEFAULT NULL,
  `publish_start_date` date DEFAULT NULL,
  `publish_start_time` time DEFAULT NULL,
  `publish_end_date` date DEFAULT NULL,
  `publish_end_time` time DEFAULT NULL,
  `include_booking_fee` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Whether booking fee (2.5%) is included for public bookings',
  `include_tax` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Whether tax (21% VAT) is included for public bookings',
  PRIMARY KEY (`id`),
  UNIQUE KEY `events_slug_unique` (`slug`),
  KEY `events_slug_index` (`slug`),
  KEY `events_venue_id_foreign` (`venue_id`),
  KEY `events_page_name_index` (`page_name`),
  KEY `events_is_published_index` (`is_published`),
  KEY `events_is_featured_index` (`is_featured`),
  KEY `events_theme_id_foreign` (`theme_id`),
  KEY `events_category_index` (`category`),
  KEY `events_market_index` (`market`),
  KEY `idx_events_public_filtering` (`is_deleted`,`is_published`,`is_test_mode`,`start_date`),
  KEY `idx_events_featured_published` (`is_deleted`,`is_featured`,`is_published`),
  KEY `idx_events_wristband_printing` (`enable_wristband_printing`),
  KEY `events_legacy_event_id_index` (`legacy_event_id`),
  KEY `events_is_legacy_index` (`is_legacy`),
  KEY `events_event_year_index` (`event_year`),
  KEY `events_display_order_index` (`display_order`),
  CONSTRAINT `events_theme_id_foreign` FOREIGN KEY (`theme_id`) REFERENCES `venue_themes` (`id`) ON DELETE SET NULL,
  CONSTRAINT `events_venue_id_foreign` FOREIGN KEY (`venue_id`) REFERENCES `venues` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `events`
--

LOCK TABLES `events` WRITE;
/*!40000 ALTER TABLE `events` DISABLE KEYS */;
INSERT INTO `events` VALUES (1,NULL,NULL,NULL,0,'','','','Test Scanner Auth Event',NULL,'',NULL,'primary',NULL,'',NULL,'0000-00-00',NULL,'0000-00-00',NULL,'00:00:00',NULL,'UTC','0000-00-00 00:00:00','',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,0,0,0,0,'test-scanner-auth','£',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0,NULL,0,0,NULL,NULL,NULL,NULL,'qr','qr','barcode','qr',1,'192.168.1.50','2025-11-27 14:46:50',NULL,0,'2025-11-23 20:38:50','2025-12-03 16:27:13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1),(2,NULL,NULL,NULL,0,'','','','Scanner Test Event',NULL,'',NULL,'primary',NULL,'',NULL,'2025-11-25',NULL,'0000-00-00',NULL,'19:00:00',NULL,'UTC','0000-00-00 00:00:00','',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,1,0,0,0,0,'scanner-test-event','£',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',0,NULL,0,0,NULL,NULL,NULL,NULL,'qr','qr','barcode','qr',1,NULL,NULL,NULL,0,'2025-11-24 13:13:45','2025-12-03 16:27:13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1),(23,NULL,NULL,1,0,'','','','Test Concert - Live Performance',NULL,'',NULL,'primary',NULL,'test-concert-cXaRqP',NULL,'2025-12-30',NULL,'2025-12-30',NULL,'20:00:00',NULL,'UTC','0000-00-00 00:00:00','Amazing test concert for POS testing',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,0,0,0,0,'test-concert-live-performance','£',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',1,NULL,0,0,NULL,NULL,NULL,NULL,'qr','qr','barcode','qr',1,NULL,NULL,NULL,0,'2025-11-30 18:14:59','2025-12-03 16:27:13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1);
/*!40000 ALTER TABLE `events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `failed_invitation_attempts`
--

DROP TABLE IF EXISTS `failed_invitation_attempts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `failed_invitation_attempts` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `invitation_id` bigint unsigned NOT NULL,
  `campaign_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `failure_type` enum('invalid_email','server_error','timeout','hard_bounce','soft_bounce','unknown') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Categorized failure reason',
  `failure_reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'Human-readable failure description',
  `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `retry_count` int NOT NULL DEFAULT '0' COMMENT 'Number of retry attempts',
  `can_retry` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Whether retry is allowed',
  `last_error` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'Last SMTP or exception error',
  `metadata` json DEFAULT NULL COMMENT 'Additional failure context',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_failed_invitation_id` (`invitation_id`),
  KEY `idx_failed_campaign_name` (`campaign_name`),
  KEY `idx_failure_type` (`failure_type`),
  KEY `idx_can_retry` (`can_retry`),
  KEY `idx_failed_at` (`failed_at`),
  KEY `idx_failed_campaign_type` (`campaign_name`,`failure_type`),
  CONSTRAINT `failed_invitation_attempts_invitation_id_foreign` FOREIGN KEY (`invitation_id`) REFERENCES `account_setup_invitations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `failed_invitation_attempts`
--

LOCK TABLES `failed_invitation_attempts` WRITE;
/*!40000 ALTER TABLE `failed_invitation_attempts` DISABLE KEYS */;
/*!40000 ALTER TABLE `failed_invitation_attempts` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `failed_jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `failed_jobs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `uuid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `connection` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `queue` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `exception` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`)
) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `failed_jobs`
--

LOCK TABLES `failed_jobs` WRITE;
/*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */;
INSERT INTO `failed_jobs` VALUES (1,'f185ce7d-fea0-4593-a144-70a48aa50040','database','tickets','{\"uuid\":\"f185ce7d-fea0-4593-a144-70a48aa50040\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:7;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-01 15:40:29.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"w3SejZMK2klugLe1RMLWyEaVxp6GdT3n\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1601)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-01 15:46:31'),(2,'0ba92268-eaa4-4943-a946-c56bee85bf8a','database','tickets','{\"uuid\":\"0ba92268-eaa4-4943-a946-c56bee85bf8a\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:8;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-01 15:55:33.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"A2dJVbZIe1F7aGbNVcHvOMbItk5tBIbS\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1735)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-01 16:01:37'),(3,'5c289017-ca8a-4205-8712-63b4b5122107','database','tickets','{\"uuid\":\"5c289017-ca8a-4205-8712-63b4b5122107\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:9;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-01 16:27:23.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"f2OuPekOnGhc2lmeCWx1RWldCTpZLYqO\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1864)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-01 16:33:26'),(4,'e0daab52-4aaa-4a8e-9918-68464d54d5ce','database','default','{\"uuid\":\"e0daab52-4aaa-4a8e-9918-68464d54d5ce\",\"displayName\":\"App\\\\Mail\\\\PaymentConfirmationMail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":null,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":null,\"timeout\":null,\"retryUntil\":null,\"data\":{\"commandName\":\"Illuminate\\\\Mail\\\\SendQueuedMailable\",\"command\":\"O:34:\\\"Illuminate\\\\Mail\\\\SendQueuedMailable\\\":15:{s:8:\\\"mailable\\\";O:32:\\\"App\\\\Mail\\\\PaymentConfirmationMail\\\":8:{s:5:\\\"order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:21;s:9:\\\"relations\\\";a:3:{i:0;s:11:\\\"EventDetail\\\";i:1;s:17:\\\"EventDetail.venue\\\";i:2;s:9:\\\"lineItems\\\";}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:14:\\\"paymentDetails\\\";a:6:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:4:\\\"cash\\\";s:14:\\\"transaction_id\\\";N;s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 15:01:41.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";s:6:\\\"status\\\";s:4:\\\"paid\\\";}s:13:\\\"ticketPdfPath\\\";s:77:\\\"\\/Users\\/charlie\\/code\\/showprima\\/storage\\/app\\/tickets\\/order_21_20251202150141.pdf\\\";s:15:\\\"embeddedTickets\\\";a:0:{}s:8:\\\"isResend\\\";b:0;s:15:\\\"\\u0000*\\u0000bccTicketing\\\";b:1;s:2:\\\"to\\\";a:1:{i:0;a:2:{s:4:\\\"name\\\";N;s:7:\\\"address\\\";s:17:\\\"charlie@09-07.xyz\\\";}}s:6:\\\"mailer\\\";s:4:\\\"smtp\\\";}s:5:\\\"tries\\\";N;s:7:\\\"timeout\\\";N;s:13:\\\"maxExceptions\\\";N;s:17:\\\"shouldBeEncrypted\\\";b:0;s:10:\\\"connection\\\";N;s:5:\\\"queue\\\";N;s:15:\\\"chainConnection\\\";N;s:10:\\\"chainQueue\\\";N;s:19:\\\"chainCatchCallbacks\\\";N;s:5:\\\"delay\\\";N;s:11:\\\"afterCommit\\\";N;s:10:\\\"middleware\\\";a:0:{}s:7:\\\"chained\\\";a:0:{}s:3:\\\"job\\\";N;}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1664)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\MailManager))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/SendQueuedMailable.php(74): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\MailManager))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Mail\\SendQueuedMailable->handle(Object(Illuminate\\Mail\\MailManager))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#15 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#16 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(Illuminate\\Mail\\SendQueuedMailable), false)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Mail\\SendQueuedMailable))\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#39 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#41 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#42 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#45 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 {main}','2025-12-02 16:53:58'),(5,'516f6cf8-e37a-40a4-ab8a-15085a634233','database','default','{\"uuid\":\"516f6cf8-e37a-40a4-ab8a-15085a634233\",\"displayName\":\"App\\\\Mail\\\\PaymentConfirmationMail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":null,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":null,\"timeout\":null,\"retryUntil\":null,\"data\":{\"commandName\":\"Illuminate\\\\Mail\\\\SendQueuedMailable\",\"command\":\"O:34:\\\"Illuminate\\\\Mail\\\\SendQueuedMailable\\\":15:{s:8:\\\"mailable\\\";O:32:\\\"App\\\\Mail\\\\PaymentConfirmationMail\\\":8:{s:5:\\\"order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:21;s:9:\\\"relations\\\";a:3:{i:0;s:11:\\\"EventDetail\\\";i:1;s:17:\\\"EventDetail.venue\\\";i:2;s:9:\\\"lineItems\\\";}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:14:\\\"paymentDetails\\\";a:6:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:4:\\\"cash\\\";s:14:\\\"transaction_id\\\";N;s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 15:17:48.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";s:6:\\\"status\\\";s:4:\\\"paid\\\";}s:13:\\\"ticketPdfPath\\\";s:77:\\\"\\/Users\\/charlie\\/code\\/showprima\\/storage\\/app\\/tickets\\/order_21_20251202151748.pdf\\\";s:15:\\\"embeddedTickets\\\";a:0:{}s:8:\\\"isResend\\\";b:0;s:15:\\\"\\u0000*\\u0000bccTicketing\\\";b:1;s:2:\\\"to\\\";a:1:{i:0;a:2:{s:4:\\\"name\\\";N;s:7:\\\"address\\\";s:17:\\\"charlie@09-07.xyz\\\";}}s:6:\\\"mailer\\\";s:4:\\\"smtp\\\";}s:5:\\\"tries\\\";N;s:7:\\\"timeout\\\";N;s:13:\\\"maxExceptions\\\";N;s:17:\\\"shouldBeEncrypted\\\";b:0;s:10:\\\"connection\\\";N;s:5:\\\"queue\\\";N;s:15:\\\"chainConnection\\\";N;s:10:\\\"chainQueue\\\";N;s:19:\\\"chainCatchCallbacks\\\";N;s:5:\\\"delay\\\";N;s:11:\\\"afterCommit\\\";N;s:10:\\\"middleware\\\";a:0:{}s:7:\\\"chained\\\";a:0:{}s:3:\\\"job\\\";N;}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1712)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\MailManager))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/SendQueuedMailable.php(74): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\MailManager))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Mail\\SendQueuedMailable->handle(Object(Illuminate\\Mail\\MailManager))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#15 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#16 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(Illuminate\\Mail\\SendQueuedMailable), false)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Mail\\SendQueuedMailable))\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#39 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#41 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#42 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#45 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 {main}','2025-12-02 16:53:58'),(6,'55dfe2c1-ac89-4e7c-8b0a-9406241938d9','database','default','{\"uuid\":\"55dfe2c1-ac89-4e7c-8b0a-9406241938d9\",\"displayName\":\"App\\\\Mail\\\\PaymentConfirmationMail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":null,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":null,\"timeout\":null,\"retryUntil\":null,\"data\":{\"commandName\":\"Illuminate\\\\Mail\\\\SendQueuedMailable\",\"command\":\"O:34:\\\"Illuminate\\\\Mail\\\\SendQueuedMailable\\\":15:{s:8:\\\"mailable\\\";O:32:\\\"App\\\\Mail\\\\PaymentConfirmationMail\\\":8:{s:5:\\\"order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:21;s:9:\\\"relations\\\";a:3:{i:0;s:11:\\\"EventDetail\\\";i:1;s:17:\\\"EventDetail.venue\\\";i:2;s:9:\\\"lineItems\\\";}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:14:\\\"paymentDetails\\\";a:6:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:4:\\\"cash\\\";s:14:\\\"transaction_id\\\";N;s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 15:19:29.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";s:6:\\\"status\\\";s:4:\\\"paid\\\";}s:13:\\\"ticketPdfPath\\\";s:77:\\\"\\/Users\\/charlie\\/code\\/showprima\\/storage\\/app\\/tickets\\/order_21_20251202151929.pdf\\\";s:15:\\\"embeddedTickets\\\";a:0:{}s:8:\\\"isResend\\\";b:0;s:15:\\\"\\u0000*\\u0000bccTicketing\\\";b:1;s:2:\\\"to\\\";a:1:{i:0;a:2:{s:4:\\\"name\\\";N;s:7:\\\"address\\\";s:17:\\\"charlie@09-07.xyz\\\";}}s:6:\\\"mailer\\\";s:4:\\\"smtp\\\";}s:5:\\\"tries\\\";N;s:7:\\\"timeout\\\";N;s:13:\\\"maxExceptions\\\";N;s:17:\\\"shouldBeEncrypted\\\";b:0;s:10:\\\"connection\\\";N;s:5:\\\"queue\\\";N;s:15:\\\"chainConnection\\\";N;s:10:\\\"chainQueue\\\";N;s:19:\\\"chainCatchCallbacks\\\";N;s:5:\\\"delay\\\";N;s:11:\\\"afterCommit\\\";N;s:10:\\\"middleware\\\";a:0:{}s:7:\\\"chained\\\";a:0:{}s:3:\\\"job\\\";N;}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1755)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\MailManager))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/SendQueuedMailable.php(74): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\MailManager))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Mail\\SendQueuedMailable->handle(Object(Illuminate\\Mail\\MailManager))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#15 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#16 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(Illuminate\\Mail\\SendQueuedMailable), false)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Mail\\SendQueuedMailable))\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#39 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#41 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#42 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#45 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 {main}','2025-12-02 16:53:58'),(7,'5bf299dc-22d4-4b80-b057-0e1b476c7650','database','default','{\"uuid\":\"5bf299dc-22d4-4b80-b057-0e1b476c7650\",\"displayName\":\"App\\\\Mail\\\\PaymentConfirmationMail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":null,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":null,\"timeout\":null,\"retryUntil\":null,\"data\":{\"commandName\":\"Illuminate\\\\Mail\\\\SendQueuedMailable\",\"command\":\"O:34:\\\"Illuminate\\\\Mail\\\\SendQueuedMailable\\\":15:{s:8:\\\"mailable\\\";O:32:\\\"App\\\\Mail\\\\PaymentConfirmationMail\\\":8:{s:5:\\\"order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:21;s:9:\\\"relations\\\";a:3:{i:0;s:11:\\\"EventDetail\\\";i:1;s:17:\\\"EventDetail.venue\\\";i:2;s:9:\\\"lineItems\\\";}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:14:\\\"paymentDetails\\\";a:6:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:4:\\\"cash\\\";s:14:\\\"transaction_id\\\";N;s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 15:22:29.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";s:6:\\\"status\\\";s:4:\\\"paid\\\";}s:13:\\\"ticketPdfPath\\\";s:77:\\\"\\/Users\\/charlie\\/code\\/showprima\\/storage\\/app\\/tickets\\/order_21_20251202152229.pdf\\\";s:15:\\\"embeddedTickets\\\";a:0:{}s:8:\\\"isResend\\\";b:0;s:15:\\\"\\u0000*\\u0000bccTicketing\\\";b:1;s:2:\\\"to\\\";a:1:{i:0;a:2:{s:4:\\\"name\\\";N;s:7:\\\"address\\\";s:17:\\\"charlie@09-07.xyz\\\";}}s:6:\\\"mailer\\\";s:4:\\\"smtp\\\";}s:5:\\\"tries\\\";N;s:7:\\\"timeout\\\";N;s:13:\\\"maxExceptions\\\";N;s:17:\\\"shouldBeEncrypted\\\";b:0;s:10:\\\"connection\\\";N;s:5:\\\"queue\\\";N;s:15:\\\"chainConnection\\\";N;s:10:\\\"chainQueue\\\";N;s:19:\\\"chainCatchCallbacks\\\";N;s:5:\\\"delay\\\";N;s:11:\\\"afterCommit\\\";N;s:10:\\\"middleware\\\";a:0:{}s:7:\\\"chained\\\";a:0:{}s:3:\\\"job\\\";N;}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1798)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\MailManager))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/SendQueuedMailable.php(74): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\MailManager))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Mail\\SendQueuedMailable->handle(Object(Illuminate\\Mail\\MailManager))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#15 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#16 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(Illuminate\\Mail\\SendQueuedMailable), false)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Mail\\SendQueuedMailable))\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#39 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#41 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#42 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#45 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 {main}','2025-12-02 16:53:58'),(8,'5fd2be45-7cbb-4d4e-8d47-8a1ab9f01300','database','default','{\"uuid\":\"5fd2be45-7cbb-4d4e-8d47-8a1ab9f01300\",\"displayName\":\"App\\\\Mail\\\\PaymentConfirmationMail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":null,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":null,\"timeout\":null,\"retryUntil\":null,\"data\":{\"commandName\":\"Illuminate\\\\Mail\\\\SendQueuedMailable\",\"command\":\"O:34:\\\"Illuminate\\\\Mail\\\\SendQueuedMailable\\\":15:{s:8:\\\"mailable\\\";O:32:\\\"App\\\\Mail\\\\PaymentConfirmationMail\\\":8:{s:5:\\\"order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:21;s:9:\\\"relations\\\";a:3:{i:0;s:11:\\\"EventDetail\\\";i:1;s:17:\\\"EventDetail.venue\\\";i:2;s:9:\\\"lineItems\\\";}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:14:\\\"paymentDetails\\\";a:6:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:4:\\\"cash\\\";s:14:\\\"transaction_id\\\";N;s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 15:30:30.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";s:6:\\\"status\\\";s:4:\\\"paid\\\";}s:13:\\\"ticketPdfPath\\\";s:77:\\\"\\/Users\\/charlie\\/code\\/showprima\\/storage\\/app\\/tickets\\/order_21_20251202153030.pdf\\\";s:15:\\\"embeddedTickets\\\";a:0:{}s:8:\\\"isResend\\\";b:0;s:15:\\\"\\u0000*\\u0000bccTicketing\\\";b:1;s:2:\\\"to\\\";a:1:{i:0;a:2:{s:4:\\\"name\\\";N;s:7:\\\"address\\\";s:17:\\\"charlie@09-07.xyz\\\";}}s:6:\\\"mailer\\\";s:4:\\\"smtp\\\";}s:5:\\\"tries\\\";N;s:7:\\\"timeout\\\";N;s:13:\\\"maxExceptions\\\";N;s:17:\\\"shouldBeEncrypted\\\";b:0;s:10:\\\"connection\\\";N;s:5:\\\"queue\\\";N;s:15:\\\"chainConnection\\\";N;s:10:\\\"chainQueue\\\";N;s:19:\\\"chainCatchCallbacks\\\";N;s:5:\\\"delay\\\";N;s:11:\\\"afterCommit\\\";N;s:10:\\\"middleware\\\";a:0:{}s:7:\\\"chained\\\";a:0:{}s:3:\\\"job\\\";N;}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1841)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\MailManager))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/SendQueuedMailable.php(74): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\MailManager))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Mail\\SendQueuedMailable->handle(Object(Illuminate\\Mail\\MailManager))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#15 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#16 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(Illuminate\\Mail\\SendQueuedMailable), false)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Mail\\SendQueuedMailable))\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#39 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#41 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#42 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#45 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 {main}','2025-12-02 16:53:58'),(9,'dfcc8800-1e62-4634-847a-5580754ec8d1','database','tickets','{\"uuid\":\"dfcc8800-1e62-4634-847a-5580754ec8d1\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:10;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-01 16:41:29.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"82LLABvSVYhOaMrdylS7lg2tLPb3BS5P\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #3682)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:00:01'),(10,'61782e1f-d0ab-4a9f-a25b-15b252798192','database','tickets','{\"uuid\":\"61782e1f-d0ab-4a9f-a25b-15b252798192\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:11;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-01 16:41:57.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"77mUVot8YfcvGV1izMWn8YE9jr1zuQo5\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #3725)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:00:01'),(11,'1f1e16ca-9e62-4ca2-9d21-182e68cb5a28','database','tickets','{\"uuid\":\"1f1e16ca-9e62-4ca2-9d21-182e68cb5a28\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:12;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-01 16:55:56.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"kkyI9bvgpfVqlDuwXOYxSQHSzmfoDVjS\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #3768)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:00:01'),(12,'fe450e0b-945e-42e5-9ade-2debb1398e08','database','tickets','{\"uuid\":\"fe450e0b-945e-42e5-9ade-2debb1398e08\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:13;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-01 17:14:02.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"ZkarbXwaBLyiOB1SyuXGkzIs6IAJ9v7c\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #3811)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:00:01'),(13,'ef7b16e0-c387-4234-8446-f925e89bcf7c','database','tickets','{\"uuid\":\"ef7b16e0-c387-4234-8446-f925e89bcf7c\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:14;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:5:\\\"50.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-01 17:41:57.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"Xu3IUe2IVyw47cfwf24OhvJXq8PG74bm\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #3854)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:00:01'),(14,'3e5eff69-3ed2-48f4-af9a-6bd9cb79ac25','database','tickets','{\"uuid\":\"3e5eff69-3ed2-48f4-af9a-6bd9cb79ac25\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:15;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:5:\\\"50.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-01 17:48:34.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"kLGw6lBYLHlSr23IzSeEehTW3IISzjY4\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #3897)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:00:01'),(15,'4d011b21-641b-4123-9366-c4aa24084c5f','database','tickets','{\"uuid\":\"4d011b21-641b-4123-9366-c4aa24084c5f\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:16;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-01 18:07:03.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"1OXFOyVqfviPvU0YbRkI3Nn8RGum3ztr\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #3940)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:00:01'),(16,'f14fd2c0-f13f-4782-9108-5f349e962271','database','tickets','{\"uuid\":\"f14fd2c0-f13f-4782-9108-5f349e962271\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:17;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"150.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-01 18:45:14.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"tHSIO9c86wDZ5ebAvE1kulyK34hy7DBZ\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #3983)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:00:01'),(17,'098ee042-4990-436c-8f37-777ebec08419','database','tickets','{\"uuid\":\"098ee042-4990-436c-8f37-777ebec08419\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:18;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"150.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 12:55:00.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"Q8Q6NZr6BMXpapVCN5UdtAWGx681IKgV\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4026)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:00:01'),(18,'b0f341ee-aa60-4986-84b1-215bd0901f7f','database','tickets','{\"uuid\":\"b0f341ee-aa60-4986-84b1-215bd0901f7f\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:19;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 13:02:52.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"0liHzvDLBWeQ0tW9xPbpcKm5RruBIbso\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4069)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:00:01'),(19,'b6af6cd0-6400-47fc-a230-c905013b8544','database','tickets','{\"uuid\":\"b6af6cd0-6400-47fc-a230-c905013b8544\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:20;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 13:58:26.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"ptvHxTjRjvUwRMYwpO5mkY0C9DDZmpdB\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4112)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:00:01'),(20,'4aeb4f7f-45cf-4f92-a421-3bc47807f45a','database','tickets','{\"uuid\":\"4aeb4f7f-45cf-4f92-a421-3bc47807f45a\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:21;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 14:36:58.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"Wpd42FnkHDZkwxvWUXtQZMRw2N7vFCrd\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4155)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:00:01'),(21,'618548cc-1198-4fd2-ab91-98ab726c3c32','database','tickets','{\"uuid\":\"618548cc-1198-4fd2-ab91-98ab726c3c32\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:22;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:5:\\\"50.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 14:37:29.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"8Cji7gRGjNC3E1MtBIqceYHV1BHydt5v\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4198)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:00:01'),(22,'43fd2f0d-b269-4ab3-8de0-901acdedba1a','database','tickets','{\"uuid\":\"43fd2f0d-b269-4ab3-8de0-901acdedba1a\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:23;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:5:\\\"50.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 14:37:54.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"bxkF0b6Bb0HC4T8M2ZvA2eHxI53d0RuW\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4241)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:00:01'),(23,'bd4c8af1-ef82-45d1-a2de-79593c02d15a','database','tickets','{\"uuid\":\"bd4c8af1-ef82-45d1-a2de-79593c02d15a\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:24;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:5:\\\"50.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 14:40:21.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"bZraqDuLJlmMxTNZlFrDNmEYCJWwSXln\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4284)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:00:01'),(24,'187a0d29-5c00-470b-9d35-937d5c8277db','database','tickets','{\"uuid\":\"187a0d29-5c00-470b-9d35-937d5c8277db\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:25;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 14:45:44.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"vqhvCQR5260tJH3egOUSJGNnzhAC39NJ\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4327)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:00:01'),(25,'421535de-f3a2-418b-a8d4-e755f4d4781b','database','tickets','{\"uuid\":\"421535de-f3a2-418b-a8d4-e755f4d4781b\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:26;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 15:56:31.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"lFGnDSyrsLWGA2PPfu0npxAB9ZwbtrM3\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4370)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:00:01'),(26,'74afe906-fd54-43ef-a3ab-321d177ab3a7','database','tickets','{\"uuid\":\"74afe906-fd54-43ef-a3ab-321d177ab3a7\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:27;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 16:54:29.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"dhyIjDMSF7fMUfUpFH6i9ytBcvq3lw4c\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4413)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:00:31'),(27,'3a450aa8-5eca-4b6e-8664-6c0c6564076a','database','tickets','{\"uuid\":\"3a450aa8-5eca-4b6e-8664-6c0c6564076a\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:28;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 16:54:45.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"3SGQ97S570PhdvUQAR8EmK2slgMAqISK\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4456)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:00:49'),(28,'8148aa7a-735f-4e39-a564-8b96961b8d67','database','tickets','{\"uuid\":\"8148aa7a-735f-4e39-a564-8b96961b8d67\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:29;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 16:55:02.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"vADDhPkYin370UXMSDPYJddyRM8Hr4So\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4499)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:01:04'),(29,'87ad95e0-5490-4dc5-92cd-604a386e913a','database','tickets','{\"uuid\":\"87ad95e0-5490-4dc5-92cd-604a386e913a\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:30;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"200.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 17:17:58.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"a7CoNBgOxyHBEBQXfzwo5K6SZBqANxKb\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4881)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:24:02'),(30,'3e8fbbe3-e5a9-480d-8525-8371ca18ebff','database','tickets','{\"uuid\":\"3e8fbbe3-e5a9-480d-8525-8371ca18ebff\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:31;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 17:22:31.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"pHItVlx9EP9mTPc8DJVCASVMbFvIqqeJ\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #5035)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:28:36'),(31,'f25342bc-e07c-4b8d-bb78-0a8b84285328','database','tickets','{\"uuid\":\"f25342bc-e07c-4b8d-bb78-0a8b84285328\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:32;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 17:27:19.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"qeRQKE5LuoNo72Czl1vnOMZV8OdtKliX\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #5300)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:33:23'),(32,'e8364497-204d-40b1-9faf-41f03a7c3272','database','tickets','{\"uuid\":\"e8364497-204d-40b1-9faf-41f03a7c3272\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:33;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 17:29:50.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"GhFH8YW5UrP9Cp4oqzkWh31Ur3Vp68iv\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #5454)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:35:54'),(33,'88b06294-30d8-46f4-b95e-04440cac9b65','database','tickets','{\"uuid\":\"88b06294-30d8-46f4-b95e-04440cac9b65\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:34;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 17:32:03.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"WCUXXmoPf1VlUVh4dXnjvLHdjuQ85QIA\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #5497)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:38:07'),(34,'9e4edda3-9c41-4851-b92e-308daf40d619','database','tickets','{\"uuid\":\"9e4edda3-9c41-4851-b92e-308daf40d619\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:35;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-02 17:34:45.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"Mo4ANx2hmEmzyKsBfpStYuTyFC3DuNP4\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #5540)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-02 17:40:46'),(35,'4f1c4e33-ff56-4f07-89f1-39851a3b51d3','database','tickets','{\"uuid\":\"4f1c4e33-ff56-4f07-89f1-39851a3b51d3\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:36;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-03 13:14:14.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"2bA4pnf8gfN7P8ek1SGm5aeoEuBWvfR5\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1549)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-03 16:49:25'),(36,'6e34e4ae-ee63-4e32-9d1c-d08fc588a842','database','tickets','{\"uuid\":\"6e34e4ae-ee63-4e32-9d1c-d08fc588a842\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:37;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:5:\\\"50.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-03 13:20:21.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"XzdPGvJK145Vwr4V8sBHR8QmVzF9ip9U\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1597)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-03 16:49:25'),(37,'b1b12d5f-12ba-4570-a869-22ca4dc529a6','database','tickets','{\"uuid\":\"b1b12d5f-12ba-4570-a869-22ca4dc529a6\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:38;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:5:\\\"50.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-03 13:24:10.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"0mIOliAOlzeIFX97nSI4fdgCOCSh5yd5\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1640)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-03 16:49:25'),(38,'3a1f4e1a-1181-4d29-aaa7-36f7a7fd5993','database','tickets','{\"uuid\":\"3a1f4e1a-1181-4d29-aaa7-36f7a7fd5993\",\"displayName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"maxTries\":3,\"maxExceptions\":null,\"failOnTimeout\":false,\"backoff\":\"60,300,900\",\"timeout\":600,\"retryUntil\":null,\"data\":{\"commandName\":\"App\\\\Jobs\\\\SendOrderConfirmationEmail\",\"command\":\"O:35:\\\"App\\\\Jobs\\\\SendOrderConfirmationEmail\\\":4:{s:8:\\\"\\u0000*\\u0000order\\\";O:45:\\\"Illuminate\\\\Contracts\\\\Database\\\\ModelIdentifier\\\":5:{s:5:\\\"class\\\";s:15:\\\"App\\\\Model\\\\Order\\\";s:2:\\\"id\\\";i:39;s:9:\\\"relations\\\";a:0:{}s:10:\\\"connection\\\";s:5:\\\"mysql\\\";s:15:\\\"collectionClass\\\";N;}s:17:\\\"\\u0000*\\u0000paymentDetails\\\";a:5:{s:6:\\\"amount\\\";s:6:\\\"100.00\\\";s:6:\\\"method\\\";s:6:\\\"stripe\\\";s:14:\\\"transaction_id\\\";s:3:\\\"N\\/A\\\";s:12:\\\"payment_date\\\";O:25:\\\"Illuminate\\\\Support\\\\Carbon\\\":3:{s:4:\\\"date\\\";s:26:\\\"2025-12-03 21:54:17.000000\\\";s:13:\\\"timezone_type\\\";i:3;s:8:\\\"timezone\\\";s:13:\\\"Europe\\/London\\\";}s:8:\\\"currency\\\";s:3:\\\"GBP\\\";}s:16:\\\"\\u0000*\\u0000correlationId\\\";s:32:\\\"fGiR0aDtEJDPfCQrpUDJjej0G3O5sUCQ\\\";s:5:\\\"queue\\\";s:7:\\\"tickets\\\";}\"}}','Symfony\\Component\\Mailer\\Exception\\TransportException: Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused) in /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154\nStack trace:\n#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1389)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','2025-12-03 22:00:21');
/*!40000 ALTER TABLE `failed_jobs` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `faqs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `faqs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `question` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `answer` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `priority` int NOT NULL DEFAULT '0',
  `status` tinyint NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `faqs` WRITE;
/*!40000 ALTER TABLE `faqs` DISABLE KEYS */;
/*!40000 ALTER TABLE `faqs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fee_waiver_audit_log`
--

DROP TABLE IF EXISTS `fee_waiver_audit_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fee_waiver_audit_log` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint unsigned DEFAULT NULL,
  `reservation_id` bigint unsigned DEFAULT NULL,
  `admin_user_id` bigint unsigned DEFAULT NULL,
  `waiver_type` enum('booking_fee','tax','both') COLLATE utf8mb4_unicode_ci NOT NULL,
  `reason` text COLLATE utf8mb4_unicode_ci COMMENT 'Reason for waiver: VIP, promotion, tax-exempt, comp ticket, etc.',
  `waived_amount` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT 'Total amount of fees/tax waived in euros',
  `customer_email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `customer_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `event_id` bigint unsigned DEFAULT NULL,
  `metadata` json DEFAULT NULL COMMENT 'Additional context: seats, pricing breakdown, etc.',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `fee_waiver_audit_log_order_id_foreign` (`order_id`),
  KEY `fee_waiver_audit_log_reservation_id_foreign` (`reservation_id`),
  KEY `fee_waiver_audit_log_created_at_index` (`created_at`),
  KEY `fee_waiver_audit_log_admin_user_id_created_at_index` (`admin_user_id`,`created_at`),
  KEY `fee_waiver_audit_log_event_id_created_at_index` (`event_id`,`created_at`),
  KEY `fee_waiver_audit_log_waiver_type_index` (`waiver_type`),
  KEY `fee_waiver_audit_log_customer_email_index` (`customer_email`),
  CONSTRAINT `fee_waiver_audit_log_admin_user_id_foreign` FOREIGN KEY (`admin_user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `fee_waiver_audit_log_event_id_foreign` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `fee_waiver_audit_log_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `fee_waiver_audit_log_reservation_id_foreign` FOREIGN KEY (`reservation_id`) REFERENCES `seat_reservations` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fee_waiver_audit_log`
--

LOCK TABLES `fee_waiver_audit_log` WRITE;
/*!40000 ALTER TABLE `fee_waiver_audit_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `fee_waiver_audit_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fire_marshal_access_logs`
--

DROP TABLE IF EXISTS `fire_marshal_access_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fire_marshal_access_logs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `token_id` bigint unsigned NOT NULL COMMENT 'Fire marshal token ID',
  `event_id` bigint unsigned DEFAULT NULL COMMENT 'Event accessed',
  `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'IP address of access',
  `user_agent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'Browser user agent',
  `accessed_at` timestamp NOT NULL COMMENT 'When report was accessed',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `fire_marshal_access_logs_token_id_index` (`token_id`),
  KEY `fire_marshal_access_logs_event_id_index` (`event_id`),
  KEY `fire_marshal_access_logs_accessed_at_index` (`accessed_at`),
  KEY `fire_marshal_access_logs_ip_address_index` (`ip_address`),
  CONSTRAINT `fire_marshal_access_logs_event_id_foreign` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fire_marshal_access_logs_token_id_foreign` FOREIGN KEY (`token_id`) REFERENCES `fire_marshal_tokens` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Audit log of fire marshal report access';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fire_marshal_access_logs`
--

LOCK TABLES `fire_marshal_access_logs` WRITE;
/*!40000 ALTER TABLE `fire_marshal_access_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `fire_marshal_access_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fire_marshal_tokens`
--

DROP TABLE IF EXISTS `fire_marshal_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fire_marshal_tokens` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'SHA256 hash of access token',
  `event_id` bigint unsigned DEFAULT NULL COMMENT 'Event ID (null = all events)',
  `authorized_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Fire marshal name',
  `authorized_agency` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Fire safety agency/department',
  `authorized_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Contact email',
  `authorized_phone` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Contact phone',
  `is_active` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Token active status',
  `expires_at` timestamp NULL DEFAULT NULL COMMENT 'Token expiration (e.g., 24 hours)',
  `max_uses` int DEFAULT NULL COMMENT 'Maximum number of uses (null = unlimited)',
  `use_count` int NOT NULL DEFAULT '0' COMMENT 'Number of times token has been used',
  `created_by` bigint unsigned DEFAULT NULL COMMENT 'Admin who issued token',
  `notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'Admin notes about access grant',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `fire_marshal_tokens_token_unique` (`token`),
  KEY `fire_marshal_tokens_token_index` (`token`),
  KEY `fire_marshal_tokens_event_id_index` (`event_id`),
  KEY `fire_marshal_tokens_is_active_expires_at_index` (`is_active`,`expires_at`),
  KEY `fire_marshal_tokens_authorized_agency_index` (`authorized_agency`),
  KEY `fire_marshal_tokens_created_by_foreign` (`created_by`),
  CONSTRAINT `fire_marshal_tokens_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fire_marshal_tokens_event_id_foreign` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Fire marshal report access tokens';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fire_marshal_tokens`
--

LOCK TABLES `fire_marshal_tokens` WRITE;
/*!40000 ALTER TABLE `fire_marshal_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `fire_marshal_tokens` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fundraising_profiles`
--

DROP TABLE IF EXISTS `fundraising_profiles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fundraising_profiles` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint unsigned NOT NULL,
  `name` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `title` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `profile_photo` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'avatar.png',
  `cover_photo` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'sample1.jpg',
  `story` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `goal` int NOT NULL DEFAULT '0',
  `amount_raised` int NOT NULL DEFAULT '0',
  `type` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'U' COMMENT 'U-User, T-Team',
  `status` tinyint NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `fundraising_profiles_name_unique` (`name`),
  KEY `fundraising_profiles_user_id_foreign` (`user_id`),
  CONSTRAINT `fundraising_profiles_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fundraising_profiles`
--

LOCK TABLES `fundraising_profiles` WRITE;
/*!40000 ALTER TABLE `fundraising_profiles` DISABLE KEYS */;
/*!40000 ALTER TABLE `fundraising_profiles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fundraising_transactions`
--

DROP TABLE IF EXISTS `fundraising_transactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `fundraising_transactions` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `profile_id` bigint unsigned NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `message` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` int NOT NULL,
  `reference` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Stripe ID',
  `anonymous` tinyint NOT NULL,
  `status` tinyint NOT NULL DEFAULT '0' COMMENT '0-Created,1-Paid',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `fundraising_transactions_profile_id_foreign` (`profile_id`),
  CONSTRAINT `fundraising_transactions_profile_id_foreign` FOREIGN KEY (`profile_id`) REFERENCES `fundraising_profiles` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fundraising_transactions`
--

LOCK TABLES `fundraising_transactions` WRITE;
/*!40000 ALTER TABLE `fundraising_transactions` DISABLE KEYS */;
/*!40000 ALTER TABLE `fundraising_transactions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `galleries`
--

DROP TABLE IF EXISTS `galleries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `galleries` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `images` json NOT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `display_order` int NOT NULL DEFAULT '0',
  `created_by` bigint unsigned DEFAULT NULL,
  `updated_by` bigint unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `galleries_is_active_display_order_index` (`is_active`,`display_order`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `galleries`
--

LOCK TABLES `galleries` WRITE;
/*!40000 ALTER TABLE `galleries` DISABLE KEYS */;
/*!40000 ALTER TABLE `galleries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `gdpr_audit_logs`
--

DROP TABLE IF EXISTS `gdpr_audit_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `gdpr_audit_logs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `event_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Type of GDPR event (export, anonymize, delete, access)',
  `entity_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Type of entity accessed (order, payment_transaction, user)',
  `entity_id` bigint unsigned DEFAULT NULL COMMENT 'ID of the entity accessed',
  `user_id` bigint unsigned DEFAULT NULL COMMENT 'User who initiated the action',
  `user_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Type of user (customer, admin, system)',
  `user_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Email of user who initiated action',
  `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'IP address of requester',
  `user_agent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'Browser user agent',
  `request_method` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'HTTP method (GET, POST, etc.)',
  `request_url` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'URL that was accessed',
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'Human-readable description of action',
  `metadata` json DEFAULT NULL COMMENT 'Additional context data',
  `status` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'success' COMMENT 'Status of the action (success, failed, pending)',
  `error_message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'Error message if action failed',
  `data_retention_until` timestamp NULL DEFAULT NULL COMMENT 'When this audit log should be deleted',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `gdpr_audit_logs_event_type_index` (`event_type`),
  KEY `gdpr_audit_logs_entity_type_index` (`entity_type`),
  KEY `gdpr_audit_logs_entity_type_entity_id_index` (`entity_type`,`entity_id`),
  KEY `gdpr_audit_logs_user_id_index` (`user_id`),
  KEY `gdpr_audit_logs_created_at_index` (`created_at`),
  KEY `gdpr_audit_logs_data_retention_until_index` (`data_retention_until`),
  KEY `gdpr_audit_logs_event_type_created_at_index` (`event_type`,`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `gdpr_audit_logs`
--

LOCK TABLES `gdpr_audit_logs` WRITE;
/*!40000 ALTER TABLE `gdpr_audit_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `gdpr_audit_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `homepage_sections`
--

DROP TABLE IF EXISTS `homepage_sections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `homepage_sections` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `section_type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
  `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` json NOT NULL,
  `display_order` int NOT NULL DEFAULT '0',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_section_active_order` (`section_type`,`is_active`,`display_order`),
  KEY `homepage_sections_section_type_index` (`section_type`),
  KEY `homepage_sections_display_order_index` (`display_order`),
  KEY `homepage_sections_is_active_index` (`is_active`),
  KEY `idx_section_type_active_order` (`section_type`,`is_active`,`display_order`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `homepage_sections`
--

LOCK TABLES `homepage_sections` WRITE;
/*!40000 ALTER TABLE `homepage_sections` DISABLE KEYS */;
/*!40000 ALTER TABLE `homepage_sections` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jobs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `queue` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `attempts` tinyint unsigned NOT NULL,
  `reserved_at` int unsigned DEFAULT NULL,
  `available_at` int unsigned NOT NULL,
  `created_at` int unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `jobs_queue_index` (`queue`)
) ENGINE=InnoDB AUTO_INCREMENT=125 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jobs`
--

LOCK TABLES `jobs` WRITE;
/*!40000 ALTER TABLE `jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `jobs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `manager_overrides`
--

DROP TABLE IF EXISTS `manager_overrides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `manager_overrides` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `ticket_id` bigint unsigned NOT NULL,
  `manager_id` bigint unsigned NOT NULL,
  `supervisor_id` bigint unsigned DEFAULT NULL,
  `override_reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `override_notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `pin_verification` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_agent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `validation_failure_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `validation_failure_reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `validation_context` json DEFAULT NULL,
  `supervisor_alerted` tinyint(1) NOT NULL DEFAULT '0',
  `supervisor_alerted_at` timestamp NULL DEFAULT NULL,
  `alert_details` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `session_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `device_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `scanner_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `location` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `overridden_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `manager_overrides_manager_id_created_at_index` (`manager_id`,`created_at`),
  KEY `manager_overrides_ticket_id_created_at_index` (`ticket_id`,`created_at`),
  KEY `manager_overrides_overridden_at_index` (`overridden_at`),
  KEY `manager_overrides_ticket_id_index` (`ticket_id`),
  KEY `manager_overrides_manager_id_index` (`manager_id`),
  KEY `manager_overrides_supervisor_id_index` (`supervisor_id`),
  KEY `manager_overrides_override_reason_index` (`override_reason`),
  CONSTRAINT `manager_overrides_manager_id_foreign` FOREIGN KEY (`manager_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `manager_overrides_supervisor_id_foreign` FOREIGN KEY (`supervisor_id`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `manager_overrides_ticket_id_foreign` FOREIGN KEY (`ticket_id`) REFERENCES `tickets` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `manager_overrides`
--

LOCK TABLES `manager_overrides` WRITE;
/*!40000 ALTER TABLE `manager_overrides` DISABLE KEYS */;
/*!40000 ALTER TABLE `manager_overrides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mbs_activity_logs`
--

DROP TABLE IF EXISTS `mbs_activity_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mbs_activity_logs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `staff_user_id` bigint unsigned NOT NULL,
  `staff_user_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `staff_user_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `event_id` bigint unsigned DEFAULT NULL,
  `event_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order_id` bigint unsigned DEFAULT NULL,
  `order_reference` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `seat_id` bigint unsigned DEFAULT NULL,
  `seat_identifier` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `action_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `action_category` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `action_description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_agent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `request_method` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `request_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `old_values` json DEFAULT NULL,
  `new_values` json DEFAULT NULL,
  `metadata` json DEFAULT NULL,
  `success` tinyint(1) NOT NULL DEFAULT '1',
  `error_message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `correlation_id` varchar(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `severity` enum('low','medium','high','critical') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'medium',
  `requires_review` tinyint(1) NOT NULL DEFAULT '0',
  `reviewed_at` timestamp NULL DEFAULT NULL,
  `reviewed_by` bigint unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `mbs_activity_logs_staff_user_id_index` (`staff_user_id`),
  KEY `mbs_activity_logs_event_id_index` (`event_id`),
  KEY `mbs_activity_logs_order_id_index` (`order_id`),
  KEY `mbs_activity_logs_created_at_index` (`created_at`),
  KEY `mbs_activity_logs_action_type_created_at_index` (`action_type`,`created_at`),
  KEY `mbs_activity_logs_staff_user_id_created_at_index` (`staff_user_id`,`created_at`),
  KEY `mbs_activity_logs_event_id_created_at_index` (`event_id`,`created_at`),
  KEY `mbs_activity_logs_success_created_at_index` (`success`,`created_at`),
  KEY `mbs_activity_logs_requires_review_index` (`requires_review`),
  KEY `mbs_activity_logs_action_type_index` (`action_type`),
  KEY `mbs_activity_logs_action_category_index` (`action_category`),
  KEY `mbs_activity_logs_correlation_id_index` (`correlation_id`)
) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mbs_activity_logs`
--

LOCK TABLES `mbs_activity_logs` WRITE;
/*!40000 ALTER TABLE `mbs_activity_logs` DISABLE KEYS */;
INSERT INTO `mbs_activity_logs` VALUES (1,4,'Test Manager','manager@test.showprima.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login','authentication','Admin logged in successfully','127.0.0.1','curl/8.7.1','POST','http://localhost:8000/api/admin/login',NULL,NULL,'{\"role\": \"ticket_office_manager\", \"permissions_count\": 11}',1,NULL,'3f6d43e3-58bb-4e72-99b9-52c882cbe9f1','low',0,NULL,NULL,'2025-11-27 21:15:28','2025-11-27 21:15:28',NULL),(2,4,'Test Manager','manager@test.showprima.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login','authentication','Admin logged in successfully','127.0.0.1','curl/8.7.1','POST','http://localhost:8000/api/admin/login',NULL,NULL,'{\"role\": \"ticket_office_manager\", \"permissions_count\": 11}',1,NULL,'7f27c382-05a2-49e8-a316-04423d3c666f','low',0,NULL,NULL,'2025-11-27 21:18:02','2025-11-27 21:18:02',NULL),(3,4,'Test Manager','manager@test.showprima.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_logout','authentication','Admin logged out','127.0.0.1','curl/8.7.1','POST','http://localhost:8000/api/admin/logout',NULL,NULL,NULL,1,NULL,'f58e8b67-ad5a-4135-8f38-820e6cc2d92c','low',0,NULL,NULL,'2025-11-27 21:23:57','2025-11-27 21:23:57',NULL),(4,4,'Test Manager','manager@test.showprima.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login_failed','authentication','Login failed - invalid password','127.0.0.1','curl/8.7.1','POST','http://localhost:8000/api/admin/login',NULL,NULL,NULL,0,'Invalid password','09c0fbce-3d00-45d3-9d97-f180146abc74','medium',0,NULL,NULL,'2025-11-27 21:35:23','2025-11-27 21:35:23',NULL),(5,0,NULL,'nonexistent@example.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login_failed','authentication','Login failed - admin not found','127.0.0.1','curl/8.7.1','POST','http://localhost:8000/api/admin/login',NULL,NULL,NULL,0,'Admin account does not exist','0ea26f58-6f78-4f83-ac1f-ab840570f39d','low',0,NULL,NULL,'2025-11-27 21:35:37','2025-11-27 21:35:37',NULL),(6,5,'Test Operator','operator@test.showprima.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login','authentication','Admin logged in successfully','127.0.0.1','curl/8.7.1','POST','http://localhost:8000/api/admin/login',NULL,NULL,'{\"role\": \"pos_operator\", \"permissions_count\": 4}',1,NULL,'c5d20348-1ab1-403d-830e-0fb49895a04e','low',0,NULL,NULL,'2025-11-27 21:59:11','2025-11-27 21:59:11',NULL),(7,6,'Test Viewer','viewer@test.showprima.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login','authentication','Admin logged in successfully','127.0.0.1','curl/8.7.1','POST','http://localhost:8000/api/admin/login',NULL,NULL,'{\"role\": \"financial_viewer\", \"permissions_count\": 5}',1,NULL,'5ff37f4f-e0d2-4942-a6de-b71e21092a99','low',0,NULL,NULL,'2025-11-27 21:59:11','2025-11-27 21:59:11',NULL),(8,0,NULL,'attacker@test.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login_failed','authentication','Login failed - admin not found','127.0.0.1','curl/8.7.1','POST','http://localhost:8000/api/admin/login',NULL,NULL,NULL,0,'Admin account does not exist','d7c0804b-f22b-44d4-a4c2-2900d427bd0f','low',0,NULL,NULL,'2025-11-27 22:14:20','2025-11-27 22:14:20',NULL),(9,0,NULL,'attacker@test.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login_failed','authentication','Login failed - admin not found','127.0.0.1','curl/8.7.1','POST','http://localhost:8000/api/admin/login',NULL,NULL,NULL,0,'Admin account does not exist','71c09545-1640-43b9-9102-4ec27969b13a','low',0,NULL,NULL,'2025-11-27 22:14:22','2025-11-27 22:14:22',NULL),(10,0,NULL,'attacker@test.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login_failed','authentication','Login failed - admin not found','127.0.0.1','curl/8.7.1','POST','http://localhost:8000/api/admin/login',NULL,NULL,NULL,0,'Admin account does not exist','74f5d218-3ab4-40b1-92d8-95870f37ba05','low',0,NULL,NULL,'2025-11-27 22:14:23','2025-11-27 22:14:23',NULL),(11,0,NULL,'attacker@test.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login_failed','authentication','Login failed - admin not found','127.0.0.1','curl/8.7.1','POST','http://localhost:8000/api/admin/login',NULL,NULL,NULL,0,'Admin account does not exist','cc39ba53-a7e5-4d75-9ecf-833cd2fd3ce5','low',0,NULL,NULL,'2025-11-27 22:14:24','2025-11-27 22:14:24',NULL),(12,0,NULL,'attacker@test.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login_failed','authentication','Login failed - admin not found','127.0.0.1','curl/8.7.1','POST','http://localhost:8000/api/admin/login',NULL,NULL,NULL,0,'Admin account does not exist','fb1425be-8f6f-4541-812f-8bc2beb7323d','low',0,NULL,NULL,'2025-11-27 22:14:25','2025-11-27 22:14:25',NULL),(13,0,NULL,'attacker@test.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login_failed','authentication','Login failed - admin not found','127.0.0.1','curl/8.7.1','POST','http://localhost:8000/api/admin/login',NULL,NULL,NULL,0,'Admin account does not exist','1fb4b946-39a2-4dd6-aab6-00b85102ace0','low',0,NULL,NULL,'2025-11-27 22:14:26','2025-11-27 22:14:26',NULL),(14,2,'Super Admin','admin@local.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login','authentication','Admin logged in successfully','127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','POST','http://localhost:8000/api/admin/login',NULL,NULL,'{\"role\": null, \"permissions_count\": 0}',1,NULL,'2319ee91-954b-4555-ae80-b99af737b19a','low',0,NULL,NULL,'2025-11-28 13:56:09','2025-11-28 13:56:09',NULL),(15,2,'Super Admin','admin@local.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login','authentication','Admin logged in successfully','::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','POST','http://localhost:8000/api/admin/login',NULL,NULL,'{\"role\": null, \"permissions_count\": 0}',1,NULL,'e8b8d393-6e49-4dc3-abd2-df4f3cda59ae','low',0,NULL,NULL,'2025-11-29 13:13:09','2025-11-29 13:13:09',NULL),(16,0,NULL,'charlie@09-07.xyz',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login_failed','authentication','Login failed - admin not found','192.168.0.30','Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1','POST','http://192.168.0.30:8000/api/admin/login',NULL,NULL,NULL,0,'Admin account does not exist','d93500f3-ff35-4947-9ee6-d140e22b0318','low',0,NULL,NULL,'2025-11-30 16:08:07','2025-11-30 16:08:07',NULL),(17,0,NULL,'admin@showprima.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login_failed','authentication','Login failed - admin not found','192.168.0.30','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','POST','http://192.168.0.30:8000/api/admin/login',NULL,NULL,NULL,0,'Admin account does not exist','5887bb9b-aad9-49a9-8b32-edabf97aef68','low',0,NULL,NULL,'2025-11-30 18:04:21','2025-11-30 18:04:21',NULL),(18,0,NULL,'admin@globalgala.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login_failed','authentication','Login failed - admin not found','192.168.0.30','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','POST','http://192.168.0.30:8000/api/admin/login',NULL,NULL,NULL,0,'Admin account does not exist','db331dfb-9f1f-4f34-9c18-fc2351e5ceab','low',0,NULL,NULL,'2025-11-30 18:05:58','2025-11-30 18:05:58',NULL),(19,0,NULL,'admin@globalgala.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login_failed','authentication','Login failed - admin not found','192.168.0.30','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','POST','http://192.168.0.30:8000/api/admin/login',NULL,NULL,NULL,0,'Admin account does not exist','653b49cc-5e6b-45b2-bef4-bc81f28ea257','low',0,NULL,NULL,'2025-11-30 18:06:19','2025-11-30 18:06:19',NULL),(20,2,'Super Admin','admin@local.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login_failed','authentication','Login failed - invalid password','::1','curl/8.7.1','POST','http://localhost:8000/api/admin/login',NULL,NULL,NULL,0,'Invalid password','a7ddaa24-d01c-417e-a6d6-98cdaa791742','medium',0,NULL,NULL,'2025-11-30 18:07:21','2025-11-30 18:07:21',NULL),(21,2,'Super Admin','admin@local.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login','authentication','Admin logged in successfully','::1','curl/8.7.1','POST','http://localhost:8000/api/admin/login',NULL,NULL,'{\"role\": \"super_admin\", \"permissions_count\": 44}',1,NULL,'bda2c915-8635-42a6-8a21-1f79b7a58e2e','low',0,NULL,NULL,'2025-11-30 18:07:59','2025-11-30 18:07:59',NULL),(22,2,'Super Admin','admin@local.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login_failed','authentication','Login failed - invalid password','192.168.0.30','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','POST','http://192.168.0.30:8000/api/admin/login',NULL,NULL,NULL,0,'Invalid password','8b60009f-54a5-4f15-8bc0-3453908b1325','medium',0,NULL,NULL,'2025-11-30 18:11:14','2025-11-30 18:11:14',NULL),(23,2,'Super Admin','admin@local.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login','authentication','Admin logged in successfully','192.168.0.30','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','POST','http://192.168.0.30:8000/api/admin/login',NULL,NULL,'{\"role\": \"super_admin\", \"permissions_count\": 44}',1,NULL,'bdb8b62c-dc6f-4573-a0ef-c1fa03d9cd34','low',0,NULL,NULL,'2025-11-30 18:11:28','2025-11-30 18:11:28',NULL),(24,2,'Super Admin','admin@local.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login','authentication','Admin logged in successfully','192.168.0.30','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','POST','http://192.168.0.30:8000/api/admin/login',NULL,NULL,'{\"role\": \"super_admin\", \"permissions_count\": 44}',1,NULL,'873c4afd-7a9e-4d92-ab47-89d7cc56c08a','low',0,NULL,NULL,'2025-12-03 12:19:32','2025-12-03 12:19:32',NULL),(25,2,'Super Admin','admin@local.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login','authentication','Admin logged in successfully','192.168.0.30','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','POST','http://192.168.0.30:8000/api/admin/login',NULL,NULL,'{\"role\": \"super_admin\", \"permissions_count\": 44}',1,NULL,'e166aad2-768b-45e6-b7fa-123cdc44608b','low',0,NULL,NULL,'2025-12-03 12:36:04','2025-12-03 12:36:04',NULL),(26,2,'Super Admin','admin@local.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login_failed','authentication','Login failed - invalid password','127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','POST','http://localhost:8000/api/admin/login',NULL,NULL,NULL,0,'Invalid password','d12cd251-8107-4f75-bc90-fe2235b3f8ff','medium',0,NULL,NULL,'2025-12-04 13:28:03','2025-12-04 13:28:03',NULL),(27,0,NULL,'admin@test.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login_failed','authentication','Login failed - admin not found','127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','POST','http://localhost:8000/api/admin/login',NULL,NULL,NULL,0,'Admin account does not exist','122dd0e5-a280-4cd9-99b4-7b35c45cbe33','low',0,NULL,NULL,'2025-12-04 13:28:07','2025-12-04 13:28:07',NULL),(28,0,NULL,'admin@globalgala.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login_failed','authentication','Login failed - admin not found','127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','POST','http://localhost:8000/api/admin/login',NULL,NULL,NULL,0,'Admin account does not exist','7907a1fb-dbe9-44a2-aa1a-b8472262f701','low',0,NULL,NULL,'2025-12-04 13:28:16','2025-12-04 13:28:16',NULL),(29,0,NULL,'admin@showprima.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login_failed','authentication','Login failed - admin not found','127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','POST','http://localhost:8000/api/admin/login',NULL,NULL,NULL,0,'Admin account does not exist','50e72c00-8f9f-4a1a-915f-ac71d69d127c','low',0,NULL,NULL,'2025-12-04 13:28:20','2025-12-04 13:28:20',NULL),(30,0,NULL,'admin@globalgala.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login_failed','authentication','Login failed - admin not found','127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','POST','http://localhost:8000/api/admin/login',NULL,NULL,NULL,0,'Admin account does not exist','c6ac0e3a-f98e-4e65-a99e-f781d3875dc7','low',0,NULL,NULL,'2025-12-04 13:29:49','2025-12-04 13:29:49',NULL),(31,0,NULL,'admin@globalgala.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login_failed','authentication','Login failed - admin not found','127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','POST','http://localhost:8000/api/admin/login',NULL,NULL,NULL,0,'Admin account does not exist','465b9f0c-a614-460b-8c95-6317c221bd65','low',0,NULL,NULL,'2025-12-04 13:30:02','2025-12-04 13:30:02',NULL),(32,2,'Super Admin','admin@local.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login_failed','authentication','Login failed - invalid password','127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','POST','http://localhost:8000/api/admin/login',NULL,NULL,NULL,0,'Invalid password','fe4a8ae7-4735-432a-979b-e82950e3977a','medium',0,NULL,NULL,'2025-12-04 13:31:44','2025-12-04 13:31:44',NULL),(33,7,'Super Admin','admin@globalgala.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login','authentication','Admin logged in successfully','127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','POST','http://localhost:8000/api/admin/login',NULL,NULL,'{\"role\": \"super_admin\", \"permissions_count\": 44}',1,NULL,'e472ea23-e0d3-48a7-9960-c77bd225a5a7','low',0,NULL,NULL,'2025-12-04 13:32:01','2025-12-04 13:32:01',NULL),(34,7,'Super Admin','admin@globalgala.com',NULL,NULL,NULL,NULL,NULL,NULL,'auth_login','authentication','Admin logged in successfully','127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','POST','http://localhost:8000/api/admin/login',NULL,NULL,'{\"role\": \"super_admin\", \"permissions_count\": 44}',1,NULL,'12ea3018-e21e-4d2a-b951-ff522efc921a','low',0,NULL,NULL,'2025-12-04 13:39:42','2025-12-04 13:39:42',NULL),(35,7,'Super Admin','admin@globalgala.com',23,'Test Concert - Live Performance',NULL,NULL,NULL,NULL,'seat_blocked','seat_management','Blocked 108 seat(s)','127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','POST','http://localhost:8000/api/admin/seats/block',NULL,NULL,'{\"failed_seats\": [], \"total_failed\": 0, \"blocked_seats\": [\"6b9c6ca2-aca5-4e8a-93d8-653da7d6273d\", \"7706d1d5-46dd-4937-a456-4b9de87d3f95\", \"d40a2878-82b1-40d8-ba51-77d932acd5be\", \"155c40ee-3e4f-44aa-b15f-c3a810931d38\", \"01b646f5-95fa-4d77-b6b7-a6ea7c66e738\", \"737d949f-83d6-4434-884b-5f50b2a8288f\", \"9ace6ca4-79ca-4dcd-8aad-3894e69d1e96\", \"dff6d175-992e-4ae6-877d-2e21d18ffb04\", \"2fb3f63d-b91b-495f-9a0b-b322c327c7cd\", \"3ae34f39-11cc-4450-a46b-ba58d85ae38a\", \"ec3075f7-6a63-4395-a352-3954715575df\", \"c2b747e7-93cd-4a03-9066-ed71c5a2d71f\", \"b0284bad-ca35-4dae-9a50-41a534ee0095\", \"29fdeec8-dfeb-4edd-9018-e319918feda0\", \"aaac90f7-e538-4621-82a9-1ff9a4bb228d\", \"d2ec8fc9-5609-4995-9c7f-22faa5e6259d\", \"b4c0a5a6-6589-4af7-8e9c-3f0f3a120723\", \"f822c546-5a74-4cc8-a98a-84efded96f91\", \"2f8b3fce-85d6-4e48-8664-09909fbed576\", \"1654bcc1-38a8-4701-92df-14f0c10a2e44\", \"290f32fc-6ef4-42fb-b27d-8bbc24d97516\", \"93268c83-2943-4f67-bb2d-c869726a196b\", \"0d32704b-4a17-4467-a9b3-cdebca7b002d\", \"93fe2cf7-4b43-4f79-8005-d19ca4ff5216\", \"858534d4-32eb-4d70-b47e-9b95e18fa9a3\", \"b1c23c58-ae13-4520-baa5-6490af412a5e\", \"1d9c9dc2-aadc-440f-85c3-1d869b939dac\", \"092582f6-14d3-4d21-a68a-bd3ed8d5b29a\", \"6fcaf205-fb5c-400b-8951-2b5bb512bdb8\", \"6c9761f5-4547-45f3-82fe-cf9c8afe18b5\", \"9c8e6dce-a3bb-415d-93be-b7069f3a04af\", \"c226a4d7-01c9-44f8-8224-6396750fc73e\", \"df85889a-fef0-466a-8692-019d82f3af1d\", \"6406e467-6ac8-4e8d-bb4e-ca88437a44df\", \"ecc4db6f-86f4-41f2-8db9-60d8bdff8b8c\", \"d77ef0af-7c35-4d6d-90f2-7728628cff99\", \"8b648293-a2d9-448b-a3c9-ba91300ef020\", \"6ca8542f-e6ed-40e0-8e0c-f9ba3e7fcfee\", \"10bc0edd-bfca-4c6d-82bd-a46be12d43ac\", \"b84352a2-6414-4971-b8f1-08bfb4803555\", \"82c47bbf-3df1-4db6-93d1-e193211e75ca\", \"2f55cbd5-28af-44a2-8ba1-a47cce5e9257\", \"6f56bd6d-124b-4371-a10f-f3a47ba7f288\", \"0c4bf3a6-a73f-4939-8db3-1b7601a343a6\", \"2313eb0f-8455-45e5-825a-0dc61c43ddeb\", \"f023b854-9434-4f32-9569-6a41d0bd7d7e\", \"fcc3cd60-7aeb-421c-9b0e-3f2e6ab304bc\", \"84aa9ab6-e252-40d9-be50-6f61d6c170f5\", \"d109c7f0-5729-4c29-a1f7-ab308697cf0a\", \"68b2eb32-a5c9-4cc6-b18e-2923412dead3\", \"21b6dbba-60b4-4534-9b3d-c223f2176e33\", \"ae307b78-86f5-4e71-b43d-5b81de729f8e\", \"050697d8-a0b2-48b2-b2d2-193ef2887c74\", \"b0bc8bcc-6363-4a8b-94c9-4bb643d5f9ff\", \"210d6560-1e73-4d0a-939f-837c872543c6\", \"398d2012-b76e-4811-a07b-ac727f0bafcf\", \"43bad8a4-65ee-404c-8fe2-a814ece96d75\", \"f9800421-e4a1-46f6-b0fe-25748b5d5c86\", \"f717a6c8-43ce-4d98-bc5d-514431b6e51e\", \"45719b8d-b695-4880-942c-3301f27c25e6\", \"d0801410-6c67-46ec-b58f-4ad0587f5bf0\", \"99fdd1cd-a7e4-4dc2-90a8-3baa8913c5bb\", \"78b4487a-0c74-46a8-a310-949f08fc944d\", \"d8f3ddc8-92b9-49de-81d7-1ed0d0cad6d8\", \"b008750c-2fe4-4399-b3d5-36fc021e4534\", \"e253060a-f169-45b0-9528-5cc2b0fd1179\", \"d1eab590-564c-427d-9726-bdfd976d6723\", \"5896a531-8f79-4be9-99a0-f87c9ac4e651\", \"e016bb83-cd16-4547-9336-b54657e2df26\", \"52a11ae9-20bc-49c0-88a1-5b0e4b45181c\", \"f970cabf-6bb3-4c50-bb2b-b79b8e8945c4\", \"c4620e7e-b766-4216-94a8-8ee850067899\", \"a763b0c0-1c5a-441a-8f34-104212237161\", \"7aa02a63-23fe-4430-90f8-8866e31a6234\", \"3eb6239d-4028-4070-b947-2634677f6bcb\", \"7b55f2ac-7719-4488-ab48-1cb5d1fddd6b\", \"bac158a7-fec7-4e6c-adef-8376d4eb35a5\", \"d41d994e-18e1-4cb7-bc0b-95554ab252dc\", \"16dc8e66-e59f-48a5-8606-4fef0fde3640\", \"eb125206-dcee-40de-8e5e-d4f0abc01156\", \"c4168341-5ae9-4ce9-b61b-fc6543933645\", \"01df5b5f-752b-4583-875b-3ad260578c73\", \"b48c9595-37fa-400a-a9be-2d74138a6a2f\", \"aa7727e4-c70c-47d4-b8e8-7fa1a97d46e1\", \"6f33d034-e8a3-4a70-aaf5-37125eb9c5de\", \"1a87562d-c8b8-42b7-be9e-3c064475f300\", \"4a5e2acd-e7e8-46d1-8359-8af39e54c232\", \"10230906-6b29-404e-acd8-9083d738bb7a\", \"8d671c73-f6da-43c5-aff9-ad789d1da080\", \"1e4bc147-8416-44e0-8978-dfde51516e3a\", \"ce49c3f1-6189-4034-8e28-6ef6d1efb9a0\", \"b0464ea3-6211-4149-9d95-5f031cac2d96\", \"e0307ee6-6f0b-4507-98d6-b2089662bbe5\", \"c1c27aec-7e88-45ec-ac5f-0bc28d8388d5\", \"a32c56c4-a73b-4237-864f-b769b269c011\", \"f65a02ee-c603-43f4-9599-fa88cc61ef81\", \"34d01879-9506-495a-9f91-aaa4c7d49fe8\", \"701f79f7-90d4-4ac4-8c2d-8730cff8db2f\", \"6ff13fe9-4c79-4705-a665-0f3d7f2017e3\", \"4a7b264f-d7eb-498f-b725-dcf0f3c1dcf1\", \"1013fb7e-4428-434c-a25e-cddfac7e55b1\", \"ff1bf7aa-25ce-4090-b5e0-b43495f73da9\", \"047bc287-85f3-4692-9a85-33d9cc9aa605\", \"901978de-6a2d-4e8f-a2a3-c7609a963ad9\", \"533a41a9-c7fc-42a4-aa28-e4992f7fb373\", \"ce2aa858-0a21-458c-a22d-0630f1e3fdc4\", \"527dee8c-4fce-44ed-942c-e54d3338324d\", \"5603df6a-c2a3-4f0f-b760-49a8f634d866\"], \"total_blocked\": 108, \"total_requested\": 108}',1,NULL,'b6a149a1-f29c-48d7-9895-b3f5925050bd','medium',0,NULL,NULL,'2025-12-05 14:12:44','2025-12-05 14:12:44',NULL),(36,7,'Super Admin','admin@globalgala.com',23,'Test Concert - Live Performance',NULL,NULL,NULL,NULL,'seat_blocked','seat_management','Blocked 72 seat(s)','127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','POST','http://localhost:8000/api/admin/seats/block',NULL,NULL,'{\"failed_seats\": [], \"total_failed\": 0, \"blocked_seats\": [\"9f37cdfe-9f77-4d39-b308-532cdef7c617\", \"e472b3e8-ea72-4c13-975b-647aec11a48d\", \"e2af6487-7db4-4f8d-81c1-c6845818a087\", \"aa3a4768-03b1-4e67-b8d7-727bc77af326\", \"89949c74-9be3-43f6-a310-11b8ad03fa9c\", \"4f7732ed-10f9-4a44-9050-1ce50570adb0\", \"f30aad89-bb6d-4fc1-bdcf-0197a2e94aa3\", \"e44831c8-e18a-453a-870f-993e6e81bbcf\", \"4118ca64-c73c-46c3-abf7-6ef41589ce36\", \"6615fbc4-7644-46aa-8e15-4780696fdfbe\", \"dc6d0454-7b83-47a1-86b9-b3c16028d2f3\", \"97abd20a-55f2-461f-b4c7-4b462ce4a660\", \"d35c74bf-c131-470e-a5ae-bd96f9cfcd8a\", \"db028062-a6bf-4a4a-b1ca-bbb079a6b542\", \"4f839d1e-9325-4f22-b2c4-49e862c4285b\", \"b1988a45-d54c-4f9a-9578-84c3a6d81c09\", \"c2f6a153-0535-4bb9-9152-62b28e030fad\", \"76f1c9a3-377a-4d8f-a4dc-782c8d3d77db\", \"ce163413-1a1e-44dc-9582-285019a96456\", \"48162927-699e-4c5d-8161-9ebeabdbcaeb\", \"8d658954-3f50-44ca-ad1e-afd631dfec21\", \"45bd4c0d-79c5-400b-9b48-4d409c26107e\", \"be0b9dd1-ce95-4ec9-b309-b4bfb8bf55b5\", \"f64b3dfc-4d5d-4ee1-a632-81810671a71a\", \"fe1dea6a-928c-4ff0-b261-4ffc7359c32c\", \"98c9d241-100f-4018-b264-42fd2862f7c4\", \"dd1efd4c-3ae6-4976-bca2-1b18740b67e0\", \"758110fa-239b-48d4-9114-7df9376c5753\", \"e354a8aa-fcff-4154-9f05-f3b2ddb834c8\", \"ef5e4d4e-dcbd-4ed0-bd5b-7edce1d69502\", \"9c207b48-2904-43e1-9657-e270b3f0880f\", \"a722e3ec-3294-489b-b356-399be61b0d39\", \"12db76b5-d4fe-4502-b5d8-2ebacc2e41e4\", \"b18d90a9-fd4a-45ec-b320-a155603364ad\", \"4f39995b-dd5b-4ba0-add6-887e673ae5dd\", \"098f9b30-f387-4596-a3ed-ef37b076c6ac\", \"5d8a4cdd-bb05-4e47-9145-d820418c6000\", \"91a91428-fc38-4b67-860d-35ae28b79936\", \"5daae556-cbf0-467a-8305-56cf983e67a8\", \"2678fdb0-0f00-46d9-9085-b51f56ca5fd8\", \"e7ca4f18-3229-4d39-8121-0470a7f20a74\", \"00b4c829-04d3-4581-ab42-191aac01f690\", \"89592016-adb1-459e-b2e0-6eb882d5d21f\", \"1aa3f34a-1ed4-4cae-a024-321e9d6e503c\", \"7224250f-c052-48de-b4c3-357c5747f887\", \"ea71106a-7104-463f-b0ec-3dd2eca8ab0f\", \"48d72532-1e61-4501-b913-acd0593f9a5f\", \"5655c670-02c4-4054-bf59-e5ee5c655976\", \"0b14370a-7ad0-4735-87f4-d80bf44891e5\", \"7dd88669-1895-49a5-939e-2800b531efd6\", \"0e533e55-b8ca-4dac-a567-18fca861e909\", \"2959ae92-40a2-4ed2-84a6-f43b0ab8ae9e\", \"6546e761-6352-4383-bf31-6a21b15dd50c\", \"951688f6-51a9-4f5a-9d8b-1b78eca8ec19\", \"06111395-3740-4568-9449-950f82fc5597\", \"5cb2665c-f326-43d7-b0b0-14c6ddfe959b\", \"1933da8b-3562-4f5e-8c05-51398ebc0723\", \"57fc3875-a2a4-4855-99da-aef4f01fded0\", \"5b4be08c-8ee7-491b-b97c-98cef3bd3b5b\", \"40184c63-6c39-4394-ae35-05a551ffe64d\", \"842bf93f-7105-4b3f-bab7-60395d7bfa9f\", \"97dd0caa-ad80-47e2-a5ae-bfe4160ac260\", \"3e58ff2b-1a3e-4c8b-ae0e-6cfddea4adf3\", \"2510bb99-ce9c-444a-ac33-5aea258dec6c\", \"dda06d3c-994d-4ae3-8c6d-508da44a193c\", \"ca0c5c3c-7ea9-4c76-bc04-cc220b0db83f\", \"eb5f0099-699b-448b-9827-5bf6960489fa\", \"8c9bab2c-4205-4828-9720-cfd3faacee79\", \"d3b12a5e-cb3a-495b-9774-c4594244096d\", \"b9172045-8dbd-4ef3-b31f-a26f5501be8c\", \"4f41b778-b038-4d51-a1cf-76220dea8531\", \"d83d74f4-a197-454c-a69a-a93d819801bd\"], \"total_blocked\": 72, \"total_requested\": 72}',1,NULL,'76693cb9-33f2-48d2-9676-0c7f01cd328f','medium',0,NULL,NULL,'2025-12-05 14:12:52','2025-12-05 14:12:52',NULL),(37,7,'Super Admin','admin@globalgala.com',23,'Test Concert - Live Performance',NULL,NULL,NULL,NULL,'seat_blocked','seat_management','Blocked 178 seat(s), 4 failed','127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','POST','http://localhost:8000/api/admin/seats/block',NULL,NULL,'{\"failed_seats\": [{\"reason\": \"Seat is already reserved or booked\", \"seat_id\": \"eda1116a-96d1-4d9b-87e7-1ec886efc8c6\"}, {\"reason\": \"Seat is already reserved or booked\", \"seat_id\": \"c10a7d85-da2b-4d93-8e17-81a71c8d842a\"}, {\"reason\": \"Seat is already reserved or booked\", \"seat_id\": \"ae055e8c-bf63-4f1e-aebe-f7762cef4341\"}, {\"reason\": \"Seat is already reserved or booked\", \"seat_id\": \"97ea42cc-f5da-45fb-b05d-8ce2985458fe\"}], \"total_failed\": 4, \"blocked_seats\": [\"c58a3923-b340-4d3f-bf4d-44635f022fe4\", \"6fc3b427-2010-481b-bb6c-acc772210477\", \"48d18ec3-d8f7-46b7-b801-b8460f06ed6e\", \"3e6db715-9dd5-46b8-9484-bcc1ca342f68\", \"65b16b11-0287-4e73-8741-ab9f2b2aa250\", \"11c38c16-d993-4ca1-a3e7-3388034fcb36\", \"770e860d-9931-448f-b2ce-65951b8af703\", \"1a6464e4-4357-494b-b43b-f8ee54d47792\", \"1690ee7d-a663-4b03-a9e2-7662f6b66c83\", \"ae6afd5e-c466-4c37-b53c-e41a63123de2\", \"25b4b256-681e-42d0-8b8b-21b311c68fa2\", \"c549d4d5-d669-40ad-a12c-d49d552bacaf\", \"859e5794-e220-428e-8bc5-2873b5cb2224\", \"756a8de3-65f8-4f28-ac78-b1fd59e9e1a9\", \"85b112a4-b7cf-491b-84c3-2eefab563e49\", \"67b04940-9d8b-41c9-9188-fbfcb505bc67\", \"0f4fb057-cc24-4353-b2e4-2a3093482ce3\", \"96f8542b-ba52-4ed8-b0a2-3c92201dd7ff\", \"97c7d498-7aa5-42fe-83b4-f4157881abc7\", \"2599b7e0-408e-4f26-968e-aeb8e1590bdf\", \"bcefe0ce-fdca-411e-8bd0-cd869ace02e2\", \"0b912ddd-f192-42cd-baee-c43bd7bb48cd\", \"52aed440-f86d-45af-b8bb-907484c11d2a\", \"88218a0a-3abe-40f9-8c0a-1210be6db25e\", \"e57e8e8a-2eed-4640-bf60-cb339890902e\", \"293f15a9-a090-4c31-a742-c044794f30f3\", \"8910b008-a7c2-421c-85f0-0f6db959a0a4\", \"55b8207e-2056-4e43-a043-00af9d6ada50\", \"93ecfaa7-ef80-4eca-9064-0ec4196fa8be\", \"d300c58d-0f6d-4bf3-b3c9-2fbb389ac585\", \"d070b211-65f3-4b2b-a558-669fe03af08f\", \"d62d8f09-839c-4d96-9cb6-f1bbc53f981a\", \"4596dc13-83e4-4a19-bac9-034b75fedb32\", \"957359d9-0892-47ee-a24e-340bf6395740\", \"39a417fa-795f-4dbe-a214-6d5f912d3b84\", \"d060ef99-04d3-436a-a787-3112329dd35c\", \"7fcea493-f130-4ef8-8c6b-011f5db49023\", \"4e35402a-730f-478f-be65-393959dcd440\", \"d4614a1a-d42c-44e1-b064-3b547f04d4fb\", \"36c38ee4-9c50-4544-808a-55d632536236\", \"e1f9418d-2883-40e8-933e-71ecd179c071\", \"5fd0bae5-628f-4972-86ab-82b2736435ea\", \"e3d0cd15-7dce-4d02-9be9-05286d72fec6\", \"747fbb67-19ad-4033-a569-d7e5d46db0e7\", \"de41c9b7-eb82-4cef-be55-5c0a7998eed1\", \"2fbe49c6-1479-41ae-b582-36eb84d24149\", \"4422abcd-f4ea-461e-b2c8-ac04f005f47f\", \"0369cfaa-d65a-4059-b7e0-05e34efed8d7\", \"2a58cb28-f3d1-474e-bb43-743774021d4c\", \"ac7e7d48-c151-4049-b395-a8268fbf9b6e\", \"6169b779-df60-42ee-9925-2dbd44cbe0fc\", \"e674d2c2-5c55-41c2-b177-12c523a234c4\", \"a08a1152-2850-421f-b784-7b464a9643f7\", \"c3035c85-6e0e-41c1-836f-80509f0c69d6\", \"0d7109d9-83b6-4394-9233-d39d57f115f1\", \"d4744b71-774a-4e0d-8267-574da981fce6\", \"8b262e17-90d5-4ce2-a0bc-5fe8959b9881\", \"f1ed4c44-3f93-43b7-bfab-d93562373adc\", \"64135dc4-a12b-4bfa-8c66-fbc2ee09b216\", \"4984c704-ab27-42ab-855d-2a312fdab14d\", \"dd2b021d-7e35-4803-a896-2b353329c8f6\", \"3025af5b-7212-46b6-b8b6-0e429deb13d1\", \"ace2c87c-7d46-4576-9a5b-770636b76b86\", \"e5ac551b-e59e-454e-abbe-8f0b88ac650b\", \"07eb9ca5-379b-49df-a7ce-091ff9728b78\", \"d80c134d-0026-41af-a032-c646110b5d88\", \"488b0ef5-c951-4bb8-9195-8860d8bb439a\", \"e8871962-2ae0-4ec7-bd7b-c3a4262e7b31\", \"3d147316-4386-4f21-9b60-7cbd6fa950e6\", \"68359aad-75c9-4dbf-b2ef-33583b710b45\", \"4d5ee896-41df-49e9-b28f-f5c91b8b017d\", \"60e1eaae-6458-4bcc-acb9-5abd0b0d28e0\", \"0210a0ff-7ab1-4994-ba09-1c3ce0c1c424\", \"02400cac-db83-42b5-a21f-66e43e39e9aa\", \"5a870030-596f-40d5-a988-ef82d3cd449f\", \"3eb4a30b-6c43-48f4-bbf7-3e709608b79e\", \"04e0832c-2e42-4303-858a-36afad31f716\", \"a0e58873-1c19-4de0-8c06-296c13a66746\", \"4ce6a336-fc49-47b0-938c-ef79e2e7d0f9\", \"77636282-f437-4da0-a55e-50e786c68c43\", \"6c692816-c4bd-4cfc-b528-30d39bbfa52d\", \"9e3c9d7f-90ab-4d71-a87c-fa50560eb39d\", \"d435ba12-d8fe-4362-96fc-20984b241f20\", \"dc7d5e87-71a1-4969-b95a-728efe6762e4\", \"7496deaf-61e7-4ee6-8dc9-2ca78481f36a\", \"c77482e1-aef4-4fc2-ad02-350fa3c3c0aa\", \"4e3f0e99-0aa4-4eca-a039-55390b4dffd4\", \"836243a7-a250-4d68-8aaf-a4ae4c7a92e7\", \"44d5ef8d-1585-49c6-8b31-a65a17db3d22\", \"163c5490-de64-428b-96e4-9ec704ea3005\", \"1ba9eb1d-c735-41da-b8ad-4c23498d846b\", \"8249f879-7078-4fcb-8625-6d4ef9a19072\", \"6e535e08-8c26-48e0-8e99-3dfb6ae55e5c\", \"2f775946-82bd-4b15-ae14-698a4a7dde78\", \"cc9bc057-a2aa-42a1-b551-504de8a16a95\", \"56b8372b-77ab-4ec7-b911-1d414febb899\", \"a67cef5c-0657-46a1-a1ae-7dd1024030b9\", \"f0ca55c9-3ecf-4254-9ebd-1c58f1e26086\", \"e144427b-44db-4c1d-9ee8-f707a62921d5\", \"1ebfa491-7a88-4de0-8b88-ce92cb2564f7\", \"fecf300e-de51-4d47-9949-dd26446b617b\", \"5b0c2b23-6e8b-4a76-8bfa-e3ae6b1a6043\", \"b4d760c4-fa43-42d7-8c30-a044a59e11f7\", \"5b9a08c1-f29c-41a2-80c3-510f7f8aa507\", \"41263b5f-c02d-4bc0-b65f-16ef2934375c\", \"7d26a11d-966f-44b7-86ae-3f79a6a35686\", \"8050804f-120d-42dc-9a29-0058399cf8a8\", \"2ba3dfe4-bf5a-4bcd-a710-3d6394252ac8\", \"7110167c-6f4b-4b1c-9c9d-367e2febf328\", \"2743c18f-f1d1-4ff7-9aa8-4ec4cfb56d75\", \"80596cbc-e255-454f-94d4-1202d539db5a\", \"7c14a666-5b3c-4c63-b37a-274cd8b86cde\", \"b6c3857c-926c-484d-a133-6b17a7663e7d\", \"39ccb69c-a19e-4af7-b31e-426aa3b218b1\", \"52806e47-e5f8-4569-9f3a-687cfa34fc70\", \"8d821601-efae-4893-8910-47aeb8fa2fc3\", \"44b4d159-5d61-4b16-9536-5e793970dbf0\", \"dd3b928f-b8bc-47f2-9b61-9e1574015376\", \"065aca35-5a80-45ae-8203-6db3f469d5ae\", \"c5515698-54d5-48ad-bc0e-aba076724959\", \"9c03569e-4285-49e6-8591-ff210a0ef059\", \"accbe97e-55bb-4c22-9f43-c9293e59825e\", \"9dbe954b-d977-466f-8bb1-bb55cc0bd2ba\", \"93159638-638c-47fc-84c1-97dee28cf0bf\", \"092eecf1-6159-4177-a4dd-ada0000b5e02\", \"7afa3811-bbb8-4377-ada7-f979f91600be\", \"2ae950ee-a0b3-47c6-88ed-8810ab60db8f\", \"e3911693-a730-4786-97f7-2f02530649d6\", \"9fd1fbf5-2f09-47cb-8d25-ac6acf261891\", \"f1f2d0b6-ba82-4902-9394-eaf9a12a2d8b\", \"e56f1e4f-4e67-4d0d-bd26-a5ae7e6fcbc5\", \"fb8cda91-9ad4-4699-beef-80f60655f463\", \"d749c478-96d0-4858-8f3a-e7135ff8ef6e\", \"8d3ed8d2-1683-4246-b0e3-1c9bdc62389d\", \"c822baf0-f226-4162-8e4e-6665e202b1b9\", \"63072583-9ded-4874-85c4-4b3e84728fea\", \"11143757-e879-4695-a86b-c72f40b21cc8\", \"f8c53bab-fc41-4006-95b9-e2d140075ae4\", \"5f2476fa-d59f-408c-b023-1651f37abf38\", \"b42b973a-450e-4a6b-bb8e-b3df21d995ca\", \"10c65633-af58-404b-adc2-c9f9d2c6f872\", \"705cc0a7-eec5-41bf-94df-7bca9a85fa32\", \"ba3c95d4-2ec7-4622-a710-f39210e5f458\", \"4ec0a0b1-34de-4e78-8787-71f37334dcf4\", \"4da7a943-3a6d-4296-bec2-a0e7d5b1778d\", \"91d0e290-a86b-407d-a2c2-8ef90206a598\", \"a2c2ca27-dcfd-4916-97d6-7b76052c5c9c\", \"1ee1fa98-af54-4c31-bd21-5285710838e3\", \"ccd909a4-c69d-4880-a9be-0377435b2f05\", \"4660c03c-c4b4-48bb-9ee2-9ddfe91a86ed\", \"5772b347-489c-4818-a795-0b292109a66b\", \"02941662-bd2f-4745-9aaa-04fc8141be4b\", \"4442ae1c-e228-4077-be25-60f978eb00bf\", \"25d82267-5d98-4f1f-8672-c72ba5b569e0\", \"71b9aeb5-f445-42fa-97a4-35afd73c877c\", \"fa1731fe-dbd6-4c88-909c-c731bc4dd3c6\", \"972d7708-c2ff-4f13-9123-ecb845d99d76\", \"6bded733-47f5-438b-a52e-78d4fab8a5a8\", \"bc36e6ac-c6e3-4b5c-8821-7c79104e1f2f\", \"2dfcf6c5-06e0-4e96-9a2a-9c9d3fb9063e\", \"1b8b26fc-8c13-4b8c-a729-c503a9547588\", \"f0bf2767-726f-4cac-bb12-cf1c39f1e898\", \"75a87c9c-e359-4e4f-8f38-33480770c03c\", \"d1a8a79d-e8ee-4fdb-8034-8a60b5de69c6\", \"2bc32131-b916-40d4-b395-33963247dbf0\", \"4e39126d-13ab-4869-a8a5-373da1ded88f\", \"9ae19ef4-5e8c-4330-9edd-e2b643d57dc2\", \"7e57bfdc-d546-4385-b7d3-9cb9d2aeaca2\", \"7eb0d1ac-014f-48c4-863f-9b92bb1ca0dc\", \"8dae6426-e1d5-479b-b5bb-953a72c369be\", \"5a6a8978-1631-4f36-b2de-804cced38abe\", \"4469674a-c3ff-4b77-9016-4f842ba8b375\", \"4895065a-d4cc-4e31-9544-3bca162a45cb\", \"9e746884-143c-42c4-8286-861e61480eaf\", \"631cea4a-f81a-4bff-bd55-89a5249b5bdb\", \"98977dec-fd78-467b-8782-b7535fcf5be2\", \"1f109324-85fa-491d-9387-8ab0da6fd324\", \"48667106-2758-4312-86cc-56d68cf1b89c\"], \"total_blocked\": 178, \"total_requested\": 182}',1,NULL,'be643dfd-535b-4320-bbc0-e36251cd96ec','medium',0,NULL,NULL,'2025-12-05 14:13:15','2025-12-05 14:13:15',NULL);
/*!40000 ALTER TABLE `mbs_activity_logs` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `migrations` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `migration` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `batch` int NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=241 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `migrations` WRITE;
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
INSERT INTO `migrations` VALUES (1,'2014_10_12_000000_create_users_table',1),(2,'2014_10_12_100000_create_password_resets_table',1),(3,'2022_02_15_105028_create_fundraising_profiles_table',1),(4,'2022_02_15_112347_create_fundraising_transactions_table',1),(5,'2022_03_07_040816_modify_registration_ext',1),(6,'2022_03_08_132523_create_photos_table',1),(7,'2022_03_08_140817_modify_users',1),(8,'2022_03_08_143720_create_faqs_table',1),(9,'2022_03_08_163251_create_donation_amounts_table',1),(10,'2022_03_15_041018_create_special_messages_table',1),(11,'2022_03_16_090802_create_posts_table',1),(12,'2022_03_23_081540_create_strava_users_table',1),(13,'2022_03_24_061328_create_tshirt_trackings_table',1),(14,'2022_03_28_053654_create_user_groups_table',1),(15,'2022_04_13_104317_create_teams_table',1),(16,'2022_08_24_152513_create_events_table',1),(17,'2022_08_24_152536_create_acts_table',1),(18,'2022_08_25_073206_create_clubs_table',1),(19,'2022_08_25_075649_create_event_photos_table',1),(20,'2022_08_25_085350_create_act_sponsor_photos_table',1),(21,'2022_08_25_085418_create_ticket_booking_table',1),(22,'2022_08_25_122500_create_ticket_price_table',1),(23,'2022_08_25_124049_create_tickets_table',1),(24,'2022_08_25_140000_create_carts_table',1),(25,'2022_08_25_150000_create_permissions_table',1),(26,'2022_08_25_160000_create_contents_table',1),(27,'2022_08_26_110000_create_blog_categories_table',1),(28,'2022_08_26_120000_create_blogs_table',1),(29,'2022_08_26_130000_create_banners_table',1),(30,'2022_12_02_054841_create_queue_merge_acts_table',1),(31,'2023_07_05_172058_create_ticket_categories_table',1),(32,'2023_07_05_193358_create_ticket_wise_prices_table',1),(33,'2024_09_10_111500_add_unique_constraint_to_carts_table',1),(34,'2025_09_09_100000_create_seat_reservations_table',1),(35,'2025_09_09_105000_create_seats_table',1),(36,'2025_09_09_110000_create_orders_table',1),(37,'2025_09_09_120000_add_idempotency_key_to_orders_table',1),(38,'2025_09_09_130000_make_user_id_nullable_in_orders_table',1),(39,'2025_09_09_153015_create_cache_table',1),(40,'2025_09_10_155059_create_order_items_table',1),(41,'2025_09_10_155308_create_event_wise_seat_categories_table',1),(42,'2025_09_12_225618_add_table_support_to_seats_table',1),(43,'2025_09_12_230003_create_venue_templates_table',1),(44,'2025_09_17_182524_add_shadow_sold_status_to_seat_reservations_table',1),(45,'2025_09_23_140000_add_versioning_to_venue_templates',1),(46,'2025_09_23_150000_fix_venue_templates_constraints',1),(47,'2025_09_24_174638_create_admin_roles_table',1),(48,'2025_09_24_174639_create_admins_table',1),(49,'2025_09_24_175742_migrate_mbs_users_to_admin_system',1),(50,'2025_09_24_180659_create_email_templates_table',1),(51,'2025_09_24_183910_create_content_pages_table',1),(52,'2025_09_26_163916_add_selling_period_columns_to_events_table',1),(53,'2025_09_29_000000_add_reissue_fields_to_tickets_table',1),(54,'2025_09_29_000001_create_email_templates_table',1),(55,'2025_09_29_115701_create_ticket_templates_table',1),(56,'2025_09_29_123239_add_pdf_tracking_to_tickets_table',1),(57,'2025_09_29_123500_create_ticket_reissuances_table',1),(58,'2025_09_29_124324_add_ticket_generation_status_to_order_items_table',1),(59,'2025_09_29_140000_create_ticket_generation_batches_table',1),(60,'2025_09_29_150000_create_ticket_download_logs_table',1),(61,'2025_09_29_160000_create_ticket_url_access_logs_table',1),(62,'2025_09_29_160001_create_ticket_url_generation_logs_table',1),(63,'2025_09_29_160002_create_ticket_security_events_table',1),(64,'2025_09_29_163525_create_jobs_table',1),(65,'2025_09_29_163527_create_failed_jobs_table',1),(66,'2025_09_29_163807_create_batch_jobs_table',1),(67,'2025_09_29_170653_create_ticket_validations_table',1),(68,'2025_09_29_170912_add_used_at_expires_at_to_tickets_table',1),(69,'2025_09_29_172114_create_queue_monitor_table',1),(70,'2025_09_29_200000_create_ticket_audit_logs_table',1),(71,'2025_09_29_210000_create_qr_validations_table',1),(72,'2025_09_29_214724_add_performance_indexes_to_tickets_table',1),(73,'2025_10_01_185741_update_users_table_for_generic_accounts',1),(75,'2025_10_02_100255_add_customer_data_to_orders_table',2),(78,'2025_10_03_132354_add_price_indexes_to_seats_table',3),(79,'2025_10_06_123322_create_galleries_table',3),(80,'2025_10_06_000000_create_payment_transactions_table',4),(81,'2025_10_06_164501_create_order_refunds_table',4),(82,'2025_10_06_170147_create_stripe_webhook_events_table',4),(83,'2025_10_06_170603_add_revolut_fields_to_orders_table',4),(84,'2025_10_06_184106_add_ticket_type_fields_to_tickets_table',4),(85,'2025_10_06_184117_add_ticket_status_management_to_tickets_table',4),(86,'2025_10_06_184142_add_ticket_status_validation_fields_to_tickets_table',4),(87,'2025_10_06_184212_add_blocking_fields_to_tickets_table',4),(88,'2025_10_06_184243_add_blocked_status_to_seat_reservations',4),(89,'2025_10_06_184306_create_bulk_ticket_status_batches_table',4),(90,'2025_10_06_184843_create_seat_reassignments_table',4),(91,'2025_10_06_190356_add_unique_constraint_to_seat_id',4),(92,'2025_10_06_190357_create_seat_transfer_requests_table',5),(93,'2025_10_06_194918_add_profile_fields_to_customers_table',5),(94,'2025_10_06_212929_add_granular_statuses_to_orders_table',5),(95,'2025_10_06_212954_create_order_modifications_table',5),(96,'2025_10_06_213007_create_order_status_audit_logs_table',5),(97,'2025_10_06_213324_add_cancelled_status_to_seat_reservations_table',5),(98,'2025_10_06_213327_add_cancelled_status_to_tickets_table',5),(99,'2025_10_06_224236_create_payment_audit_logs_table',6),(100,'2025_10_07_143833_add_stripe_fields_to_orders_table',7),(101,'2025_10_07_144937_create_webhook_events_table',8),(102,'2025_10_08_121909_create_order_line_items_table',9),(103,'2025_10_08_135135_add_stripe_customer_id_to_orders_table',10),(104,'2025_10_06_224306_create_payment_reconciliations_table',11),(105,'2025_10_06_224348_add_gdpr_fields_to_payment_transactions_and_orders',11),(106,'2025_10_06_224418_create_gdpr_audit_logs_table',11),(107,'2025_10_08_152651_add_payment_mode_to_orders',12),(108,'2025_10_08_152751_add_cash_and_comp_gateways_to_payment_transactions',12),(109,'2025_10_08_155245_create_user_consents_table',13),(111,'2025_10_09_133231_add_performance_indexes_to_seat_reservations',14),(112,'2025_10_09_172052_create_email_accounts_table',15),(113,'2025_10_09_172117_create_email_rate_tracking_table',16),(114,'2025_10_09_172119_enhance_email_logs_table',17),(115,'2025_10_09_172115_create_email_inbox_table',18),(116,'2025_10_09_000000_create_mbs_activity_logs_table',19),(117,'2025_10_09_150340_create_order_notes_table',19),(118,'2025_10_09_180449_create_manager_overrides_table',20),(119,'2025_10_09_200000_create_device_tokens_table',20),(120,'2025_10_09_200001_create_fire_marshal_tokens_table',20),(121,'2025_10_09_184012_add_pin_to_users_table',21),(122,'2025_10_09_172120_create_email_reputation_table',22),(123,'2025_10_10_115019_create_newsletter_contacts_table',23),(124,'2025_10_10_115023_create_newsletter_campaigns_table',23),(125,'2025_10_10_115026_create_newsletter_subscriptions_table',23),(126,'2025_10_10_000000_create_chargebacks_table',24),(127,'2025_10_11_140242_add_missing_fields_to_chargebacks_table',25),(128,'2025_10_11_142240_add_needs_response_status_to_chargebacks',26),(129,'2025_10_11_000000_add_suspension_fields_to_users_table',27),(130,'2025_10_11_170737_add_missing_fields_to_admins_table',27),(131,'2025_10_11_172424_create_admin_permissions_table',27),(132,'2025_10_11_175141_add_password_changed_at_to_admins_table',27),(133,'2025_10_12_171127_add_new_event_fields_to_events_table',28),(134,'2025_10_12_171815_add_seo_and_publishing_fields_to_events_table',28),(135,'2025_10_12_175638_create_event_categories_table',29),(136,'2025_10_12_183527_add_publishing_status_columns_to_events_table',29),(137,'2025_10_13_123422_create_venues_table',30),(138,'2025_10_13_125852_add_venue_id_to_events_table',31),(139,'2025_10_13_131302_refactor_venue_templates_add_venue_id',32),(140,'2025_10_13_132027_create_event_venues_table',32),(141,'2025_10_13_142019_populate_event_venues_table',33),(142,'2025_10_14_120000_add_missing_columns_to_events_table',34),(143,'2025_10_15_000001_add_template_support_to_newsletter_campaigns',34),(144,'2018_08_08_100000_create_telescope_entries_table',35),(145,'2025_01_21_000001_create_venue_themes_table',35),(146,'2025_10_16_000001_add_email_tracking_to_orders',35),(147,'2025_10_16_171509_add_fee_tax_settings_to_events_table',35),(148,'2025_10_16_173156_create_ticket_verification_codes_table',35),(149,'2025_10_16_174631_add_code_type_preferences_to_events_table',35),(150,'2025_10_17_124724_add_line_item_id_to_ticket_validations_table',35),(151,'2025_10_21_000002_add_payment_intent_id_to_webhook_events',35),(152,'2025_10_22_112045_create_cms_files_table',35),(153,'2025_10_22_130045_create_account_setup_invitations_table',35),(154,'2025_10_23_120718_add_campaign_metadata_to_invitations',35),(155,'2025_10_23_120750_create_failed_invitation_attempts_table',35),(156,'2025_10_23_120827_create_campaign_audit_logs_table',35),(157,'2025_10_23_143224_add_indexes_to_account_setup_invitations',35),(158,'2025_10_24_000001_clean_venue_architecture',35),(159,'2025_10_24_134926_add_is_published_and_publish_website_to_events_table',35),(160,'2025_10_24_185319_add_theme_foreign_keys_to_events_and_venues',35),(161,'2025_10_25_142803_fix_seats_seat_id_unique_constraint_per_event',36),(162,'2025_10_27_144317_add_unique_session_constraint_to_orders_table',36),(163,'2025_10_27_151716_add_payment_started_at_to_seat_reservations_table',36),(164,'2025_10_28_000001_add_email_tracking_to_account_setup_invitations',36),(165,'2025_10_28_000002_add_email_tracking_to_users',36),(166,'2025_10_28_170133_add_admin_reservation_support',36),(167,'2025_10_28_170330_create_ownership_transfer_requests_table',36),(168,'2025_10_29_114258_add_payment_intent_id_to_seat_reservations_table',36),(169,'2025_10_30_153808_create_webhook_events_table',36),(170,'2025_10_30_205810_add_revolut_order_id_to_seat_reservations_table',36),(171,'2025_10_31_124326_add_revolut_metadata_to_events',36),(172,'2025_10_31_124400_add_structured_address_to_venues',36),(173,'2025_11_03_131603_create_homepage_sections_table',36),(174,'2025_11_03_211512_add_bank_transfer_fields_to_orders_table',36),(175,'2025_11_03_214956_add_payment_mode_to_seat_reservations_table',36),(176,'2025_11_04_000001_create_price_tiers_table',36),(177,'2025_11_04_000002_add_tier_fields_to_seats_table',36),(178,'2025_11_04_122714_add_payment_gateway_to_seat_reservations',36),(179,'2025_11_04_135939_create_admin_password_resets_table',36),(180,'2025_11_04_171047_add_optional_fees_to_reservations_and_orders',36),(181,'2025_11_04_172805_create_fee_waiver_audit_log_table',36),(182,'2025_11_04_185730_add_fee_config_to_events_table',36),(183,'2025_11_05_180148_add_media_support_columns_to_cms_files_table',36),(184,'2025_11_06_175934_add_currency_to_events_table',36),(185,'2025_11_06_202141_add_currency_to_seat_reservations_table',36),(186,'2025_11_08_230228_add_seat_prefix_to_price_tiers',36),(187,'2025_11_09_110917_create_artists_table',36),(188,'2025_11_09_123657_create_artist_event_table',36),(189,'2025_11_09_170618_remove_artists_column_from_events_table',36),(190,'2025_11_10_000001_add_map_banner_to_events_table',36),(191,'2025_11_10_000001_add_released_at_to_seat_reservations_table',36),(192,'2025_11_10_194613_fix_seat_reservations_foreign_key_and_orders_unique_constraint',36),(193,'2025_11_10_212140_fix_order_refunds_processed_by_foreign_key',36),(194,'2025_11_11_000001_create_coupons_table',36),(195,'2025_11_11_000002_create_coupon_usage_table',36),(196,'2025_11_11_000003_add_coupon_fields_to_seat_reservations_table',36),(197,'2025_11_11_000004_add_coupon_fields_to_orders_table',36),(198,'2025_11_11_092259_fix_seat_reservations_admin_user_foreign_key',36),(199,'2025_11_11_095845_fix_order_refunds_processed_by_foreign_key',36),(200,'2025_11_11_112357_add_notes_to_seat_reservations',36),(201,'2025_11_11_113629_add_booking_banner_image_to_events_table',36),(202,'2025_11_11_224510_add_is_test_mode_to_events_table',36),(203,'2025_11_12_000001_add_composite_indexes_for_performance',36),(204,'2025_11_13_115435_add_display_in_legend_to_price_tiers_table',36),(205,'2025_11_13_164122_create_booking_access_codes_tables',36),(206,'2025_11_14_173205_create_analytics_events_table',36),(207,'2025_11_17_104017_create_order_audit_log_table',36),(208,'2025_11_17_161632_create_waitlist_submissions_table',36),(209,'2025_11_18_124703_add_status_to_waitlist_submissions_table',36),(210,'2025_11_18_210000_create_scanner_devices_table',36),(211,'2025_11_19_120000_add_idempotency_key_to_ticket_validations',36),(212,'2025_11_19_195955_add_pos_fields_to_orders_table',36),(213,'2025_11_19_204212_add_deposit_reserve_fields_to_orders_table',36),(214,'2025_11_23_183337_create_scanner_zones_table',36),(215,'2025_11_23_183340_add_zone_fields_to_scanner_devices_table',36),(216,'2025_11_24_141603_add_operator_tracking_to_scanner_devices_table',37),(217,'2025_11_24_221130_add_scan_type_to_ticket_validations_table',38),(218,'2025_11_25_120511_remove_unique_constraint_from_ticket_validations_validation_code',39),(219,'2025_11_27_141016_add_wristband_columns_to_events_table',40),(220,'2025_11_27_205027_create_mbs_activity_logs_table',41),(221,'2025_11_28_133018_add_legacy_fields_to_artists_table',41),(222,'2025_11_28_134911_add_legacy_fields_to_events_table',42),(223,'2025_11_28_144506_create_archived_events_table',43),(224,'2025_11_28_144528_create_archived_event_artist_table',43),(225,'2025_11_28_144546_create_event_images_table',43),(226,'2025_11_28_153358_add_role_to_event_images_table',44),(227,'2025_11_29_170020_add_is_featured_to_archived_events',45),(228,'2025_12_01_165319_add_order_reference_to_orders_table',46),(229,'2025_12_03_222456_fix_orders_staff_id_foreign_key_references_admins',47),(230,'2025_12_08_110336_add_manual_override_to_ticket_validations',48),(231,'2025_12_08_111427_create_reseating_log_table',49),(232,'2025_12_08_111443_add_reseating_fields_to_orders_table',50),(233,'2025_12_08_112643_add_blocking_fields_to_seats',51),(234,'2025_12_08_112646_create_seat_state_log_table',52),(235,'2025_12_08_122942_add_unique_constraint_twilio_sid_to_whatsapp_logs',53),(236,'2025_12_08_122942_create_whatsapp_logs_table',53),(237,'2025_12_08_124142_create_support_conversations_table',54),(238,'2025_12_08_124546_create_whatsapp_templates_table',55),(239,'2025_12_08_125141_add_version_to_support_conversations_table',56),(240,'2025_12_08_125427_create_whatsapp_cost_tracker_table',57);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `newsletter_campaign_recipients`
--

DROP TABLE IF EXISTS `newsletter_campaign_recipients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `newsletter_campaign_recipients` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `campaign_id` bigint unsigned NOT NULL,
  `contact_id` bigint unsigned NOT NULL,
  `status` enum('pending','sent','failed','bounced') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `sent_at` timestamp NULL DEFAULT NULL,
  `opened_at` timestamp NULL DEFAULT NULL,
  `clicked_at` timestamp NULL DEFAULT NULL,
  `open_count` int NOT NULL DEFAULT '0',
  `click_count` int NOT NULL DEFAULT '0',
  `error_message` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `metadata` json DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `newsletter_campaign_recipients_campaign_id_contact_id_unique` (`campaign_id`,`contact_id`),
  KEY `newsletter_campaign_recipients_campaign_id_status_index` (`campaign_id`,`status`),
  KEY `newsletter_campaign_recipients_contact_id_campaign_id_index` (`contact_id`,`campaign_id`),
  CONSTRAINT `newsletter_campaign_recipients_campaign_id_foreign` FOREIGN KEY (`campaign_id`) REFERENCES `newsletter_campaigns` (`id`) ON DELETE CASCADE,
  CONSTRAINT `newsletter_campaign_recipients_contact_id_foreign` FOREIGN KEY (`contact_id`) REFERENCES `newsletter_contacts` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_campaign_recipients`
--

LOCK TABLES `newsletter_campaign_recipients` WRITE;
/*!40000 ALTER TABLE `newsletter_campaign_recipients` DISABLE KEYS */;
/*!40000 ALTER TABLE `newsletter_campaign_recipients` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `newsletter_campaigns`
--

DROP TABLE IF EXISTS `newsletter_campaigns`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `newsletter_campaigns` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `template_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Template identifier (e.g., welcome, event-announcement)',
  `field_values` json DEFAULT NULL COMMENT 'User-provided field values for the template',
  `subject` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `preview_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `html_content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `text_content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `template_components` json DEFAULT NULL,
  `email_template_id` bigint unsigned DEFAULT NULL,
  `template_data` json DEFAULT NULL,
  `audience_type` enum('all','active','new','custom','import_batch') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'all',
  `audience_filters` json DEFAULT NULL,
  `target_import_batch_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` enum('draft','scheduled','sending','sent','failed','cancelled') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'draft',
  `scheduled_at` timestamp NULL DEFAULT NULL,
  `started_sending_at` timestamp NULL DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `from_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Global Gala',
  `from_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'info@showprima.com',
  `reply_to_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `total_recipients` int NOT NULL DEFAULT '0',
  `sent_count` int NOT NULL DEFAULT '0',
  `failed_count` int NOT NULL DEFAULT '0',
  `opened_count` int NOT NULL DEFAULT '0',
  `clicked_count` int NOT NULL DEFAULT '0',
  `unsubscribed_count` int NOT NULL DEFAULT '0',
  `bounced_count` int NOT NULL DEFAULT '0',
  `complained_count` int NOT NULL DEFAULT '0',
  `created_by` bigint unsigned DEFAULT NULL,
  `metadata` json DEFAULT NULL,
  `notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `newsletter_campaigns_email_template_id_foreign` (`email_template_id`),
  KEY `newsletter_campaigns_status_index` (`status`),
  KEY `newsletter_campaigns_scheduled_at_index` (`scheduled_at`),
  KEY `newsletter_campaigns_created_by_index` (`created_by`),
  KEY `newsletter_campaigns_status_scheduled_at_index` (`status`,`scheduled_at`),
  CONSTRAINT `newsletter_campaigns_email_template_id_foreign` FOREIGN KEY (`email_template_id`) REFERENCES `email_templates` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_campaigns`
--

LOCK TABLES `newsletter_campaigns` WRITE;
/*!40000 ALTER TABLE `newsletter_campaigns` DISABLE KEYS */;
/*!40000 ALTER TABLE `newsletter_campaigns` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `newsletter_contacts`
--

DROP TABLE IF EXISTS `newsletter_contacts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `newsletter_contacts` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `first_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `last_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `full_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` enum('subscribed','unsubscribed','bounced','complained') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'subscribed',
  `subscription_token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `consent_status` enum('explicit','legacy','imported') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'imported',
  `subscribed_at` timestamp NULL DEFAULT NULL,
  `unsubscribed_at` timestamp NULL DEFAULT NULL,
  `unsubscribe_reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `source` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `import_batch_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `metadata` json DEFAULT NULL,
  `emails_sent` int NOT NULL DEFAULT '0',
  `emails_opened` int NOT NULL DEFAULT '0',
  `emails_clicked` int NOT NULL DEFAULT '0',
  `bounce_count` int NOT NULL DEFAULT '0',
  `last_sent_at` timestamp NULL DEFAULT NULL,
  `last_opened_at` timestamp NULL DEFAULT NULL,
  `consent_notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `signup_ip` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `signup_user_agent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `newsletter_contacts_email_unique` (`email`),
  UNIQUE KEY `newsletter_contacts_subscription_token_unique` (`subscription_token`),
  KEY `newsletter_contacts_status_index` (`status`),
  KEY `newsletter_contacts_import_batch_id_index` (`import_batch_id`),
  KEY `newsletter_contacts_status_consent_status_index` (`status`,`consent_status`),
  KEY `newsletter_contacts_created_at_index` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_contacts`
--

LOCK TABLES `newsletter_contacts` WRITE;
/*!40000 ALTER TABLE `newsletter_contacts` DISABLE KEYS */;
/*!40000 ALTER TABLE `newsletter_contacts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `newsletter_subscription_history`
--

DROP TABLE IF EXISTS `newsletter_subscription_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `newsletter_subscription_history` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `contact_id` bigint unsigned NOT NULL,
  `action` enum('subscribed','unsubscribed','resubscribed','bounced','complained') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_agent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `metadata` json DEFAULT NULL,
  `created_at` timestamp NOT NULL,
  PRIMARY KEY (`id`),
  KEY `newsletter_subscription_history_contact_id_action_index` (`contact_id`,`action`),
  KEY `newsletter_subscription_history_created_at_index` (`created_at`),
  KEY `newsletter_subscription_history_action_index` (`action`),
  CONSTRAINT `newsletter_subscription_history_contact_id_foreign` FOREIGN KEY (`contact_id`) REFERENCES `newsletter_contacts` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_subscription_history`
--

LOCK TABLES `newsletter_subscription_history` WRITE;
/*!40000 ALTER TABLE `newsletter_subscription_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `newsletter_subscription_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `newsletter_subscriptions`
--

DROP TABLE IF EXISTS `newsletter_subscriptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `newsletter_subscriptions` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `contact_id` bigint unsigned NOT NULL,
  `user_id` bigint unsigned DEFAULT NULL,
  `subscription_type` enum('newsletter','event_updates','promotional','transactional') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'newsletter',
  `status` enum('active','paused','unsubscribed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active',
  `subscribed_at` timestamp NOT NULL,
  `unsubscribed_at` timestamp NULL DEFAULT NULL,
  `source` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `newsletter_subscriptions_contact_id_subscription_type_unique` (`contact_id`,`subscription_type`),
  KEY `newsletter_subscriptions_contact_id_subscription_type_index` (`contact_id`,`subscription_type`),
  KEY `newsletter_subscriptions_user_id_status_index` (`user_id`,`status`),
  CONSTRAINT `newsletter_subscriptions_contact_id_foreign` FOREIGN KEY (`contact_id`) REFERENCES `newsletter_contacts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `newsletter_subscriptions_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_subscriptions`
--

LOCK TABLES `newsletter_subscriptions` WRITE;
/*!40000 ALTER TABLE `newsletter_subscriptions` DISABLE KEYS */;
/*!40000 ALTER TABLE `newsletter_subscriptions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `order_audit_log`
--

DROP TABLE IF EXISTS `order_audit_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_audit_log` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `admin_user_id` bigint unsigned NOT NULL,
  `action` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
  `old_value` text COLLATE utf8mb4_unicode_ci,
  `new_value` text COLLATE utf8mb4_unicode_ci,
  `reason` text COLLATE utf8mb4_unicode_ci,
  `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_agent` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `metadata` json DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `order_audit_log_order_id_created_at_index` (`order_id`,`created_at`),
  KEY `order_audit_log_admin_user_id_created_at_index` (`admin_user_id`,`created_at`),
  KEY `order_audit_log_action_index` (`action`),
  KEY `order_audit_log_order_id_index` (`order_id`),
  CONSTRAINT `order_audit_log_admin_user_id_foreign` FOREIGN KEY (`admin_user_id`) REFERENCES `admins` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_audit_log`
--

LOCK TABLES `order_audit_log` WRITE;
/*!40000 ALTER TABLE `order_audit_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `order_audit_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `order_items`
--

DROP TABLE IF EXISTS `order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_items` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint NOT NULL,
  `event_id` bigint NOT NULL,
  `user_id` bigint DEFAULT NULL,
  `amount` decimal(10,2) NOT NULL,
  `seat` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `zone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ticket_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `sub_cat` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `category` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `quantity` int NOT NULL DEFAULT '1',
  `status` tinyint NOT NULL DEFAULT '1',
  `pdf_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pdf_generation_status` enum('pending','processing','ready','failed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `pdf_generation_error` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `pdf_generated_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `order_items_event_id_seat_status_index` (`event_id`,`seat`,`status`),
  KEY `order_items_order_id_index` (`order_id`),
  KEY `order_items_user_id_index` (`user_id`),
  KEY `order_items_pdf_generation_status_index` (`pdf_generation_status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_items`
--

LOCK TABLES `order_items` WRITE;
/*!40000 ALTER TABLE `order_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `order_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `order_line_items`
--

DROP TABLE IF EXISTS `order_line_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_line_items` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint unsigned NOT NULL COMMENT 'Foreign key to orders table',
  `session_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Session ID for order tracking',
  `seat_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Seat ID if this is a ticket line item',
  `item_type` enum('ticket','booking_fee','service_fee','tax','discount') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Type of line item',
  `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Human-readable description',
  `unit_price` decimal(10,2) NOT NULL COMMENT 'Price per unit',
  `quantity` int NOT NULL DEFAULT '1' COMMENT 'Quantity of items',
  `line_total` decimal(10,2) NOT NULL COMMENT 'Total for this line (unit_price * quantity)',
  `metadata` json DEFAULT NULL COMMENT 'Additional metadata (seat_number, rates, etc.)',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `order_line_items_order_id_index` (`order_id`),
  KEY `order_line_items_session_id_index` (`session_id`),
  KEY `order_line_items_seat_id_index` (`seat_id`),
  KEY `order_line_items_item_type_index` (`item_type`),
  KEY `order_line_items_order_id_item_type_index` (`order_id`,`item_type`),
  CONSTRAINT `order_line_items_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_line_items`
--

LOCK TABLES `order_line_items` WRITE;
/*!40000 ALTER TABLE `order_line_items` DISABLE KEYS */;
INSERT INTO `order_line_items` VALUES (1,1,NULL,NULL,'ticket','Ticket -  Zone',50.00,1,0.00,'\"{\\\"seat_id\\\":\\\"9f03124c-67b3-4acf-b2de-8f27778a5aab\\\",\\\"seat_label\\\":null,\\\"zone\\\":null,\\\"table\\\":null,\\\"seat\\\":\\\"A1\\\"}\"','2025-11-24 21:34:01','2025-11-24 21:34:01'),(2,1,NULL,NULL,'ticket','Ticket -  Zone',60.00,1,0.00,'\"{\\\"seat_id\\\":\\\"5c5b7edc-20f9-482f-8811-44b07d99515c\\\",\\\"seat_label\\\":null,\\\"zone\\\":null,\\\"table\\\":null,\\\"seat\\\":\\\"B2\\\"}\"','2025-11-24 21:34:01','2025-11-24 21:34:01'),(3,1,NULL,NULL,'ticket','Ticket -  Zone',70.00,1,0.00,'\"{\\\"seat_id\\\":\\\"2088b9b7-f827-4a47-aa5d-c69e62a615fc\\\",\\\"seat_label\\\":null,\\\"zone\\\":null,\\\"table\\\":null,\\\"seat\\\":\\\"C3\\\"}\"','2025-11-24 21:34:01','2025-11-24 21:34:01'),(4,1,NULL,NULL,'ticket','Ticket -  Zone',80.00,1,0.00,'\"{\\\"seat_id\\\":\\\"dceba2a1-4c1c-4c2d-a83a-935fb3cf72e9\\\",\\\"seat_label\\\":null,\\\"zone\\\":null,\\\"table\\\":null,\\\"seat\\\":\\\"D4\\\"}\"','2025-11-24 21:34:01','2025-11-24 21:34:01'),(5,1,NULL,NULL,'ticket','Ticket -  Zone',90.00,1,0.00,'\"{\\\"seat_id\\\":\\\"b1f69a66-e8d0-4bdf-9173-94bf445b5cfd\\\",\\\"seat_label\\\":null,\\\"zone\\\":null,\\\"table\\\":null,\\\"seat\\\":\\\"E5\\\"}\"','2025-11-24 21:34:01','2025-11-24 21:34:01'),(6,3,NULL,'ac79cef1-8dde-49b2-b4c6-e16ae0c20d31','ticket','714-A6',50.00,1,50.00,'{\"seat_id\": \"ac79cef1-8dde-49b2-b4c6-e16ae0c20d31\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"714-A6\", \"tier_prefix\": null, \"reservation_id\": 25, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"714-A6\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 14:21:36','2025-12-01 14:21:36'),(7,3,NULL,'3927d72a-7990-486d-8ab2-476dd3e30bb6','ticket','714-A5',50.00,1,50.00,'{\"seat_id\": \"3927d72a-7990-486d-8ab2-476dd3e30bb6\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"714-A5\", \"tier_prefix\": null, \"reservation_id\": 26, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"714-A5\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 14:21:36','2025-12-01 14:21:36'),(8,3,NULL,'4dc24fca-bcab-4d5f-9318-8a7307005001','ticket','714-A4',50.00,1,50.00,'{\"seat_id\": \"4dc24fca-bcab-4d5f-9318-8a7307005001\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"714-A4\", \"tier_prefix\": null, \"reservation_id\": 27, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"714-A4\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 14:21:36','2025-12-01 14:21:36'),(9,4,NULL,'577f2c01-ff53-474c-848b-3ad2bf4fd8a6','ticket','714-B6',50.00,1,50.00,'{\"seat_id\": \"577f2c01-ff53-474c-848b-3ad2bf4fd8a6\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"714-B6\", \"tier_prefix\": null, \"reservation_id\": 28, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"714-B6\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 14:51:45','2025-12-01 14:51:45'),(10,4,NULL,'dcca9b82-c550-4fcc-abe0-ccc7e1b74524','ticket','714-B5',50.00,1,50.00,'{\"seat_id\": \"dcca9b82-c550-4fcc-abe0-ccc7e1b74524\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"714-B5\", \"tier_prefix\": null, \"reservation_id\": 29, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"714-B5\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 14:51:45','2025-12-01 14:51:45'),(11,4,NULL,'243499b7-b341-414f-94cf-0bd46090019a','ticket','714-B4',50.00,1,50.00,'{\"seat_id\": \"243499b7-b341-414f-94cf-0bd46090019a\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"714-B4\", \"tier_prefix\": null, \"reservation_id\": 30, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"714-B4\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 14:51:45','2025-12-01 14:51:45'),(12,5,NULL,'ad3c61d2-17ac-4eb7-8a13-59e379c68a58','ticket','714-A3',50.00,1,50.00,'{\"seat_id\": \"ad3c61d2-17ac-4eb7-8a13-59e379c68a58\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"714-A3\", \"tier_prefix\": null, \"reservation_id\": 31, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"714-A3\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 14:59:42','2025-12-01 14:59:42'),(13,5,NULL,'b91cec58-ad03-40c1-9fbf-183a25b4ca67','ticket','714-B3',50.00,1,50.00,'{\"seat_id\": \"b91cec58-ad03-40c1-9fbf-183a25b4ca67\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"714-B3\", \"tier_prefix\": null, \"reservation_id\": 32, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"714-B3\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 14:59:42','2025-12-01 14:59:42'),(14,6,NULL,'0b4c0b8f-d371-469d-a78e-54b4425f3262','ticket','714-A2',50.00,1,50.00,'{\"seat_id\": \"0b4c0b8f-d371-469d-a78e-54b4425f3262\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"714-A2\", \"tier_prefix\": null, \"reservation_id\": 33, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"714-A2\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 15:23:22','2025-12-01 15:23:22'),(15,6,NULL,'c3de9796-8280-4e28-b691-f860af094353','ticket','714-B2',50.00,1,50.00,'{\"seat_id\": \"c3de9796-8280-4e28-b691-f860af094353\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"714-B2\", \"tier_prefix\": null, \"reservation_id\": 34, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"714-B2\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 15:23:22','2025-12-01 15:23:22'),(16,7,NULL,'4620ced6-a229-4f47-8c36-cd3308e072bd','ticket','714-A1',50.00,1,50.00,'{\"seat_id\": \"4620ced6-a229-4f47-8c36-cd3308e072bd\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"714-A1\", \"tier_prefix\": null, \"reservation_id\": 35, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"714-A1\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 15:40:29','2025-12-01 15:40:29'),(17,7,NULL,'d7747a1c-d038-4054-9d34-bee063098f8f','ticket','714-B1',50.00,1,50.00,'{\"seat_id\": \"d7747a1c-d038-4054-9d34-bee063098f8f\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"714-B1\", \"tier_prefix\": null, \"reservation_id\": 36, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"714-B1\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 15:40:29','2025-12-01 15:40:29'),(18,8,NULL,'1673e45d-07ef-4e33-b9dc-3c9aa97addc6','ticket','713-A6',50.00,1,50.00,'{\"seat_id\": \"1673e45d-07ef-4e33-b9dc-3c9aa97addc6\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"713-A6\", \"tier_prefix\": null, \"reservation_id\": 37, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"713-A6\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 15:55:33','2025-12-01 15:55:33'),(19,8,NULL,'11194dec-4ada-44d7-9885-ef1ceea74175','ticket','713-B6',50.00,1,50.00,'{\"seat_id\": \"11194dec-4ada-44d7-9885-ef1ceea74175\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"713-B6\", \"tier_prefix\": null, \"reservation_id\": 38, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"713-B6\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 15:55:33','2025-12-01 15:55:33'),(20,9,NULL,'2c54eac2-ead9-4090-a048-05549108939d','ticket','713-B5',50.00,1,50.00,'{\"seat_id\": \"2c54eac2-ead9-4090-a048-05549108939d\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"713-B5\", \"tier_prefix\": null, \"reservation_id\": 39, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"713-B5\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 16:27:23','2025-12-01 16:27:23'),(21,9,NULL,'d7d5ef6d-95e3-4b21-b2b0-3b10dcfa0612','ticket','713-A5',50.00,1,50.00,'{\"seat_id\": \"d7d5ef6d-95e3-4b21-b2b0-3b10dcfa0612\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"713-A5\", \"tier_prefix\": null, \"reservation_id\": 40, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"713-A5\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 16:27:23','2025-12-01 16:27:23'),(22,10,NULL,'ceac2d46-1aec-415c-b90a-a51debc61904','ticket','713-A4',50.00,1,50.00,'{\"seat_id\": \"ceac2d46-1aec-415c-b90a-a51debc61904\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"713-A4\", \"tier_prefix\": null, \"reservation_id\": 41, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"713-A4\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 16:41:29','2025-12-01 16:41:29'),(23,10,NULL,'e099dd2d-6a57-403d-b9ef-0c48d1288915','ticket','713-B4',50.00,1,50.00,'{\"seat_id\": \"e099dd2d-6a57-403d-b9ef-0c48d1288915\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"713-B4\", \"tier_prefix\": null, \"reservation_id\": 42, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"713-B4\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 16:41:29','2025-12-01 16:41:29'),(24,11,NULL,'394ef130-1c54-4b60-9bd6-565f814fcbfa','ticket','713-A3',50.00,1,50.00,'{\"seat_id\": \"394ef130-1c54-4b60-9bd6-565f814fcbfa\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"713-A3\", \"tier_prefix\": null, \"reservation_id\": 43, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"713-A3\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 16:41:57','2025-12-01 16:41:57'),(25,11,NULL,'4911f38f-abc0-406a-9b4c-1f3e4c1e8a30','ticket','713-B3',50.00,1,50.00,'{\"seat_id\": \"4911f38f-abc0-406a-9b4c-1f3e4c1e8a30\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"713-B3\", \"tier_prefix\": null, \"reservation_id\": 44, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"713-B3\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 16:41:57','2025-12-01 16:41:57'),(26,12,NULL,'5b43fa6f-ce05-40cf-9fa2-b82148d2cb35','ticket','713-A2',50.00,1,50.00,'{\"seat_id\": \"5b43fa6f-ce05-40cf-9fa2-b82148d2cb35\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"713-A2\", \"tier_prefix\": null, \"reservation_id\": 45, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"713-A2\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 16:55:56','2025-12-01 16:55:56'),(27,12,NULL,'560fd6fa-5392-4fd6-bf7d-5958c56b5eb5','ticket','713-B2',50.00,1,50.00,'{\"seat_id\": \"560fd6fa-5392-4fd6-bf7d-5958c56b5eb5\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"713-B2\", \"tier_prefix\": null, \"reservation_id\": 46, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"713-B2\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 16:55:56','2025-12-01 16:55:56'),(28,13,NULL,'6f84ca9b-fae5-43d2-8db3-2457af8ac951','ticket','713-A1',50.00,1,50.00,'{\"seat_id\": \"6f84ca9b-fae5-43d2-8db3-2457af8ac951\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"713-A1\", \"tier_prefix\": null, \"reservation_id\": 47, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"713-A1\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 17:14:02','2025-12-01 17:14:02'),(29,13,NULL,'bc4ee1ec-3c3f-41dd-8bc8-7c82cfedf36a','ticket','713-B1',50.00,1,50.00,'{\"seat_id\": \"bc4ee1ec-3c3f-41dd-8bc8-7c82cfedf36a\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"713-B1\", \"tier_prefix\": null, \"reservation_id\": 48, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"713-B1\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 17:14:02','2025-12-01 17:14:02'),(30,14,NULL,'729047e3-56f6-484d-b08e-35c0755c65b4','ticket','712-A5',50.00,1,50.00,'{\"seat_id\": \"729047e3-56f6-484d-b08e-35c0755c65b4\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"712-A5\", \"tier_prefix\": null, \"reservation_id\": 51, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"712-A5\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 17:41:57','2025-12-01 17:41:57'),(31,15,NULL,'c2d55cff-28c1-4884-ac6c-3f3f7a1eee63','ticket','712-A6',50.00,1,50.00,'{\"seat_id\": \"c2d55cff-28c1-4884-ac6c-3f3f7a1eee63\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"712-A6\", \"tier_prefix\": null, \"reservation_id\": 53, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"712-A6\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 17:48:34','2025-12-01 17:48:34'),(32,16,NULL,'eae51293-2a58-4334-b10b-f023415075e7','ticket','712-A4',50.00,1,50.00,'{\"seat_id\": \"eae51293-2a58-4334-b10b-f023415075e7\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"712-A4\", \"tier_prefix\": null, \"reservation_id\": 60, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"712-A4\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 18:07:03','2025-12-01 18:07:03'),(33,16,NULL,'bbbc7892-71a4-4a1c-90d9-278e434d10e1','ticket','712-A3',50.00,1,50.00,'{\"seat_id\": \"bbbc7892-71a4-4a1c-90d9-278e434d10e1\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"712-A3\", \"tier_prefix\": null, \"reservation_id\": 61, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"712-A3\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 18:07:03','2025-12-01 18:07:03'),(34,17,NULL,'a434dfca-262a-4568-95f9-30534a04dd29','ticket','712-B6',50.00,1,50.00,'{\"seat_id\": \"a434dfca-262a-4568-95f9-30534a04dd29\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"712-B6\", \"tier_prefix\": null, \"reservation_id\": 62, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"712-B6\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 18:45:14','2025-12-01 18:45:14'),(35,17,NULL,'7d65d620-97a8-4a7d-bdd6-e10fa8bae342','ticket','712-B5',50.00,1,50.00,'{\"seat_id\": \"7d65d620-97a8-4a7d-bdd6-e10fa8bae342\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"712-B5\", \"tier_prefix\": null, \"reservation_id\": 63, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"712-B5\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 18:45:14','2025-12-01 18:45:14'),(36,17,NULL,'51560947-2f7a-4239-9176-bfa0885bfc82','ticket','712-B4',50.00,1,50.00,'{\"seat_id\": \"51560947-2f7a-4239-9176-bfa0885bfc82\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"712-B4\", \"tier_prefix\": null, \"reservation_id\": 64, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"712-B4\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-01 18:45:14','2025-12-01 18:45:14'),(37,18,NULL,'d5f943dc-4db7-45fa-a1aa-3ce2d77a0123','ticket','712-A2',50.00,1,50.00,'{\"seat_id\": \"d5f943dc-4db7-45fa-a1aa-3ce2d77a0123\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"712-A2\", \"tier_prefix\": null, \"reservation_id\": 69, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"712-A2\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-02 12:55:00','2025-12-02 12:55:00'),(38,18,NULL,'43093704-2b4f-43d3-a73e-777bcb3bd998','ticket','712-B2',50.00,1,50.00,'{\"seat_id\": \"43093704-2b4f-43d3-a73e-777bcb3bd998\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"712-B2\", \"tier_prefix\": null, \"reservation_id\": 70, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"712-B2\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-02 12:55:00','2025-12-02 12:55:00'),(39,18,NULL,'4bcc0f44-6f62-4bf0-9704-99bbb2b53d52','ticket','712-B3',50.00,1,50.00,'{\"seat_id\": \"4bcc0f44-6f62-4bf0-9704-99bbb2b53d52\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"712-B3\", \"tier_prefix\": null, \"reservation_id\": 71, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"712-B3\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-02 12:55:00','2025-12-02 12:55:00'),(40,19,NULL,'177c0147-efe6-4e8e-a7a1-21ecdd8eb7bb','ticket','513-A6',100.00,1,100.00,'{\"seat_id\": \"177c0147-efe6-4e8e-a7a1-21ecdd8eb7bb\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"513-A6\", \"tier_prefix\": null, \"reservation_id\": 79, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"513-A6\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-02 13:02:52','2025-12-02 13:02:52'),(41,20,NULL,'33dcf9b6-65d6-486d-95cf-60974529d923','ticket','513-A1',100.00,1,100.00,'{\"seat_id\": \"33dcf9b6-65d6-486d-95cf-60974529d923\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"513-A1\", \"tier_prefix\": null, \"reservation_id\": 90, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"513-A1\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-02 13:58:26','2025-12-02 13:58:26'),(42,21,NULL,'226c7466-1f7c-4c98-bd66-e147bb946c8a','ticket','513-A5',100.00,1,100.00,'{\"seat_id\": \"226c7466-1f7c-4c98-bd66-e147bb946c8a\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"513-A5\", \"tier_prefix\": null, \"reservation_id\": 111, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"513-A5\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-02 14:36:58','2025-12-02 14:36:58'),(43,22,NULL,'374968ab-f99a-4286-87d3-160c84792200','ticket','507-B1',50.00,1,50.00,'{\"seat_id\": \"374968ab-f99a-4286-87d3-160c84792200\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"507-B1\", \"tier_prefix\": null, \"reservation_id\": 112, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"507-B1\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-02 14:37:29','2025-12-02 14:37:29'),(44,23,NULL,'43834920-0ea9-4304-a1ef-49f780110668','ticket','507-B2',50.00,1,50.00,'{\"seat_id\": \"43834920-0ea9-4304-a1ef-49f780110668\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"507-B2\", \"tier_prefix\": null, \"reservation_id\": 113, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"507-B2\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-02 14:37:54','2025-12-02 14:37:54'),(45,24,NULL,'3ee48c53-f955-4eef-8b76-736dfcd16468','ticket','507-B3',50.00,1,50.00,'{\"seat_id\": \"3ee48c53-f955-4eef-8b76-736dfcd16468\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"507-B3\", \"tier_prefix\": null, \"reservation_id\": 114, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"507-B3\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-02 14:40:21','2025-12-02 14:40:21'),(46,25,NULL,'c8b148e4-38c9-4ff1-81ee-ba25378e7e41','ticket','511-A6',100.00,1,100.00,'{\"seat_id\": \"c8b148e4-38c9-4ff1-81ee-ba25378e7e41\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"511-A6\", \"tier_prefix\": null, \"reservation_id\": 115, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"511-A6\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-02 14:45:44','2025-12-02 14:45:44'),(47,26,NULL,'421f9c23-eb1e-4d47-af10-210e5513466c','ticket','512-A4',100.00,1,100.00,'{\"seat_id\": \"421f9c23-eb1e-4d47-af10-210e5513466c\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"512-A4\", \"tier_prefix\": null, \"reservation_id\": 116, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"512-A4\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-02 15:56:31','2025-12-02 15:56:31'),(48,27,NULL,'ad650f86-179b-452f-b14d-d64758020b7a','ticket','512-A5',100.00,1,100.00,'{\"seat_id\": \"ad650f86-179b-452f-b14d-d64758020b7a\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"512-A5\", \"tier_prefix\": null, \"reservation_id\": 117, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"512-A5\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-02 16:54:29','2025-12-02 16:54:29'),(49,28,NULL,'ef7f103d-e4a3-4beb-976a-204e729cf22f','ticket','512-A3',100.00,1,100.00,'{\"seat_id\": \"ef7f103d-e4a3-4beb-976a-204e729cf22f\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"512-A3\", \"tier_prefix\": null, \"reservation_id\": 118, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"512-A3\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-02 16:54:45','2025-12-02 16:54:45'),(50,29,NULL,'39a7354f-688b-432a-ad02-f79ac0bf6205','ticket','512-A2',100.00,1,100.00,'{\"seat_id\": \"39a7354f-688b-432a-ad02-f79ac0bf6205\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"512-A2\", \"tier_prefix\": null, \"reservation_id\": 119, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"512-A2\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-02 16:55:02','2025-12-02 16:55:02'),(51,30,NULL,'a7233a13-1e33-4b00-9317-f68f54170b46','ticket','512-A10',100.00,1,100.00,'{\"seat_id\": \"a7233a13-1e33-4b00-9317-f68f54170b46\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"512-A10\", \"tier_prefix\": null, \"reservation_id\": 122, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"512-A10\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-02 17:17:58','2025-12-02 17:17:58'),(52,30,NULL,'375c8c7f-41fc-4078-bad6-0a8ff390a348','ticket','512-A1',100.00,1,100.00,'{\"seat_id\": \"375c8c7f-41fc-4078-bad6-0a8ff390a348\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"512-A1\", \"tier_prefix\": null, \"reservation_id\": 123, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"512-A1\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-02 17:17:58','2025-12-02 17:17:58'),(53,31,NULL,'c8e077db-67b8-45bf-81b5-1b56c69c18b3','ticket','512-A8',100.00,1,100.00,'{\"seat_id\": \"c8e077db-67b8-45bf-81b5-1b56c69c18b3\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"512-A8\", \"tier_prefix\": null, \"reservation_id\": 124, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"512-A8\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-02 17:22:31','2025-12-02 17:22:31'),(54,32,NULL,'e6acad91-a0c0-4e09-9f30-953ce136e8fe','ticket','512-A9',100.00,1,100.00,'{\"seat_id\": \"e6acad91-a0c0-4e09-9f30-953ce136e8fe\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"512-A9\", \"tier_prefix\": null, \"reservation_id\": 125, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"512-A9\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-02 17:27:19','2025-12-02 17:27:19'),(55,33,NULL,'1b5d20a7-4a71-4233-858a-fe9c23ff310d','ticket','511-A1',100.00,1,100.00,'{\"seat_id\": \"1b5d20a7-4a71-4233-858a-fe9c23ff310d\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"511-A1\", \"tier_prefix\": null, \"reservation_id\": 126, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"511-A1\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-02 17:29:50','2025-12-02 17:29:50'),(56,34,NULL,'a1fcf149-0867-4f74-9abf-cff066729c20','ticket','512-A7',100.00,1,100.00,'{\"seat_id\": \"a1fcf149-0867-4f74-9abf-cff066729c20\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"512-A7\", \"tier_prefix\": null, \"reservation_id\": 127, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"512-A7\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-02 17:32:03','2025-12-02 17:32:03'),(57,35,NULL,'7ea0a254-7a31-405c-9da4-f57be863d66e','ticket','512-A6',100.00,1,100.00,'{\"seat_id\": \"7ea0a254-7a31-405c-9da4-f57be863d66e\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"512-A6\", \"tier_prefix\": null, \"reservation_id\": 128, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"512-A6\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-02 17:34:45','2025-12-02 17:34:45'),(58,36,NULL,'fcae14bb-dc32-4750-8ba9-2b7da7349e7b','ticket','712-A1',50.00,1,50.00,'{\"seat_id\": \"fcae14bb-dc32-4750-8ba9-2b7da7349e7b\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"712-A1\", \"tier_prefix\": null, \"reservation_id\": 129, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"712-A1\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-03 13:14:14','2025-12-03 13:14:14'),(59,36,NULL,'4110c3e2-527a-4fa9-b848-4c1efb326926','ticket','712-B1',50.00,1,50.00,'{\"seat_id\": \"4110c3e2-527a-4fa9-b848-4c1efb326926\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"712-B1\", \"tier_prefix\": null, \"reservation_id\": 130, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"712-B1\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-03 13:14:14','2025-12-03 13:14:14'),(60,37,NULL,'36de5ffa-aca6-49ce-82d6-58e4685a22d1','ticket','507-A1',50.00,1,50.00,'{\"seat_id\": \"36de5ffa-aca6-49ce-82d6-58e4685a22d1\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"507-A1\", \"tier_prefix\": null, \"reservation_id\": 131, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"507-A1\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-03 13:20:21','2025-12-03 13:20:21'),(61,38,NULL,'e863dd1f-9881-4c6f-b439-f92f9d13cff7','ticket','507-A2',50.00,1,50.00,'{\"seat_id\": \"e863dd1f-9881-4c6f-b439-f92f9d13cff7\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"507-A2\", \"tier_prefix\": null, \"reservation_id\": 132, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"507-A2\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-03 13:24:11','2025-12-03 13:24:11'),(62,39,NULL,'9954d428-8055-499f-9d80-77ce13e9ab1e','ticket','513-A3',100.00,1,100.00,'{\"seat_id\": \"9954d428-8055-499f-9d80-77ce13e9ab1e\", \"tier_id\": 1, \"tier_price\": \"50.00\", \"seat_number\": \"513-A3\", \"tier_prefix\": null, \"reservation_id\": 134, \"tier_color_hex\": \"#4CAF50\", \"tier_color_name\": \"4CAF50\", \"base_seat_number\": \"513-A3\", \"tier_display_name\": \"4CAF50 Tier\"}','2025-12-03 21:54:17','2025-12-03 21:54:17');
/*!40000 ALTER TABLE `order_line_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `order_modifications`
--

DROP TABLE IF EXISTS `order_modifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_modifications` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint unsigned DEFAULT NULL,
  `session_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `modification_type` enum('add_seats','remove_seats','apply_discount','apply_credit','adjust_total','reassign_seat') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` enum('pending','approved','rejected','applied') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `amount_change` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT 'Positive for additions, negative for reductions',
  `old_total` decimal(10,2) DEFAULT NULL,
  `new_total` decimal(10,2) DEFAULT NULL,
  `modification_data` json DEFAULT NULL COMMENT 'Details of the modification (seats added/removed, discount info, etc.)',
  `reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `requested_by` bigint unsigned DEFAULT NULL COMMENT 'Admin user who requested the modification',
  `approved_by` bigint unsigned DEFAULT NULL COMMENT 'Admin user who approved the modification',
  `rejected_by` bigint unsigned DEFAULT NULL COMMENT 'Admin user who rejected the modification',
  `approved_at` timestamp NULL DEFAULT NULL,
  `rejected_at` timestamp NULL DEFAULT NULL,
  `applied_at` timestamp NULL DEFAULT NULL,
  `rejection_reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `idempotency_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `order_modifications_idempotency_key_unique` (`idempotency_key`),
  KEY `order_modifications_requested_by_foreign` (`requested_by`),
  KEY `order_modifications_approved_by_foreign` (`approved_by`),
  KEY `order_modifications_rejected_by_foreign` (`rejected_by`),
  KEY `order_modifications_modification_type_index` (`modification_type`),
  KEY `order_modifications_status_index` (`status`),
  KEY `order_modifications_order_id_status_index` (`order_id`,`status`),
  KEY `order_modifications_created_at_index` (`created_at`),
  KEY `order_modifications_session_id_index` (`session_id`),
  CONSTRAINT `order_modifications_approved_by_foreign` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `order_modifications_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `order_modifications_rejected_by_foreign` FOREIGN KEY (`rejected_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `order_modifications_requested_by_foreign` FOREIGN KEY (`requested_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_modifications`
--

LOCK TABLES `order_modifications` WRITE;
/*!40000 ALTER TABLE `order_modifications` DISABLE KEYS */;
/*!40000 ALTER TABLE `order_modifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `order_notes`
--

DROP TABLE IF EXISTS `order_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_notes` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint unsigned NOT NULL,
  `admin_id` bigint unsigned NOT NULL,
  `note` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_internal` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Internal staff notes vs customer-visible notes',
  `is_edited` tinyint(1) NOT NULL DEFAULT '0',
  `edited_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `order_notes_order_id_created_at_index` (`order_id`,`created_at`),
  KEY `order_notes_admin_id_index` (`admin_id`),
  CONSTRAINT `order_notes_admin_id_foreign` FOREIGN KEY (`admin_id`) REFERENCES `admins` (`id`) ON DELETE RESTRICT,
  CONSTRAINT `order_notes_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_notes`
--

LOCK TABLES `order_notes` WRITE;
/*!40000 ALTER TABLE `order_notes` DISABLE KEYS */;
/*!40000 ALTER TABLE `order_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `order_refunds`
--

DROP TABLE IF EXISTS `order_refunds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_refunds` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint unsigned NOT NULL,
  `event_id` bigint unsigned DEFAULT NULL,
  `refund_amount` decimal(10,2) NOT NULL,
  `refund_type` enum('full','partial') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'full',
  `refund_reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `payment_gateway` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `gateway_refund_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `gateway_response` json DEFAULT NULL,
  `status` enum('pending','processing','completed','failed','cancelled') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `processed_by` bigint unsigned DEFAULT NULL,
  `processed_at` timestamp NULL DEFAULT NULL,
  `notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `order_refunds_event_id_foreign` (`event_id`),
  KEY `order_refunds_processed_by_foreign` (`processed_by`),
  KEY `order_refunds_order_id_status_index` (`order_id`,`status`),
  KEY `order_refunds_gateway_refund_id_index` (`gateway_refund_id`),
  KEY `order_refunds_created_at_index` (`created_at`),
  CONSTRAINT `order_refunds_event_id_foreign` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`) ON DELETE SET NULL,
  CONSTRAINT `order_refunds_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `order_refunds_processed_by_foreign` FOREIGN KEY (`processed_by`) REFERENCES `admins` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_refunds`
--

LOCK TABLES `order_refunds` WRITE;
/*!40000 ALTER TABLE `order_refunds` DISABLE KEYS */;
/*!40000 ALTER TABLE `order_refunds` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `order_status_audit_logs`
--

DROP TABLE IF EXISTS `order_status_audit_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_status_audit_logs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint unsigned NOT NULL,
  `old_status` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `new_status` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `changed_by_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'system',
  `changed_by_id` bigint unsigned DEFAULT NULL,
  `trigger_source` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trigger_event_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `metadata` json DEFAULT NULL,
  `changed_at` timestamp NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_audit_order_id` (`order_id`),
  KEY `idx_audit_new_status` (`new_status`),
  KEY `idx_audit_changed_at` (`changed_at`),
  KEY `idx_audit_order_timeline` (`order_id`,`changed_at`),
  CONSTRAINT `order_status_audit_logs_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_status_audit_logs`
--

LOCK TABLES `order_status_audit_logs` WRITE;
/*!40000 ALTER TABLE `order_status_audit_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `order_status_audit_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `orders`
--

DROP TABLE IF EXISTS `orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `orders` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `payment_intent_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `stripe_charge_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `stripe_customer_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `event_id` bigint unsigned NOT NULL,
  `user_id` bigint unsigned DEFAULT NULL,
  `created_by_admin_id` bigint unsigned DEFAULT NULL,
  `staff_id` bigint unsigned DEFAULT NULL COMMENT 'Scanner device/staff member who processed this POS transaction',
  `session_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order_reference` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `customer_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `customer_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `customer_phone` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `admin_notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `notes` text COLLATE utf8mb4_unicode_ci,
  `total_amount` decimal(10,2) NOT NULL,
  `balance_due` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT 'Remaining balance for deposits (0 for full payments)',
  `reserved_until` timestamp NULL DEFAULT NULL COMMENT 'Expiry timestamp for reserved orders (null for non-reserves)',
  `has_been_reseated` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'True if this order has been reseated at least once',
  `reseat_count` int unsigned NOT NULL DEFAULT '0' COMMENT 'Number of times this order has been reseated',
  `coupon_id` bigint unsigned DEFAULT NULL COMMENT 'Which coupon was used for this order',
  `discount_applied` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT 'Total discount amount applied',
  `original_total` decimal(10,2) DEFAULT NULL COMMENT 'Order total before discount (for analytics, refunds)',
  `idempotency_key` varchar(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `payment_status` enum('paid','deposit_paid','reserved','pending','refunded') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'paid' COMMENT 'Payment status for order lifecycle tracking',
  `payment_method` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_verified` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Indicates if payment was verified by staff (especially for cash)',
  `payment_mode` enum('immediate','cash','invoice','comp','shadow_sold') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'immediate',
  `revolut_payment_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `revolut_order_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `revolut_status` enum('pending','processing','completed','failed','declined','cancelled','refunded') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `revolut_payment_completed_at` timestamp NULL DEFAULT NULL,
  `payment_reference` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `include_booking_fee` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Whether booking fee was included in this order',
  `include_tax` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Whether tax was included in this order',
  `confirmed_by_admin_id` bigint unsigned DEFAULT NULL,
  `confirmed_at` timestamp NULL DEFAULT NULL,
  `confirmation_email_sent` tinyint(1) NOT NULL DEFAULT '0',
  `confirmation_email_sent_at` timestamp NULL DEFAULT NULL,
  `confirmation_email_opened_at` timestamp NULL DEFAULT NULL,
  `confirmation_email_tracking_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `tickets_generated` tinyint(1) NOT NULL DEFAULT '0',
  `tickets_generated_at` timestamp NULL DEFAULT NULL,
  `tickets_pdf_path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `tickets_pdf_size_kb` int DEFAULT NULL,
  `wallet_pass_available` tinyint(1) NOT NULL DEFAULT '0',
  `wallet_pass_url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `data_retention_until` timestamp NULL DEFAULT NULL COMMENT 'Date when this record should be anonymized/deleted per GDPR',
  `is_anonymized` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Whether personal data has been anonymized',
  `anonymized_at` timestamp NULL DEFAULT NULL COMMENT 'When the record was anonymized',
  `anonymized_reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Reason for anonymization (e.g., retention_policy, user_request)',
  PRIMARY KEY (`id`),
  UNIQUE KEY `orders_idempotency_key_unique` (`idempotency_key`),
  KEY `orders_event_id_index` (`event_id`),
  KEY `orders_user_id_index` (`user_id`),
  KEY `orders_status_index` (`status`),
  KEY `orders_customer_email_index` (`customer_email`),
  KEY `orders_revolut_payment_id_index` (`revolut_payment_id`),
  KEY `orders_revolut_order_id_index` (`revolut_order_id`),
  KEY `idx_orders_created_at` (`created_at`),
  KEY `orders_payment_intent_id_index` (`payment_intent_id`),
  KEY `orders_stripe_charge_id_index` (`stripe_charge_id`),
  KEY `orders_payment_status_index` (`payment_status`),
  KEY `orders_stripe_customer_id_index` (`stripe_customer_id`),
  KEY `orders_data_retention_until_index` (`data_retention_until`),
  KEY `orders_is_anonymized_data_retention_until_index` (`is_anonymized`,`data_retention_until`),
  KEY `orders_created_by_admin_id_foreign` (`created_by_admin_id`),
  KEY `orders_payment_mode_index` (`payment_mode`),
  KEY `orders_confirmation_email_sent_index` (`confirmation_email_sent`),
  KEY `orders_tickets_generated_index` (`tickets_generated`),
  KEY `orders_confirmation_email_tracking_id_index` (`confirmation_email_tracking_id`),
  KEY `orders_confirmed_by_admin_id_foreign` (`confirmed_by_admin_id`),
  KEY `idx_coupon` (`coupon_id`),
  KEY `orders_staff_id_foreign` (`staff_id`),
  KEY `orders_order_reference_index` (`order_reference`),
  KEY `orders_has_been_reseated_index` (`has_been_reseated`),
  CONSTRAINT `orders_confirmed_by_admin_id_foreign` FOREIGN KEY (`confirmed_by_admin_id`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `orders_coupon_id_foreign` FOREIGN KEY (`coupon_id`) REFERENCES `coupons` (`id`) ON DELETE SET NULL,
  CONSTRAINT `orders_created_by_admin_id_foreign` FOREIGN KEY (`created_by_admin_id`) REFERENCES `admins` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `orders`
--

LOCK TABLES `orders` WRITE;
/*!40000 ALTER TABLE `orders` DISABLE KEYS */;
INSERT INTO `orders` VALUES (1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'JOHN SMITH','john.smith@test.com','+1234567890',NULL,NULL,300.00,0.00,NULL,0,0,NULL,0.00,NULL,NULL,'confirmed','',NULL,0,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,'2025-11-24 21:34:01','2025-11-24 21:34:01',NULL,0,NULL,NULL),(2,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,'Test Scanner Customer','scanner.test@showprima.com','+1-555-0100',NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,NULL,'confirmed','paid','test',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2025-11-24 21:57:52',0,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,'2025-11-24 21:57:52','2025-11-24 21:57:52',NULL,0,NULL,NULL),(3,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764598893721_3hra3340i',NULL,NULL,NULL,NULL,NULL,NULL,150.00,0.00,NULL,0,0,NULL,0.00,NULL,'f423c198-9835-4012-9afc-29e85d313802','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-01 14:21:36','tickets/order_3_20251201142136.pdf',46,0,NULL,'2025-12-01 14:21:36','2025-12-01 14:21:36',NULL,0,NULL,NULL),(4,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764600703291_5tlu23nuc',NULL,NULL,NULL,NULL,NULL,NULL,150.00,0.00,NULL,0,0,NULL,0.00,NULL,'fff4f5ec-e585-4a72-b7a4-a55af0213d5d','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-01 14:51:45','tickets/order_4_20251201145145.pdf',46,0,NULL,'2025-12-01 14:51:45','2025-12-01 14:51:45',NULL,0,NULL,NULL),(5,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764601180632_jdixpwkhr',NULL,NULL,NULL,NULL,NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'0368fa8f-5a1e-4ac2-9fd8-ce96f8ca5d1b','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-01 14:59:42','tickets/order_5_20251201145942.pdf',44,0,NULL,'2025-12-01 14:59:42','2025-12-01 14:59:42',NULL,0,NULL,NULL),(6,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764602599063_tw8pcaru0',NULL,NULL,NULL,NULL,NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'821fc30f-b9ca-4f07-95f4-dcc0cf196588','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-01 15:23:22','tickets/order_6_20251201152322.pdf',42,0,NULL,'2025-12-01 15:23:22','2025-12-01 15:23:22',NULL,0,NULL,NULL),(7,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764603624060_ojtxvycx4',NULL,'Test NAme',NULL,NULL,NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'2686ec12-b41e-47c6-a694-bf233c8dd457','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-01 15:40:30','tickets/order_7_20251201154030.pdf',42,0,NULL,'2025-12-01 15:40:29','2025-12-01 15:40:30',NULL,0,NULL,NULL),(8,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764604523751_x2vq1q3s5',NULL,'A test Name',NULL,NULL,NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'e88f48fb-d978-4b21-a7cb-03deb6369349','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-01 15:55:33','tickets/order_8_20251201155533.pdf',42,0,NULL,'2025-12-01 15:55:33','2025-12-01 15:55:33',NULL,0,NULL,NULL),(9,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764606435361_p7lz0kg49',NULL,'Test Name 3',NULL,NULL,NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'fce1effa-0ce6-4b28-be11-6bf2cc8cb9a5','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-01 16:27:24','tickets/order_9_20251201162724.pdf',42,0,NULL,'2025-12-01 16:27:23','2025-12-01 16:27:24',NULL,0,NULL,NULL),(10,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764607285827_1vtdw9psl',NULL,'Test Name 4',NULL,NULL,NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'b5518f2b-d09c-441b-9fb1-8126529fa313','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-01 16:41:29','tickets/order_10_20251201164129.pdf',42,0,NULL,'2025-12-01 16:41:29','2025-12-01 16:41:29',NULL,0,NULL,NULL),(11,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764607311760_qepztdazc',NULL,'Payment 5',NULL,NULL,NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'e3494194-d712-4cd9-8a4e-8aebbd9e4731','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-01 16:41:57','tickets/order_11_20251201164157.pdf',42,0,NULL,'2025-12-01 16:41:57','2025-12-01 16:41:57',NULL,0,NULL,NULL),(12,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764607815256_aoekvdy17','ORD-W4TVPGNX','Order 6',NULL,NULL,NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'21215a8d-10ee-4660-8b43-f09c3bf32a49','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-01 16:55:56','tickets/order_12_20251201165556.pdf',42,0,NULL,'2025-12-01 16:55:56','2025-12-01 16:55:56',NULL,0,NULL,NULL),(13,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764609238496_banzi3yx6','ORD-OB2F0SYG','Order 6',NULL,NULL,NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'1860819e-fa22-4181-87e4-2a7d12fc9b41','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-01 17:14:02','tickets/order_13_20251201171402.pdf',42,0,NULL,'2025-12-01 17:14:02','2025-12-01 17:14:02',NULL,0,NULL,NULL),(14,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764610913555_afwz2kkic','ORD-IQ6JQIMP',NULL,NULL,NULL,NULL,NULL,50.00,0.00,NULL,0,0,NULL,0.00,NULL,'66b0faf0-dd4b-4fed-85d0-d03133a4888f','completed','paid','debit_card',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-01 17:41:58','tickets/order_14_20251201174157.pdf',41,0,NULL,'2025-12-01 17:41:57','2025-12-01 17:41:58',NULL,0,NULL,NULL),(15,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764611307765_idm8x6ypu','ORD-JWSKXIQF','CHARLIE MIDDLETON',NULL,NULL,NULL,NULL,50.00,0.00,NULL,0,0,NULL,0.00,NULL,'badb9f2e-31a4-49c9-9371-80c2c807d639','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-01 17:48:35','tickets/order_15_20251201174835.pdf',41,0,NULL,'2025-12-01 17:48:34','2025-12-01 17:48:35',NULL,0,NULL,NULL),(16,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764612422141_n7t7ca4fx','ORD-XQA2SPNR',NULL,NULL,NULL,NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'001e0263-40f7-488d-a523-2ad754e5a156','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-01 18:07:04','tickets/order_16_20251201180704.pdf',42,0,NULL,'2025-12-01 18:07:03','2025-12-01 18:07:04',NULL,0,NULL,NULL),(17,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764614709410_j3expnqpk','ORD-H06WVD3Y','Test Name',NULL,NULL,NULL,NULL,150.00,0.00,NULL,0,0,NULL,0.00,NULL,'db4df183-3890-4556-ab50-751aabeb18c6','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-01 18:45:14','tickets/order_17_20251201184514.pdf',43,0,NULL,'2025-12-01 18:45:14','2025-12-01 18:45:14',NULL,0,NULL,NULL),(18,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764680092697_t3jdg0pie','ORD-PW3TP35X','New Cash Order',NULL,NULL,NULL,NULL,150.00,0.00,NULL,0,0,NULL,0.00,NULL,'1645cc87-8e00-41f6-95a0-178c4f91fb0a','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-02 12:55:00','tickets/order_18_20251202125500.pdf',43,0,NULL,'2025-12-02 12:55:00','2025-12-02 12:55:00',NULL,0,NULL,NULL),(19,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764680538199_ku733dpdx','ORD-41EYF4R4','Expired?',NULL,NULL,NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'7bda426e-9986-41ba-9c25-55fca51809e6','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-02 13:02:52','tickets/order_19_20251202130252.pdf',41,0,NULL,'2025-12-02 13:02:52','2025-12-02 13:02:52',NULL,0,NULL,NULL),(20,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764683901063_fp8i0parz','ORD-UF2Z9SIY','CHARLIE MIDDLETON','charlie@09-07.xyz','0780430615',NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'5d91c941-e610-408e-a2bf-9c124e1b3007','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-02 13:58:26','tickets/order_20_20251202135826.pdf',41,0,NULL,'2025-12-02 13:58:26','2025-12-02 13:58:26',NULL,0,NULL,NULL),(21,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764686128647_7ir40hs0o','ORD-Z0ZRNQ2E','CHARLIE MIDDLETON','charlie@09-07.xyz','0780430615',NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'f06e70ea-9d77-4178-a742-c5262d9ceb90','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-02 15:30:30','tickets/order_21_20251202153030.pdf',42,0,NULL,'2025-12-02 14:36:58','2025-12-02 15:30:30',NULL,0,NULL,NULL),(22,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764686244230_jrqns7r4m','ORD-AE6S2YVD','CHARLIE MIDDLETON','charlie@09-07.xyz','0780430615',NULL,NULL,50.00,0.00,NULL,0,0,NULL,0.00,NULL,'12a1707e-b531-44b7-9200-33647c79023d','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-02 14:37:30','tickets/order_22_20251202143730.pdf',41,0,NULL,'2025-12-02 14:37:29','2025-12-02 14:37:30',NULL,0,NULL,NULL),(23,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764686260026_5pjgcvt72','ORD-RJ4CHWNW','CHARLIE MIDDLETON','charlie@09-07.xyz','0780430615',NULL,NULL,50.00,0.00,NULL,0,0,NULL,0.00,NULL,'29133ceb-16d2-403b-a1dd-47cce591aaf5','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-02 14:37:55','tickets/order_23_20251202143755.pdf',41,0,NULL,'2025-12-02 14:37:54','2025-12-02 14:37:55',NULL,0,NULL,NULL),(24,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764686413283_fg8i88lvj','ORD-DQYXKDZY','CHARLIE MIDDLETON','charlie@09-07.xyz','0780430615',NULL,NULL,50.00,0.00,NULL,0,0,NULL,0.00,NULL,'444c5511-3800-4979-838f-3cc71cf4d7eb','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-02 14:40:21','tickets/order_24_20251202144021.pdf',41,0,NULL,'2025-12-02 14:40:21','2025-12-02 14:40:21',NULL,0,NULL,NULL),(25,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764686739528_vxgcx4swn','ORD-KRKOAM1R','CHARLIE MIDDLETON','charlie@09-07.xyz','0780430615',NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'50840238-6681-4ff2-b360-392625e4c115','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-02 14:45:44','tickets/order_25_20251202144544.pdf',41,0,NULL,'2025-12-02 14:45:44','2025-12-02 14:45:44',NULL,0,NULL,NULL),(26,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764690985160_f1o82impn','ORD-FYJ0LHO9','CHARLIE MIDDLETON','charlie@09-07.xyz','0780430615',NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'1e89dc32-637b-4b7b-975e-424eeb08f646','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-02 15:56:31','tickets/order_26_20251202155631.pdf',42,0,NULL,'2025-12-02 15:56:31','2025-12-02 15:56:31',NULL,0,NULL,NULL),(27,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764694464857_17nvkwh0o','ORD-2DVQ6TZC','CHARLIE MIDDLETON','charlie@09-07.xyz','0780430615',NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'47c543de-f828-46e9-8706-6d18123b421d','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-02 16:54:29','tickets/order_27_20251202165429.pdf',42,0,NULL,'2025-12-02 16:54:29','2025-12-02 16:54:29',NULL,0,NULL,NULL),(28,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764694473972_rta9xztt2','ORD-UHN31HDX','CHARLIE MIDDLETON','charlie@09-07.xyz','0780430615',NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'42f7abe0-0ff5-4066-9792-fda3274c1743','completed','paid','credit_card',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-02 16:54:45','tickets/order_28_20251202165445.pdf',42,0,NULL,'2025-12-02 16:54:45','2025-12-02 16:54:45',NULL,0,NULL,NULL),(29,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764694494807_g44kpgdlw','ORD-W1HW5N3X','CHARLIE MIDDLETON','charlie@09-07.xyz','0780430615',NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'2f500913-c8c3-4650-b5fd-0e0df568e1c5','completed','paid','debit_card',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-02 16:55:02','tickets/order_29_20251202165502.pdf',42,0,NULL,'2025-12-02 16:55:02','2025-12-02 16:55:02',NULL,0,NULL,NULL),(30,NULL,NULL,NULL,23,NULL,NULL,NULL,'pos_1764695160543_63m2ewvsm','ORD-8RZUBPU8','CHARLIE MIDDLETON','charlie@09-07.xyz','0780430615',NULL,NULL,200.00,0.00,NULL,0,0,NULL,0.00,NULL,'7233bccf-9d9c-4fb1-9204-b46207296749','completed','paid','split',0,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-02 17:18:00','tickets/order_30_20251202171800.pdf',44,0,NULL,'2025-12-02 17:17:58','2025-12-02 17:18:00',NULL,0,NULL,NULL),(31,NULL,NULL,NULL,23,NULL,NULL,NULL,'pos_1764696137622_bkdhg94uh','ORD-ALXWXDCI','CHARLIE MIDDLETON','charlie@09-07.xyz','0780430615',NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'62cfa826-57c1-4643-827b-dd21c735fefe','completed','paid','split',0,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-02 17:22:34','tickets/order_31_20251202172234.pdf',42,0,NULL,'2025-12-02 17:22:31','2025-12-02 17:22:34',NULL,0,NULL,NULL),(32,NULL,NULL,NULL,23,NULL,NULL,NULL,'pos_1764696395212_kh9ermuvz','ORD-N3DFO9FK','CHARLIE MIDDLETON','charlie@09-07.xyz','0780430615',NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'0caa5c30-3c70-4dbd-9b3d-491ef6416a76','completed','paid','split',0,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-02 17:27:21','tickets/order_32_20251202172721.pdf',42,0,NULL,'2025-12-02 17:27:19','2025-12-02 17:27:21',NULL,0,NULL,NULL),(33,NULL,NULL,NULL,23,NULL,NULL,NULL,'pos_1764696582568_fyu0fk2k8','ORD-MZXY70LH','CHARLIE MIDDLETON','charlie@09-07.xyz','0780430615',NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'4282ceb4-300f-4ce3-8520-713f7f070766','completed','paid','split',0,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-02 17:29:52','tickets/order_33_20251202172952.pdf',42,0,NULL,'2025-12-02 17:29:50','2025-12-02 17:29:52',NULL,0,NULL,NULL),(34,NULL,NULL,NULL,23,NULL,NULL,NULL,'pos_1764696711899_ymyyjkwjr','ORD-E2FQINYS','CHARLIE MIDDLETON','charlie@09-07.xyz','0780430615',NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'4d39b975-ab6e-439a-b243-bc44729f9370','completed','paid','split',0,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-02 17:32:05','tickets/order_34_20251202173205.pdf',42,0,NULL,'2025-12-02 17:32:03','2025-12-02 17:32:05',NULL,0,NULL,NULL),(35,NULL,NULL,NULL,23,NULL,NULL,NULL,'pos_1764696867897_xr2vgcoqm','ORD-QNKZYRKB','CHARLIE MIDDLETON','charlie@09-07.xyz','0780430615',NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'a9b8f916-d94a-481d-8755-5603679e9f5b','completed','paid','deposit',0,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-02 17:34:45','tickets/order_35_20251202173445.pdf',42,0,NULL,'2025-12-02 17:34:45','2025-12-02 17:34:45',NULL,0,NULL,NULL),(36,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764767650301_ezzo17r7b','ORD-VW5IZVQD','CHARLIE MIDDLETON','charlie@09-07.xyz','0780430615',NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'2bf2a1f6-c457-4114-849a-10271423771f','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-03 13:14:14','tickets/order_36_20251203131414.pdf',44,0,NULL,'2025-12-03 13:14:14','2025-12-03 13:14:14',NULL,0,NULL,NULL),(37,NULL,NULL,NULL,23,NULL,NULL,1,'pos_1764768014568_qrw0rhvrv','ORD-WY4TSGNE','CHARLIE MIDDLETON','charlie@09-07.xyz','0780430615',NULL,NULL,50.00,0.00,NULL,0,0,NULL,0.00,NULL,'b09eb073-c381-4eb8-afa6-01ed7348b82d','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-03 13:20:22','tickets/order_37_20251203132022.pdf',42,0,NULL,'2025-12-03 13:20:21','2025-12-03 13:20:22',NULL,0,NULL,NULL),(38,NULL,NULL,NULL,23,NULL,2,1,'pos_1764768245656_a5xkaxkza','ORD-KUZURSTR','CHARLIE MIDDLETON','charlie@09-07.xyz','0780430615',NULL,NULL,50.00,0.00,NULL,0,0,NULL,0.00,NULL,'34280a79-393f-4d75-aeb8-d11e72cc6dc4','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-03 13:24:11','tickets/order_38_20251203132411.pdf',42,0,NULL,'2025-12-03 13:24:10','2025-12-03 13:24:11',NULL,0,NULL,NULL),(39,NULL,NULL,NULL,23,NULL,2,2,'pos_1764798853755_xiv5xtu44','ORD-2YZKIG4V','CHARLIE MIDDLETON','charlie@09-07.xyz','0780430615',NULL,NULL,100.00,0.00,NULL,0,0,NULL,0.00,NULL,'daadc665-f6f4-4971-b5e0-b660a4a45f35','completed','paid','cash',1,'immediate',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'2025-12-03 21:54:18','tickets/order_39_20251203215418.pdf',42,0,NULL,'2025-12-03 21:54:17','2025-12-03 21:54:18',NULL,0,NULL,NULL);
/*!40000 ALTER TABLE `orders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ownership_transfer_requests`
--

DROP TABLE IF EXISTS `ownership_transfer_requests`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ownership_transfer_requests` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `ticket_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `order_id` bigint unsigned NOT NULL,
  `event_id` bigint unsigned NOT NULL,
  `current_owner_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `current_owner_email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `new_owner_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `new_owner_email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `reason` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` enum('pending','approved','rejected','completed','cancelled') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `reviewed_by` bigint unsigned DEFAULT NULL,
  `reviewed_at` timestamp NULL DEFAULT NULL,
  `rejection_reason` text COLLATE utf8mb4_unicode_ci,
  `seat_number` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `event_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ownership_transfer_requests_reviewed_by_foreign` (`reviewed_by`),
  KEY `ownership_transfer_requests_ticket_id_index` (`ticket_id`),
  KEY `ownership_transfer_requests_order_id_index` (`order_id`),
  KEY `ownership_transfer_requests_event_id_index` (`event_id`),
  KEY `ownership_transfer_requests_current_owner_email_index` (`current_owner_email`),
  KEY `ownership_transfer_requests_new_owner_email_index` (`new_owner_email`),
  KEY `ownership_transfer_requests_status_index` (`status`),
  CONSTRAINT `ownership_transfer_requests_event_id_foreign` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`) ON DELETE CASCADE,
  CONSTRAINT `ownership_transfer_requests_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `ownership_transfer_requests_reviewed_by_foreign` FOREIGN KEY (`reviewed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ownership_transfer_requests`
--

LOCK TABLES `ownership_transfer_requests` WRITE;
/*!40000 ALTER TABLE `ownership_transfer_requests` DISABLE KEYS */;
/*!40000 ALTER TABLE `ownership_transfer_requests` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `password_resets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `password_resets` (
  `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  KEY `password_resets_email_index` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `password_resets` WRITE;
/*!40000 ALTER TABLE `password_resets` DISABLE KEYS */;
/*!40000 ALTER TABLE `password_resets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `payment_audit_logs`
--

DROP TABLE IF EXISTS `payment_audit_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `payment_audit_logs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `payment_transaction_id` bigint unsigned DEFAULT NULL,
  `order_id` bigint unsigned DEFAULT NULL,
  `user_id` bigint unsigned DEFAULT NULL,
  `action` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `old_status` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `new_status` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `metadata` json DEFAULT NULL,
  `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_agent` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `source` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trigger_event_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `action_at` timestamp NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_audit_payment_id` (`payment_transaction_id`),
  KEY `idx_audit_order_id` (`order_id`),
  KEY `idx_audit_user_id` (`user_id`),
  KEY `idx_audit_action` (`action`),
  KEY `idx_audit_new_status` (`new_status`),
  KEY `idx_audit_action_at` (`action_at`),
  KEY `idx_audit_payment_timeline` (`payment_transaction_id`,`action_at`),
  KEY `idx_audit_order_timeline` (`order_id`,`action_at`),
  CONSTRAINT `payment_audit_logs_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `payment_audit_logs_payment_transaction_id_foreign` FOREIGN KEY (`payment_transaction_id`) REFERENCES `payment_transactions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `payment_audit_logs_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_audit_logs`
--

LOCK TABLES `payment_audit_logs` WRITE;
/*!40000 ALTER TABLE `payment_audit_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `payment_audit_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `payment_reconciliations`
--

DROP TABLE IF EXISTS `payment_reconciliations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `payment_reconciliations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `reconciliation_date` date NOT NULL COMMENT 'Date being reconciled',
  `payment_gateway` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Payment gateway (stripe, paypal, etc.)',
  `total_database_transactions` int NOT NULL DEFAULT '0' COMMENT 'Total transactions in database',
  `total_database_amount` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT 'Total amount in database',
  `total_gateway_transactions` int NOT NULL DEFAULT '0' COMMENT 'Total transactions reported by gateway',
  `total_gateway_amount` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT 'Total amount reported by gateway',
  `transaction_count_difference` int NOT NULL DEFAULT '0' COMMENT 'Difference in transaction counts',
  `amount_difference` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT 'Difference in amounts (database - gateway)',
  `discrepancies_found` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Whether discrepancies were found',
  `discrepancies_details` json DEFAULT NULL COMMENT 'JSON array of specific discrepancies',
  `status` enum('pending','processing','completed','failed','requires_review') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `report_file_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Path to exported reconciliation report',
  `processed_by` bigint unsigned DEFAULT NULL COMMENT 'User ID who processed',
  `processed_at` timestamp NULL DEFAULT NULL,
  `notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `payment_reconciliations_reconciliation_date_index` (`reconciliation_date`),
  KEY `payment_reconciliations_payment_gateway_index` (`payment_gateway`),
  KEY `payment_reconciliations_status_index` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_reconciliations`
--

LOCK TABLES `payment_reconciliations` WRITE;
/*!40000 ALTER TABLE `payment_reconciliations` DISABLE KEYS */;
/*!40000 ALTER TABLE `payment_reconciliations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `payment_transactions`
--

DROP TABLE IF EXISTS `payment_transactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `payment_transactions` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint unsigned NOT NULL,
  `payment_gateway` enum('stripe','paypal','revolut','cash','bank_transfer','comp') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Payment gateway used',
  `transaction_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'External payment gateway transaction ID',
  `amount` decimal(10,2) NOT NULL COMMENT 'Transaction amount',
  `currency` varchar(3) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'EUR' COMMENT 'ISO 4217 currency code',
  `status` enum('pending','processing','completed','failed','refunded','partially_refunded') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `metadata` json DEFAULT NULL COMMENT 'Additional transaction metadata',
  `initiated_at` timestamp NULL DEFAULT NULL COMMENT 'When payment was initiated',
  `completed_at` timestamp NULL DEFAULT NULL COMMENT 'When payment completed successfully',
  `failed_at` timestamp NULL DEFAULT NULL COMMENT 'When payment failed',
  `failure_reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'Reason for payment failure',
  `webhook_received_at` timestamp NULL DEFAULT NULL COMMENT 'When webhook notification was received',
  `refund_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'External refund transaction ID',
  `refunded_at` timestamp NULL DEFAULT NULL COMMENT 'When refund was processed',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `data_retention_until` timestamp NULL DEFAULT NULL COMMENT 'Date when this record should be anonymized/deleted per GDPR',
  `is_anonymized` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Whether personal data has been anonymized',
  `anonymized_at` timestamp NULL DEFAULT NULL COMMENT 'When the record was anonymized',
  `anonymized_reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Reason for anonymization (e.g., retention_policy, user_request)',
  PRIMARY KEY (`id`),
  UNIQUE KEY `payment_transactions_transaction_id_unique` (`transaction_id`),
  KEY `payment_transactions_order_id_index` (`order_id`),
  KEY `payment_transactions_payment_gateway_index` (`payment_gateway`),
  KEY `payment_transactions_status_index` (`status`),
  KEY `payment_transactions_transaction_id_index` (`transaction_id`),
  KEY `payment_transactions_initiated_at_index` (`initiated_at`),
  KEY `payment_transactions_data_retention_until_index` (`data_retention_until`),
  KEY `payment_transactions_is_anonymized_data_retention_until_index` (`is_anonymized`,`data_retention_until`),
  CONSTRAINT `payment_transactions_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_transactions`
--

LOCK TABLES `payment_transactions` WRITE;
/*!40000 ALTER TABLE `payment_transactions` DISABLE KEYS */;
/*!40000 ALTER TABLE `payment_transactions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `permissions`
--

DROP TABLE IF EXISTS `permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `permissions` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `admin_id` int DEFAULT NULL,
  `value` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `parent` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `permissions`
--

LOCK TABLES `permissions` WRITE;
/*!40000 ALTER TABLE `permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `permissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `photos`
--

DROP TABLE IF EXISTS `photos`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `photos` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `file_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint unsigned NOT NULL,
  `status` tinyint NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `photos_user_id_foreign` (`user_id`),
  CONSTRAINT `photos_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `photos`
--

LOCK TABLES `photos` WRITE;
/*!40000 ALTER TABLE `photos` DISABLE KEYS */;
/*!40000 ALTER TABLE `photos` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `posts`
--

DROP TABLE IF EXISTS `posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `posts` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'News/Announcement/Notification',
  `title` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'sample-blog.png',
  `body` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `footer` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` tinyint NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `posts`
--

LOCK TABLES `posts` WRITE;
/*!40000 ALTER TABLE `posts` DISABLE KEYS */;
/*!40000 ALTER TABLE `posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `price_tiers`
--

DROP TABLE IF EXISTS `price_tiers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `price_tiers` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `venue_template_id` bigint unsigned NOT NULL,
  `color` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
  `price` decimal(10,2) NOT NULL,
  `seat_prefix` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Optional prefix for seat names (e.g., VIP, BOOTH, VVIP)',
  `display_order` int NOT NULL DEFAULT '0',
  `display_in_legend` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_tier` (`venue_template_id`,`color`),
  KEY `idx_venue_template` (`venue_template_id`),
  CONSTRAINT `price_tiers_venue_template_id_foreign` FOREIGN KEY (`venue_template_id`) REFERENCES `venue_templates` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `price_tiers`
--

LOCK TABLES `price_tiers` WRITE;
/*!40000 ALTER TABLE `price_tiers` DISABLE KEYS */;
INSERT INTO `price_tiers` VALUES (1,1,'#4CAF50',50.00,NULL,1,1,'2025-11-30 18:14:59','2025-11-30 18:14:59');
/*!40000 ALTER TABLE `price_tiers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `qr_validations`
--

DROP TABLE IF EXISTS `qr_validations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `qr_validations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `ticket_id` bigint unsigned NOT NULL,
  `scanned_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `scanner_device` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `location` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_valid` tinyint(1) NOT NULL,
  `validation_result` json NOT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_ticket_scanned` (`ticket_id`,`scanned_at`),
  KEY `qr_validations_is_valid_index` (`is_valid`),
  CONSTRAINT `qr_validations_ticket_id_foreign` FOREIGN KEY (`ticket_id`) REFERENCES `tickets` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `qr_validations`
--

LOCK TABLES `qr_validations` WRITE;
/*!40000 ALTER TABLE `qr_validations` DISABLE KEYS */;
/*!40000 ALTER TABLE `qr_validations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `queue_merge_acts`
--

DROP TABLE IF EXISTS `queue_merge_acts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `queue_merge_acts` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `act1` bigint unsigned NOT NULL,
  `act2` bigint unsigned NOT NULL,
  `new_act_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `new_act_slug` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `queue_merge_acts`
--

LOCK TABLES `queue_merge_acts` WRITE;
/*!40000 ALTER TABLE `queue_merge_acts` DISABLE KEYS */;
/*!40000 ALTER TABLE `queue_merge_acts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `queue_monitor`
--

DROP TABLE IF EXISTS `queue_monitor`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `queue_monitor` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `job_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `job_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `queue` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` enum('pending','running','completed','failed','retrying') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `attempts` int NOT NULL DEFAULT '0',
  `max_retries` int NOT NULL DEFAULT '3',
  `payload` json DEFAULT NULL,
  `exception` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `exception_message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `started_at` timestamp NULL DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `failed_at` timestamp NULL DEFAULT NULL,
  `execution_time_ms` int DEFAULT NULL,
  `memory_peak` int DEFAULT NULL,
  `retry_at` timestamp NULL DEFAULT NULL,
  `retry_delay_seconds` int DEFAULT NULL,
  `retry_strategy` enum('fixed','exponential','custom') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exponential',
  `alert_sent` tinyint(1) NOT NULL DEFAULT '0',
  `alert_sent_at` timestamp NULL DEFAULT NULL,
  `metadata` json DEFAULT NULL,
  `correlation_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `batch_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `queue_monitor_job_id_index` (`job_id`),
  KEY `queue_monitor_job_name_index` (`job_name`),
  KEY `queue_monitor_queue_index` (`queue`),
  KEY `queue_monitor_status_index` (`status`),
  KEY `queue_monitor_created_at_index` (`created_at`),
  KEY `queue_monitor_failed_at_index` (`failed_at`),
  KEY `queue_monitor_status_queue_index` (`status`,`queue`),
  KEY `queue_monitor_job_name_status_index` (`job_name`,`status`),
  KEY `queue_monitor_correlation_id_index` (`correlation_id`),
  KEY `queue_monitor_batch_id_index` (`batch_id`)
) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `queue_monitor`
--

LOCK TABLES `queue_monitor` WRITE;
/*!40000 ALTER TABLE `queue_monitor` DISABLE KEYS */;
INSERT INTO `queue_monitor` VALUES (1,'7','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1601)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-01 15:46:31',NULL,42467328,'2025-12-01 15:47:01',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-01 15:46:31','2025-12-01 15:46:31'),(2,'10','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1735)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-01 16:01:37',NULL,42467328,'2025-12-01 16:02:07',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-01 16:01:37','2025-12-01 16:01:37'),(3,'13','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1864)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-01 16:33:26',NULL,42467328,'2025-12-01 16:33:56',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-01 16:33:26','2025-12-01 16:33:26'),(4,'41','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"default\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1664)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\MailManager))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/SendQueuedMailable.php(74): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\MailManager))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Mail\\SendQueuedMailable->handle(Object(Illuminate\\Mail\\MailManager))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#15 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#16 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(Illuminate\\Mail\\SendQueuedMailable), false)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Mail\\SendQueuedMailable))\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#39 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#41 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#42 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#45 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 16:53:58',NULL,42467328,'2025-12-02 16:54:28',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 16:53:57','2025-12-02 16:53:58'),(5,'42','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"default\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1712)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\MailManager))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/SendQueuedMailable.php(74): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\MailManager))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Mail\\SendQueuedMailable->handle(Object(Illuminate\\Mail\\MailManager))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#15 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#16 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(Illuminate\\Mail\\SendQueuedMailable), false)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Mail\\SendQueuedMailable))\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#39 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#41 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#42 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#45 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 16:53:58',NULL,42467328,'2025-12-02 16:54:28',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 16:53:58','2025-12-02 16:53:58'),(6,'43','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"default\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1755)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\MailManager))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/SendQueuedMailable.php(74): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\MailManager))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Mail\\SendQueuedMailable->handle(Object(Illuminate\\Mail\\MailManager))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#15 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#16 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(Illuminate\\Mail\\SendQueuedMailable), false)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Mail\\SendQueuedMailable))\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#39 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#41 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#42 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#45 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 16:53:58',NULL,42467328,'2025-12-02 16:54:28',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 16:53:58','2025-12-02 16:53:58'),(7,'44','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"default\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1798)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\MailManager))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/SendQueuedMailable.php(74): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\MailManager))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Mail\\SendQueuedMailable->handle(Object(Illuminate\\Mail\\MailManager))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#15 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#16 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(Illuminate\\Mail\\SendQueuedMailable), false)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Mail\\SendQueuedMailable))\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#39 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#41 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#42 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#45 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 16:53:58',NULL,42467328,'2025-12-02 16:54:28',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 16:53:58','2025-12-02 16:53:58'),(8,'45','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"default\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1841)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\MailManager))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/SendQueuedMailable.php(74): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\MailManager))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Mail\\SendQueuedMailable->handle(Object(Illuminate\\Mail\\MailManager))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#15 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#16 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(Illuminate\\Mail\\SendQueuedMailable), false)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(Illuminate\\Mail\\SendQueuedMailable))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Mail\\SendQueuedMailable))\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#39 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#41 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#42 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#45 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 16:53:58',NULL,42467328,'2025-12-02 16:54:28',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 16:53:58','2025-12-02 16:53:58'),(9,'67','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #3682)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:00:01',NULL,42467328,'2025-12-02 17:00:31',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:00:01','2025-12-02 17:00:01'),(10,'68','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #3725)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:00:01',NULL,42467328,'2025-12-02 17:00:31',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:00:01','2025-12-02 17:00:01'),(11,'69','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #3768)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:00:01',NULL,42467328,'2025-12-02 17:00:31',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:00:01','2025-12-02 17:00:01'),(12,'70','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #3811)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:00:01',NULL,42467328,'2025-12-02 17:00:31',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:00:01','2025-12-02 17:00:01'),(13,'71','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #3854)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:00:01',NULL,42467328,'2025-12-02 17:00:31',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:00:01','2025-12-02 17:00:01'),(14,'72','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #3897)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:00:01',NULL,42467328,'2025-12-02 17:00:31',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:00:01','2025-12-02 17:00:01'),(15,'73','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #3940)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:00:01',NULL,42467328,'2025-12-02 17:00:31',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:00:01','2025-12-02 17:00:01'),(16,'74','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #3983)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:00:01',NULL,42467328,'2025-12-02 17:00:31',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:00:01','2025-12-02 17:00:01'),(17,'75','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4026)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:00:01',NULL,42467328,'2025-12-02 17:00:31',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:00:01','2025-12-02 17:00:01'),(18,'76','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4069)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:00:01',NULL,42467328,'2025-12-02 17:00:31',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:00:01','2025-12-02 17:00:01'),(19,'77','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4112)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:00:01',NULL,42467328,'2025-12-02 17:00:31',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:00:01','2025-12-02 17:00:01'),(20,'78','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4155)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:00:01',NULL,42467328,'2025-12-02 17:00:31',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:00:01','2025-12-02 17:00:01'),(21,'79','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4198)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:00:01',NULL,42467328,'2025-12-02 17:00:31',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:00:01','2025-12-02 17:00:01'),(22,'80','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4241)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:00:01',NULL,42467328,'2025-12-02 17:00:31',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:00:01','2025-12-02 17:00:01'),(23,'81','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4284)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:00:01',NULL,42467328,'2025-12-02 17:00:31',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:00:01','2025-12-02 17:00:01'),(24,'82','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4327)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:00:01',NULL,42467328,'2025-12-02 17:00:31',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:00:01','2025-12-02 17:00:01'),(25,'83','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4370)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:00:01',NULL,42467328,'2025-12-02 17:00:31',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:00:01','2025-12-02 17:00:01'),(26,'86','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4413)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:00:31',NULL,42467328,'2025-12-02 17:01:01',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:00:31','2025-12-02 17:00:31'),(27,'87','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4456)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:00:49',NULL,42467328,'2025-12-02 17:01:19',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:00:49','2025-12-02 17:00:49'),(28,'88','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4499)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:01:04',NULL,42467328,'2025-12-02 17:01:34',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:01:04','2025-12-02 17:01:04'),(29,'91','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #4881)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:24:02',NULL,58212352,'2025-12-02 17:24:32',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:24:02','2025-12-02 17:24:02'),(30,'94','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #5035)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:28:36',NULL,58212352,'2025-12-02 17:29:06',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:28:36','2025-12-02 17:28:36'),(31,'97','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #5300)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:33:23',NULL,58212352,'2025-12-02 17:33:53',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:33:23','2025-12-02 17:33:23'),(32,'100','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #5454)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:35:54',NULL,60309504,'2025-12-02 17:36:24',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:35:54','2025-12-02 17:35:54'),(33,'103','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #5497)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:38:07',NULL,60309504,'2025-12-02 17:38:37',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:38:07','2025-12-02 17:38:07'),(34,'106','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #5540)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-02 17:40:46',NULL,60309504,'2025-12-02 17:41:16',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-02 17:40:46','2025-12-02 17:40:46'),(35,'115','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1549)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-03 16:49:25',NULL,40370176,'2025-12-03 16:49:55',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-03 16:49:25','2025-12-03 16:49:25'),(36,'116','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1597)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-03 16:49:25',NULL,40370176,'2025-12-03 16:49:55',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-03 16:49:25','2025-12-03 16:49:25'),(37,'117','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1640)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-03 16:49:25',NULL,40370176,'2025-12-03 16:49:55',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-03 16:49:25','2025-12-03 16:49:25'),(38,'124','Illuminate\\Queue\\Jobs\\DatabaseJob','default','retrying',1,3,'{\"queue\": \"tickets\", \"failed\": true, \"deleted\": true, \"released\": false, \"connectionName\": \"database\"}','#0 [internal function]: Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->{closure:Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream::initialize():153}(2, \'stream_socket_c...\', \'/Users/charlie/...\', 157)\n#1 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php(157): stream_socket_client(\'127.0.0.1:1025\', 0, \'\', 60.0, 4, Resource id #1389)\n#2 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(264): Symfony\\Component\\Mailer\\Transport\\Smtp\\Stream\\SocketStream->initialize()\n#3 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(199): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->start()\n#4 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/AbstractTransport.php(69): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->doSend(Object(Symfony\\Component\\Mailer\\SentMessage))\n#5 /Users/charlie/code/showprima/vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php(137): Symfony\\Component\\Mailer\\Transport\\AbstractTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#6 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(523): Symfony\\Component\\Mailer\\Transport\\Smtp\\SmtpTransport->send(Object(Symfony\\Component\\Mime\\Email), Object(Symfony\\Component\\Mailer\\DelayedEnvelope))\n#7 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(287): Illuminate\\Mail\\Mailer->sendSymfonyMessage(Object(Symfony\\Component\\Mime\\Email))\n#8 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(204): Illuminate\\Mail\\Mailer->send(\'emails.payment-...\', Array, Object(Closure))\n#9 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php(19): Illuminate\\Mail\\Mailable->{closure:Illuminate\\Mail\\Mailable::send():197}()\n#10 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailable.php(197): Illuminate\\Mail\\Mailable->withLocale(NULL, Object(Closure))\n#11 /Users/charlie/code/showprima/app/Mail/BaseMailable.php(76): Illuminate\\Mail\\Mailable->send(Object(Illuminate\\Mail\\Mailer))\n#12 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(309): App\\Mail\\BaseMailable->send(Object(Illuminate\\Mail\\Mailer))\n#13 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php(253): Illuminate\\Mail\\Mailer->sendMailable(Object(App\\Mail\\PaymentConfirmationMail))\n#14 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Mail/PendingMail.php(124): Illuminate\\Mail\\Mailer->send(Object(App\\Mail\\PaymentConfirmationMail))\n#15 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(141): Illuminate\\Mail\\PendingMail->send(Object(App\\Mail\\PaymentConfirmationMail))\n#16 /Users/charlie/code/showprima/app/Jobs/SendOrderConfirmationEmail.php(77): App\\Jobs\\SendOrderConfirmationEmail->handleModernSystem()\n#17 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Jobs\\SendOrderConfirmationEmail->handle()\n#18 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#19 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#20 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#21 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#22 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(128): Illuminate\\Container\\Container->call(Array)\n#23 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Bus\\Dispatcher->{closure:Illuminate\\Bus\\Dispatcher::dispatchNow():125}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#24 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#25 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Bus/Dispatcher.php(132): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#26 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(123): Illuminate\\Bus\\Dispatcher->dispatchNow(Object(App\\Jobs\\SendOrderConfirmationEmail), false)\n#27 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\\Queue\\CallQueuedHandler->{closure:Illuminate\\Queue\\CallQueuedHandler::dispatchThroughMiddleware():122}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#28 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\\Pipeline\\Pipeline->{closure:Illuminate\\Pipeline\\Pipeline::prepareDestination():139}(Object(App\\Jobs\\SendOrderConfirmationEmail))\n#29 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(122): Illuminate\\Pipeline\\Pipeline->then(Object(Closure))\n#30 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/CallQueuedHandler.php(70): Illuminate\\Queue\\CallQueuedHandler->dispatchThroughMiddleware(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(App\\Jobs\\SendOrderConfirmationEmail))\n#31 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php(98): Illuminate\\Queue\\CallQueuedHandler->call(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Array)\n#32 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(425): Illuminate\\Queue\\Jobs\\Job->fire()\n#33 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(375): Illuminate\\Queue\\Worker->process(\'database\', Object(Illuminate\\Queue\\Jobs\\DatabaseJob), Object(Illuminate\\Queue\\WorkerOptions))\n#34 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Worker.php(173): Illuminate\\Queue\\Worker->runJob(Object(Illuminate\\Queue\\Jobs\\DatabaseJob), \'database\', Object(Illuminate\\Queue\\WorkerOptions))\n#35 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(147): Illuminate\\Queue\\Worker->daemon(\'database\', \'critical,defaul...\', Object(Illuminate\\Queue\\WorkerOptions))\n#36 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Queue/Console/WorkCommand.php(130): Illuminate\\Queue\\Console\\WorkCommand->runWorker(\'database\', \'critical,defaul...\')\n#37 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Queue\\Console\\WorkCommand->handle()\n#38 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::{closure:Illuminate\\Container\\BoundMethod::call():35}()\n#39 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure(Object(Closure))\n#40 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod(Object(Illuminate\\Foundation\\Application), Array, Object(Closure))\n#41 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Container/Container.php(661): Illuminate\\Container\\BoundMethod::call(Object(Illuminate\\Foundation\\Application), Array, Array, NULL)\n#42 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(183): Illuminate\\Container\\Container->call(Array)\n#43 /Users/charlie/code/showprima/vendor/symfony/console/Command/Command.php(326): Illuminate\\Console\\Command->execute(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#44 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Command.php(152): Symfony\\Component\\Console\\Command\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Illuminate\\Console\\OutputStyle))\n#45 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(1070): Illuminate\\Console\\Command->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#46 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(324): Symfony\\Component\\Console\\Application->doRunCommand(Object(Illuminate\\Queue\\Console\\WorkCommand), Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#47 /Users/charlie/code/showprima/vendor/symfony/console/Application.php(175): Symfony\\Component\\Console\\Application->doRun(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#48 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Console/Application.php(102): Symfony\\Component\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#49 /Users/charlie/code/showprima/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(155): Illuminate\\Console\\Application->run(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#50 /Users/charlie/code/showprima/artisan(38): Illuminate\\Foundation\\Console\\Kernel->handle(Object(Symfony\\Component\\Console\\Input\\ArgvInput), Object(Symfony\\Component\\Console\\Output\\ConsoleOutput))\n#51 {main}','Connection could not be established with host \"127.0.0.1:1025\": stream_socket_client(): Unable to connect to 127.0.0.1:1025 (Connection refused)',NULL,NULL,'2025-12-03 22:00:21',NULL,42467328,'2025-12-03 22:00:51',30,'exponential',0,NULL,'[]',NULL,NULL,'2025-12-03 22:00:21','2025-12-03 22:00:21');
/*!40000 ALTER TABLE `queue_monitor` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `reseating_log`
--

DROP TABLE IF EXISTS `reseating_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `reseating_log` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint unsigned NOT NULL,
  `old_seats` json NOT NULL COMMENT 'Array of old seat IDs with details',
  `new_seats` json NOT NULL COMMENT 'Array of new seat IDs with details',
  `price_difference` decimal(10,2) NOT NULL COMMENT 'Positive = upgrade, negative = downgrade, zero = free swap',
  `adjustment_type` enum('upgrade','downgrade','none') COLLATE utf8mb4_unicode_ci NOT NULL,
  `reason` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Manager-provided reason for reseating',
  `staff_id` bigint unsigned NOT NULL COMMENT 'Staff who performed reseating',
  `manager_approval_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Manager approval JWT token',
  `charges_waived` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'True if manager waived upgrade charges',
  `reseated_at` timestamp NOT NULL COMMENT 'When reseating was completed',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `reseating_log_staff_id_foreign` (`staff_id`),
  KEY `reseating_log_reseated_at_index` (`reseated_at`),
  KEY `reseating_log_order_id_reseated_at_index` (`order_id`,`reseated_at`),
  KEY `reseating_log_order_id_index` (`order_id`),
  KEY `reseating_log_adjustment_type_index` (`adjustment_type`),
  CONSTRAINT `reseating_log_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `reseating_log_staff_id_foreign` FOREIGN KEY (`staff_id`) REFERENCES `admins` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reseating_log`
--

LOCK TABLES `reseating_log` WRITE;
/*!40000 ALTER TABLE `reseating_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `reseating_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `scanner_devices`
--

DROP TABLE IF EXISTS `scanner_devices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `scanner_devices` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `device_uuid` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'iOS identifierForVendor (UUID v4 format)',
  `device_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Human-readable device name (e.g., "iPhone 12 Pro")',
  `device_info` json DEFAULT NULL COMMENT 'Device fingerprinting info (user agent, screen, timezone, etc.)',
  `scanner_name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Human-readable name (e.g., "Gate A Entrance")',
  `nickname` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `current_operator` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `operator_updated_at` timestamp NULL DEFAULT NULL,
  `operator_history` json DEFAULT NULL,
  `pin_code_hash` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Bcrypt hash of 4-6 digit PIN (NEVER plain text)',
  `staff_id` bigint unsigned DEFAULT NULL COMMENT 'FK to admins.id (optional staff member assignment)',
  `zone_id` bigint unsigned DEFAULT NULL COMMENT 'FK to scanner_zones.id (nullable for backward compatibility)',
  `is_active` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Active status (true=active, false=deactivated)',
  `deactivated_at` timestamp NULL DEFAULT NULL COMMENT 'When device was deactivated',
  `deactivation_reason` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Reason for deactivation (e.g., "Device lost/stolen")',
  `last_used_at` timestamp NULL DEFAULT NULL COMMENT 'Last successful scan (updated on every ticket scan)',
  `first_seen_at` timestamp NULL DEFAULT NULL COMMENT 'When device first logged in to zone',
  `last_seen_at` timestamp NULL DEFAULT NULL COMMENT 'Last activity timestamp (updated on each scan)',
  `total_scans` int NOT NULL DEFAULT '0' COMMENT 'Total number of tickets scanned by this device',
  `is_flagged` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Device flagged for suspicious activity',
  `flag_reason` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Reason for flagging (e.g., "Idle too long", "Suspicious scan rate")',
  `failed_login_attempts` int NOT NULL DEFAULT '0' COMMENT 'Count of failed login attempts (reset on success)',
  `last_failed_login_at` timestamp NULL DEFAULT NULL COMMENT 'Timestamp of last failed login',
  `notes` text COLLATE utf8mb4_unicode_ci COMMENT 'Admin notes about device (e.g., "Main entrance scanner, iPhone 13")',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `scanner_devices_device_uuid_unique` (`device_uuid`),
  KEY `idx_device_uuid` (`device_uuid`),
  KEY `idx_is_active` (`is_active`),
  KEY `idx_staff_id` (`staff_id`),
  KEY `idx_last_used_at` (`last_used_at`),
  KEY `idx_scanner_devices_zone_id` (`zone_id`),
  KEY `idx_scanner_devices_is_flagged` (`is_flagged`),
  KEY `idx_scanner_devices_last_seen_at` (`last_seen_at`),
  CONSTRAINT `fk_scanner_devices_staff_id` FOREIGN KEY (`staff_id`) REFERENCES `admins` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_scanner_devices_zone_id` FOREIGN KEY (`zone_id`) REFERENCES `scanner_zones` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Scanner device registrations for ticket scanning auth';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `scanner_devices`
--

LOCK TABLES `scanner_devices` WRITE;
/*!40000 ALTER TABLE `scanner_devices` DISABLE KEYS */;
INSERT INTO `scanner_devices` VALUES (1,'550e8400-e29b-41d4-a716-446655440000','Static Test Scanner','{\"screen\": \"393x852\", \"language\": \"en-US\", \"platform\": \"iOS\", \"timezone\": \"America/Los_Angeles\", \"user_agent\": \"Mozilla/5.0\"}','Doug McScanner','Charlie Phone','Quinn QA','2025-11-27 14:06:09','[]','',NULL,1,1,NULL,NULL,NULL,'2025-11-23 20:40:20','2025-11-27 14:06:09',0,0,NULL,0,NULL,NULL,'2025-11-23 20:40:20','2025-11-27 14:06:09'),(2,'2700e514-2700-4270-019a-019ab7006205','iPhone','{\"screen\": \"430x932\", \"language\": \"en-GB\", \"platform\": \"iPhone\", \"timezone\": \"Europe/London\", \"user_agent\": \"Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1\"}','iPhone',NULL,NULL,NULL,NULL,'',NULL,1,1,NULL,NULL,NULL,'2025-11-24 18:07:24','2025-11-25 13:06:45',0,0,NULL,0,NULL,NULL,'2025-11-24 18:07:24','2025-11-25 13:06:45'),(3,'2700e514-2700-4270-019a-019abb29c5f9','iPhone','{\"screen\": \"430x932\", \"language\": \"en-GB\", \"platform\": \"iPhone\", \"timezone\": \"Europe/London\", \"user_agent\": \"Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1\"}','iPhone',NULL,NULL,NULL,NULL,'',NULL,1,1,NULL,NULL,NULL,'2025-11-25 13:17:48','2025-11-25 15:44:59',0,0,NULL,0,NULL,NULL,'2025-11-25 13:17:48','2025-11-25 15:44:59'),(4,'431dbed7-431d-4431-019a-019a9c55f283','Mac','{\"screen\": \"1920x1080\", \"language\": \"en-GB\", \"platform\": \"MacIntel\", \"timezone\": \"Europe/London\", \"user_agent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36\"}','Mac',NULL,NULL,NULL,NULL,'',NULL,1,1,NULL,NULL,NULL,'2025-11-25 14:18:09','2025-11-25 14:22:00',0,0,NULL,0,NULL,NULL,'2025-11-25 14:18:09','2025-11-25 14:22:00'),(5,'a429c025-6002-44d1-a526-7312c107a181','Legacy Scanner (iOS 12)','{\"screen\": \"375x667\", \"user_agent\": \"Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1\"}','Legacy Scanner (iOS 12)',NULL,NULL,NULL,NULL,'',NULL,1,1,NULL,NULL,NULL,'2025-11-25 17:30:44','2025-11-26 14:58:05',0,0,NULL,0,NULL,NULL,'2025-11-25 17:30:44','2025-11-26 14:58:05');
/*!40000 ALTER TABLE `scanner_devices` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `scanner_zones`
--

DROP TABLE IF EXISTS `scanner_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `scanner_zones` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `event_id` bigint unsigned NOT NULL COMMENT 'FK to events.id',
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Zone name (e.g., "Main Entrance", "VIP Door")',
  `pin_code` char(6) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '6-digit PIN code (stored plain for admin display)',
  `permissions` json NOT NULL COMMENT 'Array of permissions (e.g., ["scan:tickets", "scan:vip"])',
  `is_active` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Zone active status',
  `active_from` timestamp NULL DEFAULT NULL COMMENT 'Zone activation start time',
  `active_until` timestamp NULL DEFAULT NULL COMMENT 'Zone activation end time',
  `pin_rotated_at` timestamp NULL DEFAULT NULL COMMENT 'Last PIN rotation timestamp',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_scanner_zones_event_id` (`event_id`),
  KEY `idx_scanner_zones_event_pin` (`event_id`,`pin_code`),
  KEY `idx_scanner_zones_is_active` (`is_active`),
  CONSTRAINT `fk_scanner_zones_event_id` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Scanner zones for event-based authentication';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `scanner_zones`
--

LOCK TABLES `scanner_zones` WRITE;
/*!40000 ALTER TABLE `scanner_zones` DISABLE KEYS */;
INSERT INTO `scanner_zones` VALUES (1,2,'Main Entrance','123456','[\"scan:tickets\"]',1,'2025-11-23 19:38:50',NULL,NULL,'2025-11-23 20:38:50','2025-11-24 18:06:29'),(2,2,'Door A','898626','[\"scan:tickets\", \"scan:vip\"]',1,NULL,NULL,NULL,'2025-11-24 13:44:48','2025-11-24 13:44:48');
/*!40000 ALTER TABLE `scanner_zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `seat_reassignments`
--

DROP TABLE IF EXISTS `seat_reassignments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `seat_reassignments` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_item_id` bigint unsigned NOT NULL COMMENT 'Reference to order_items.id',
  `original_seat_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Original seat UUID from seats table',
  `new_seat_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'New seat UUID from seats table',
  `reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Reason for seat reassignment',
  `status` enum('pending','approved','rejected','cancelled') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending' COMMENT 'Reassignment approval status',
  `reassigned_by` bigint unsigned NOT NULL COMMENT 'Admin ID who initiated reassignment',
  `reassigned_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'When reassignment was initiated',
  `approved_by` bigint unsigned DEFAULT NULL COMMENT 'Admin ID who approved/rejected',
  `approved_at` timestamp NULL DEFAULT NULL COMMENT 'When reassignment was approved/rejected',
  `approval_notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'Notes from approver',
  `customer_notified` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Whether customer was notified',
  `customer_notified_at` timestamp NULL DEFAULT NULL COMMENT 'When customer was notified',
  `metadata` json DEFAULT NULL COMMENT 'Additional JSON metadata',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `seat_reassignments_order_item_id_index` (`order_item_id`),
  KEY `seat_reassignments_original_seat_id_index` (`original_seat_id`),
  KEY `seat_reassignments_new_seat_id_index` (`new_seat_id`),
  KEY `seat_reassignments_status_index` (`status`),
  KEY `seat_reassignments_reassigned_by_index` (`reassigned_by`),
  KEY `seat_reassignments_approved_by_index` (`approved_by`),
  KEY `seat_reassignments_reassigned_at_index` (`reassigned_at`),
  KEY `seat_reassignments_status_reassigned_at_index` (`status`,`reassigned_at`),
  KEY `seat_reassignments_order_item_id_status_index` (`order_item_id`,`status`),
  CONSTRAINT `seat_reassignments_order_item_id_foreign` FOREIGN KEY (`order_item_id`) REFERENCES `order_items` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `seat_reassignments`
--

LOCK TABLES `seat_reassignments` WRITE;
/*!40000 ALTER TABLE `seat_reassignments` DISABLE KEYS */;
/*!40000 ALTER TABLE `seat_reassignments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `seat_reservations`
--

DROP TABLE IF EXISTS `seat_reservations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `seat_reservations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `event_id` bigint unsigned NOT NULL,
  `seat_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` enum('held','booked','shadow_sold','blocked','cancelled','reserved') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'held',
  `reservation_type` enum('public','admin') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'public' COMMENT 'Type of reservation: public (customer-initiated) or admin (VIP white-glove)',
  `hold_token` char(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `invoice_url` text COLLATE utf8mb4_unicode_ci COMMENT 'Stripe payment link URL for admin reservations',
  `payment_intent_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Stripe PaymentIntent ID for admin reservations (required for invoice payment flow)',
  `payment_mode` enum('immediate','invoice') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'immediate' COMMENT 'Payment type: immediate (Stripe/Revolut) or invoice (VIP bank transfer)',
  `payment_gateway` enum('stripe','revolut','paypal','nbe') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'stripe' COMMENT 'Payment gateway selection for immediate mode reservations',
  `revolut_order_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Revolut order ID for admin invoice payments',
  `expires_at` timestamp NULL DEFAULT NULL,
  `released_at` timestamp NULL DEFAULT NULL,
  `payment_started_at` timestamp NULL DEFAULT NULL COMMENT 'When payment intent creation began (prevents cleanup during 3DS)',
  `order_id` bigint unsigned DEFAULT NULL,
  `user_session_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `session_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` bigint unsigned DEFAULT NULL,
  `admin_user_id` bigint unsigned DEFAULT NULL COMMENT 'Admin user who created this reservation (admin reservations only)',
  `price_snapshot` decimal(10,2) DEFAULT NULL,
  `notes` text COLLATE utf8mb4_unicode_ci COMMENT 'Customer-visible note for blocked/unavailable seats',
  `coupon_id` bigint unsigned DEFAULT NULL COMMENT 'Which coupon was applied to this reservation',
  `discount_applied` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT 'Discount amount locked in at hold time',
  `coupon_locked` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'If true, honor discount even if coupon now invalid',
  `coupon_locked_at` timestamp NULL DEFAULT NULL COMMENT 'When coupon was locked (for audit trail)',
  `currency` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '£',
  `uses_custom_pricing` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Whether this reservation uses custom/override pricing',
  `include_booking_fee` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Whether booking fee (2.5%) is included in this reservation',
  `include_tax` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Whether tax (21% VAT) is included in this reservation',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_event_seat` (`event_id`,`seat_id`),
  KEY `seat_reservations_order_id_foreign` (`order_id`),
  KEY `seat_reservations_user_id_foreign` (`user_id`),
  KEY `seat_reservations_expires_at_index` (`expires_at`),
  KEY `seat_reservations_status_expires_at_index` (`expires_at`),
  KEY `idx_sr_session_id` (`session_id`),
  KEY `idx_sr_event_status` (`event_id`,`status`),
  KEY `idx_sr_created_at` (`created_at`),
  KEY `idx_sr_hold_token` (`hold_token`),
  KEY `idx_payment_started` (`payment_started_at`),
  KEY `seat_reservations_payment_intent_id_index` (`payment_intent_id`),
  KEY `seat_reservations_revolut_order_id_index` (`revolut_order_id`),
  KEY `seat_reservations_coupon_id_foreign` (`coupon_id`),
  KEY `idx_coupon_lock_cleanup` (`status`,`coupon_locked`,`expires_at`),
  KEY `fk_seat_reservations_admin_user` (`admin_user_id`),
  CONSTRAINT `fk_seat_reservations_admin_user` FOREIGN KEY (`admin_user_id`) REFERENCES `admins` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `seat_reservations_coupon_id_foreign` FOREIGN KEY (`coupon_id`) REFERENCES `coupons` (`id`) ON DELETE SET NULL,
  CONSTRAINT `seat_reservations_event_id_foreign` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`) ON DELETE CASCADE,
  CONSTRAINT `seat_reservations_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=493 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `seat_reservations`
--

LOCK TABLES `seat_reservations` WRITE;
/*!40000 ALTER TABLE `seat_reservations` DISABLE KEYS */;
INSERT INTO `seat_reservations` VALUES (3,23,'c10a7d85-da2b-4d93-8e17-81a71c8d842a','held','public','fd7f371c13b8b028e6449884ddf5be82',NULL,NULL,'immediate','stripe',NULL,'2025-12-01 12:17:25',NULL,NULL,NULL,NULL,'kWNXGC5N8RHfOHyrBVc47uyMJWh9ZEroptVAV7R3',NULL,NULL,500.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 12:02:25','2025-12-01 12:02:25'),(4,23,'eda1116a-96d1-4d9b-87e7-1ec886efc8c6','held','public','fd7f371c13b8b028e6449884ddf5be82',NULL,NULL,'immediate','stripe',NULL,'2025-12-01 12:17:25',NULL,NULL,NULL,NULL,'kWNXGC5N8RHfOHyrBVc47uyMJWh9ZEroptVAV7R3',NULL,NULL,500.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 12:02:25','2025-12-01 12:02:25'),(5,23,'97ea42cc-f5da-45fb-b05d-8ce2985458fe','held','public','d3b4efe73e867aace0e057aa193e99c9',NULL,NULL,'immediate','stripe',NULL,'2025-12-01 12:21:24',NULL,NULL,NULL,NULL,'WptxdpDAoXmtm1bbwYEr4CSNqEp6Vea8vB45dQ0Y',NULL,NULL,500.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 12:06:24','2025-12-01 12:06:24'),(6,23,'ae055e8c-bf63-4f1e-aebe-f7762cef4341','held','public','d3b4efe73e867aace0e057aa193e99c9',NULL,NULL,'immediate','stripe',NULL,'2025-12-01 12:21:24',NULL,NULL,NULL,NULL,'WptxdpDAoXmtm1bbwYEr4CSNqEp6Vea8vB45dQ0Y',NULL,NULL,500.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 12:06:24','2025-12-01 12:06:24'),(10,23,'8153b801-12ab-4cf2-beb1-d04c06671e98','held','public','7b1e2dcc1ff27f8051f116c176b51220',NULL,NULL,'immediate','stripe',NULL,'2025-12-01 13:52:09',NULL,NULL,NULL,NULL,'qbrQkCLGi3DomZoO9dlpn0qweSU3i7bD05luewhe',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 13:37:09','2025-12-01 13:37:09'),(11,23,'6d6761ee-c426-45cd-96f2-0d52352537e4','held','public','7b1e2dcc1ff27f8051f116c176b51220',NULL,NULL,'immediate','stripe',NULL,'2025-12-01 13:52:09',NULL,NULL,NULL,NULL,'qbrQkCLGi3DomZoO9dlpn0qweSU3i7bD05luewhe',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 13:37:09','2025-12-01 13:37:09'),(12,23,'0af3daf0-9b48-4c99-ad67-3c424de0ad3c','held','public','7b1e2dcc1ff27f8051f116c176b51220',NULL,NULL,'immediate','stripe',NULL,'2025-12-01 13:52:09',NULL,NULL,NULL,NULL,'qbrQkCLGi3DomZoO9dlpn0qweSU3i7bD05luewhe',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 13:37:09','2025-12-01 13:37:09'),(13,23,'293ac50b-ca5c-4ae6-b328-9acce0469263','held','public','de71fd1c95d292a303cdfc1677d92f2b',NULL,NULL,'immediate','stripe',NULL,'2025-12-01 14:10:21',NULL,NULL,NULL,NULL,'ipezLBbluthvwsQYqGmMzWA4jjmiMbmEwXjJ7mla',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 13:55:21','2025-12-01 13:55:21'),(14,23,'c409599a-cb41-4ad5-b30b-096fa4fcd563','held','public','de71fd1c95d292a303cdfc1677d92f2b',NULL,NULL,'immediate','stripe',NULL,'2025-12-01 14:10:21',NULL,NULL,NULL,NULL,'ipezLBbluthvwsQYqGmMzWA4jjmiMbmEwXjJ7mla',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 13:55:21','2025-12-01 13:55:21'),(15,23,'8f4a52a6-7db6-42e3-92c2-5b367e625f70','held','public','de71fd1c95d292a303cdfc1677d92f2b',NULL,NULL,'immediate','stripe',NULL,'2025-12-01 14:10:21',NULL,NULL,NULL,NULL,'ipezLBbluthvwsQYqGmMzWA4jjmiMbmEwXjJ7mla',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 13:55:21','2025-12-01 13:55:21'),(25,23,'ac79cef1-8dde-49b2-b4c6-e16ae0c20d31','booked','public','f24021a74a0cbe4c730bd96a636f9b76',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,3,NULL,'pos_1764598893721_3hra3340i',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 14:21:33','2025-12-01 14:21:36'),(26,23,'3927d72a-7990-486d-8ab2-476dd3e30bb6','booked','public','f24021a74a0cbe4c730bd96a636f9b76',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,3,NULL,'pos_1764598893721_3hra3340i',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 14:21:33','2025-12-01 14:21:36'),(27,23,'4dc24fca-bcab-4d5f-9318-8a7307005001','booked','public','f24021a74a0cbe4c730bd96a636f9b76',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,3,NULL,'pos_1764598893721_3hra3340i',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 14:21:33','2025-12-01 14:21:36'),(28,23,'577f2c01-ff53-474c-848b-3ad2bf4fd8a6','booked','public','f66492911f8f044eb6829a242a3162e0',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,4,NULL,'pos_1764600703291_5tlu23nuc',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 14:51:43','2025-12-01 14:51:45'),(29,23,'dcca9b82-c550-4fcc-abe0-ccc7e1b74524','booked','public','f66492911f8f044eb6829a242a3162e0',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,4,NULL,'pos_1764600703291_5tlu23nuc',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 14:51:43','2025-12-01 14:51:45'),(30,23,'243499b7-b341-414f-94cf-0bd46090019a','booked','public','f66492911f8f044eb6829a242a3162e0',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,4,NULL,'pos_1764600703291_5tlu23nuc',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 14:51:43','2025-12-01 14:51:45'),(31,23,'ad3c61d2-17ac-4eb7-8a13-59e379c68a58','booked','public','c1e9126ddbb6867f9942b5c65c221c42',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,5,NULL,'pos_1764601180632_jdixpwkhr',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 14:59:40','2025-12-01 14:59:42'),(32,23,'b91cec58-ad03-40c1-9fbf-183a25b4ca67','booked','public','c1e9126ddbb6867f9942b5c65c221c42',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,5,NULL,'pos_1764601180632_jdixpwkhr',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 14:59:40','2025-12-01 14:59:42'),(33,23,'0b4c0b8f-d371-469d-a78e-54b4425f3262','booked','public','7887053409fa036fbbf63ae5d1d006d7',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,6,NULL,'pos_1764602599063_tw8pcaru0',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 15:23:19','2025-12-01 15:23:22'),(34,23,'c3de9796-8280-4e28-b691-f860af094353','booked','public','7887053409fa036fbbf63ae5d1d006d7',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,6,NULL,'pos_1764602599063_tw8pcaru0',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 15:23:19','2025-12-01 15:23:22'),(35,23,'4620ced6-a229-4f47-8c36-cd3308e072bd','booked','public','1c5fd4bc09dc82a349c6b9d95a84ebdf',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,7,NULL,'pos_1764603624060_ojtxvycx4',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 15:40:24','2025-12-01 15:40:29'),(36,23,'d7747a1c-d038-4054-9d34-bee063098f8f','booked','public','1c5fd4bc09dc82a349c6b9d95a84ebdf',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,7,NULL,'pos_1764603624060_ojtxvycx4',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 15:40:24','2025-12-01 15:40:29'),(37,23,'1673e45d-07ef-4e33-b9dc-3c9aa97addc6','booked','public','9a3b31835858666296a11b738540d1e5',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,8,NULL,'pos_1764604523751_x2vq1q3s5',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 15:55:23','2025-12-01 15:55:33'),(38,23,'11194dec-4ada-44d7-9885-ef1ceea74175','booked','public','9a3b31835858666296a11b738540d1e5',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,8,NULL,'pos_1764604523751_x2vq1q3s5',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 15:55:23','2025-12-01 15:55:33'),(39,23,'2c54eac2-ead9-4090-a048-05549108939d','booked','public','6a779f1ececa2ff47dc3608c731c71d1',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,9,NULL,'pos_1764606435361_p7lz0kg49',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 16:27:15','2025-12-01 16:27:23'),(40,23,'d7d5ef6d-95e3-4b21-b2b0-3b10dcfa0612','booked','public','6a779f1ececa2ff47dc3608c731c71d1',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,9,NULL,'pos_1764606435361_p7lz0kg49',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 16:27:15','2025-12-01 16:27:23'),(41,23,'ceac2d46-1aec-415c-b90a-a51debc61904','booked','public','be3f5e77408b49be5d2bade4de4025f4',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,10,NULL,'pos_1764607285827_1vtdw9psl',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 16:41:25','2025-12-01 16:41:29'),(42,23,'e099dd2d-6a57-403d-b9ef-0c48d1288915','booked','public','be3f5e77408b49be5d2bade4de4025f4',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,10,NULL,'pos_1764607285827_1vtdw9psl',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 16:41:25','2025-12-01 16:41:29'),(43,23,'394ef130-1c54-4b60-9bd6-565f814fcbfa','booked','public','169d2623e6ea0c89c1818bf24b00f788',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,11,NULL,'pos_1764607311760_qepztdazc',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 16:41:51','2025-12-01 16:41:57'),(44,23,'4911f38f-abc0-406a-9b4c-1f3e4c1e8a30','booked','public','169d2623e6ea0c89c1818bf24b00f788',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,11,NULL,'pos_1764607311760_qepztdazc',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 16:41:51','2025-12-01 16:41:57'),(45,23,'5b43fa6f-ce05-40cf-9fa2-b82148d2cb35','booked','public','2536a3089bd6f8c3f2aa655990427484',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,12,NULL,'pos_1764607815256_aoekvdy17',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 16:50:15','2025-12-01 16:55:56'),(46,23,'560fd6fa-5392-4fd6-bf7d-5958c56b5eb5','booked','public','2536a3089bd6f8c3f2aa655990427484',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,12,NULL,'pos_1764607815256_aoekvdy17',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 16:50:15','2025-12-01 16:55:56'),(47,23,'6f84ca9b-fae5-43d2-8db3-2457af8ac951','booked','public','7e8e48deb435606a4f7531fcf3931861',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,13,NULL,'pos_1764609238496_banzi3yx6',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 17:13:58','2025-12-01 17:14:02'),(48,23,'bc4ee1ec-3c3f-41dd-8bc8-7c82cfedf36a','booked','public','7e8e48deb435606a4f7531fcf3931861',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,13,NULL,'pos_1764609238496_banzi3yx6',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 17:13:58','2025-12-01 17:14:02'),(51,23,'729047e3-56f6-484d-b08e-35c0755c65b4','booked','public','cc7dedb239a1b08c674543851dbf9de5',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,14,NULL,'pos_1764610913555_afwz2kkic',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 17:41:53','2025-12-01 17:41:57'),(53,23,'c2d55cff-28c1-4884-ac6c-3f3f7a1eee63','booked','public','7483204dd952e5ad89f40681fb90400d',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,15,NULL,'pos_1764611307765_idm8x6ypu',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 17:48:27','2025-12-01 17:48:34'),(56,23,'03d44296-6c04-480d-bc00-f4e4e36da19a','held','public','5f1b7e27ce30f768c7a5f88ae17e955f',NULL,NULL,'immediate','stripe',NULL,'2025-12-01 18:14:19',NULL,NULL,NULL,NULL,'pos_1764611959745_z7y1ur7to',NULL,NULL,100.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 17:59:19','2025-12-01 17:59:19'),(57,23,'c39554dc-1895-49ab-a50d-941cfde23075','held','public','5f1b7e27ce30f768c7a5f88ae17e955f',NULL,NULL,'immediate','stripe',NULL,'2025-12-01 18:14:19',NULL,NULL,NULL,NULL,'pos_1764611959745_z7y1ur7to',NULL,NULL,100.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 17:59:19','2025-12-01 17:59:19'),(58,23,'d439f055-9caf-4ca7-8099-f35fa1bfcbd3','held','public','5f1b7e27ce30f768c7a5f88ae17e955f',NULL,NULL,'immediate','stripe',NULL,'2025-12-01 18:14:19',NULL,NULL,NULL,NULL,'pos_1764611959745_z7y1ur7to',NULL,NULL,100.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 17:59:19','2025-12-01 17:59:19'),(59,23,'e4eb94de-d2e5-4b2d-b421-83ddd84a2c2c','held','public','5f1b7e27ce30f768c7a5f88ae17e955f',NULL,NULL,'immediate','stripe',NULL,'2025-12-01 18:14:19',NULL,NULL,NULL,NULL,'pos_1764611959745_z7y1ur7to',NULL,NULL,100.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 17:59:19','2025-12-01 17:59:19'),(60,23,'eae51293-2a58-4334-b10b-f023415075e7','booked','public','6a1e05321a79f8294cf50bbde723ea75',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,16,NULL,'pos_1764612422141_n7t7ca4fx',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 18:07:02','2025-12-01 18:07:03'),(61,23,'bbbc7892-71a4-4a1c-90d9-278e434d10e1','booked','public','6a1e05321a79f8294cf50bbde723ea75',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,16,NULL,'pos_1764612422141_n7t7ca4fx',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 18:07:02','2025-12-01 18:07:03'),(62,23,'a434dfca-262a-4568-95f9-30534a04dd29','booked','public','9418d7220bcebff3f108fc62d38d317a',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,17,NULL,'pos_1764614709410_j3expnqpk',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 18:45:09','2025-12-01 18:45:14'),(63,23,'7d65d620-97a8-4a7d-bdd6-e10fa8bae342','booked','public','9418d7220bcebff3f108fc62d38d317a',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,17,NULL,'pos_1764614709410_j3expnqpk',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 18:45:09','2025-12-01 18:45:14'),(64,23,'51560947-2f7a-4239-9176-bfa0885bfc82','booked','public','9418d7220bcebff3f108fc62d38d317a',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,17,NULL,'pos_1764614709410_j3expnqpk',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-01 18:45:09','2025-12-01 18:45:14'),(69,23,'d5f943dc-4db7-45fa-a1aa-3ce2d77a0123','booked','public','6bc2cdcf488a14c2f47b02ebc6731ea7',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,18,NULL,'pos_1764680092697_t3jdg0pie',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-02 12:54:52','2025-12-02 12:55:00'),(70,23,'43093704-2b4f-43d3-a73e-777bcb3bd998','booked','public','6bc2cdcf488a14c2f47b02ebc6731ea7',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,18,NULL,'pos_1764680092697_t3jdg0pie',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-02 12:54:52','2025-12-02 12:55:00'),(71,23,'4bcc0f44-6f62-4bf0-9704-99bbb2b53d52','booked','public','6bc2cdcf488a14c2f47b02ebc6731ea7',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,18,NULL,'pos_1764680092697_t3jdg0pie',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-02 12:54:52','2025-12-02 12:55:00'),(79,23,'177c0147-efe6-4e8e-a7a1-21ecdd8eb7bb','booked','public','94e2a3c6cb0dc9c39f324a63642bfd65',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,19,NULL,'pos_1764680538199_ku733dpdx',NULL,NULL,100.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-02 13:02:18','2025-12-02 13:02:52'),(90,23,'33dcf9b6-65d6-486d-95cf-60974529d923','booked','public','75a353e64ded1f086a0e7b340a608c0e',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,20,NULL,'pos_1764683901063_fp8i0parz',NULL,NULL,100.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-02 13:58:21','2025-12-02 13:58:26'),(106,23,'a7080216-cdf3-4617-8f53-f954b355e5f6','held','public','1ef2005c98fc254f5396f4535f5e62c6',NULL,NULL,'immediate','stripe',NULL,'2025-12-03 14:31:22',NULL,NULL,NULL,NULL,'pos_1764685882845_qfgcw0o59',NULL,NULL,100.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-02 14:31:22','2025-12-02 14:31:22'),(111,23,'226c7466-1f7c-4c98-bd66-e147bb946c8a','booked','public','c9ca5ada51120526c0b0a051ba424cec',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,21,NULL,'pos_1764686128647_7ir40hs0o',NULL,NULL,100.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-02 14:35:28','2025-12-02 14:36:58'),(112,23,'374968ab-f99a-4286-87d3-160c84792200','booked','public','6300ba37e76ccc353932f7cf5ff5130e',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,22,NULL,'pos_1764686244230_jrqns7r4m',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-02 14:37:24','2025-12-02 14:37:29'),(113,23,'43834920-0ea9-4304-a1ef-49f780110668','booked','public','baf5d6264208868c90780bc2fa0aa581',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,23,NULL,'pos_1764686260026_5pjgcvt72',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-02 14:37:40','2025-12-02 14:37:54'),(114,23,'3ee48c53-f955-4eef-8b76-736dfcd16468','booked','public','1c31d73a832f1db2a2630b6f6716e3a0',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,24,NULL,'pos_1764686413283_fg8i88lvj',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-02 14:40:13','2025-12-02 14:40:21'),(115,23,'c8b148e4-38c9-4ff1-81ee-ba25378e7e41','booked','public','fbb54d39e06f7aa25a676e38e315062a',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,25,NULL,'pos_1764686739528_vxgcx4swn',NULL,NULL,100.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-02 14:45:39','2025-12-02 14:45:44'),(116,23,'421f9c23-eb1e-4d47-af10-210e5513466c','booked','public','ba838d6c843591c11a4d7b6e845e8ae6',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,26,NULL,'pos_1764690985160_f1o82impn',NULL,NULL,100.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-02 15:56:25','2025-12-02 15:56:31'),(117,23,'ad650f86-179b-452f-b14d-d64758020b7a','booked','public','273df1f75ced2da5960a062d9dd16d68',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,27,NULL,'pos_1764694464857_17nvkwh0o',NULL,NULL,100.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-02 16:54:25','2025-12-02 16:54:29'),(118,23,'ef7f103d-e4a3-4beb-976a-204e729cf22f','booked','public','83bef3a10cddd940275f17bc42a7b4d3',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,28,NULL,'pos_1764694473972_rta9xztt2',NULL,NULL,100.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-02 16:54:34','2025-12-02 16:54:45'),(119,23,'39a7354f-688b-432a-ad02-f79ac0bf6205','booked','public','45084c469adb8321e84a3278a4d64702',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,29,NULL,'pos_1764694494807_g44kpgdlw',NULL,NULL,100.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-02 16:54:54','2025-12-02 16:55:02'),(122,23,'a7233a13-1e33-4b00-9317-f68f54170b46','booked','public','4b5e227014ad20fcbec33ff2668ac19a',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,30,NULL,'pos_1764695160543_63m2ewvsm',NULL,NULL,100.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-02 17:06:00','2025-12-02 17:17:58'),(123,23,'375c8c7f-41fc-4078-bad6-0a8ff390a348','booked','public','4b5e227014ad20fcbec33ff2668ac19a',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,30,NULL,'pos_1764695160543_63m2ewvsm',NULL,NULL,100.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-02 17:06:00','2025-12-02 17:17:58'),(124,23,'c8e077db-67b8-45bf-81b5-1b56c69c18b3','booked','public','3bd4e49d7a7578a490f848959af3e10c',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,31,NULL,'pos_1764696137622_bkdhg94uh',NULL,NULL,100.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-02 17:22:17','2025-12-02 17:22:31'),(125,23,'e6acad91-a0c0-4e09-9f30-953ce136e8fe','booked','public','eaa846f57c0597ec0e722380781bf62e',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,32,NULL,'pos_1764696395212_kh9ermuvz',NULL,NULL,100.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-02 17:26:35','2025-12-02 17:27:19'),(126,23,'1b5d20a7-4a71-4233-858a-fe9c23ff310d','booked','public','e618b872137e3547c233f8d2f35e8bdf',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,33,NULL,'pos_1764696582568_fyu0fk2k8',NULL,NULL,100.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-02 17:29:42','2025-12-02 17:29:50'),(127,23,'a1fcf149-0867-4f74-9abf-cff066729c20','booked','public','d7c430f0f154df128e7882ffb86678d6',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,34,NULL,'pos_1764696711899_ymyyjkwjr',NULL,NULL,100.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-02 17:31:51','2025-12-02 17:32:03'),(128,23,'7ea0a254-7a31-405c-9da4-f57be863d66e','booked','public','c88e3dddb3203d5364b96142e3ab2000',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,35,NULL,'pos_1764696867897_xr2vgcoqm',NULL,NULL,100.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-02 17:34:27','2025-12-02 17:34:45'),(129,23,'fcae14bb-dc32-4750-8ba9-2b7da7349e7b','booked','public','d8da88f82c38efea83de587b77861fa8',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,36,NULL,'pos_1764767650301_ezzo17r7b',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-03 13:14:10','2025-12-03 13:14:14'),(130,23,'4110c3e2-527a-4fa9-b848-4c1efb326926','booked','public','d8da88f82c38efea83de587b77861fa8',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,36,NULL,'pos_1764767650301_ezzo17r7b',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-03 13:14:10','2025-12-03 13:14:14'),(131,23,'36de5ffa-aca6-49ce-82d6-58e4685a22d1','booked','public','d37445f31742d23f9ce05a1584fc969a',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,37,NULL,'pos_1764768014568_qrw0rhvrv',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-03 13:20:15','2025-12-03 13:20:21'),(132,23,'e863dd1f-9881-4c6f-b439-f92f9d13cff7','booked','public','0c97d4e44795adce61648d60c54f3aa3',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,38,NULL,'pos_1764768245656_a5xkaxkza',NULL,NULL,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-03 13:24:06','2025-12-03 13:24:11'),(133,23,'c3117e39-87c9-489a-8d02-6132a6cb5607','held','public','6d6baed7f104e5a5d86c003fa581dffd',NULL,NULL,'immediate','stripe',NULL,'2025-12-04 21:53:58',NULL,NULL,NULL,NULL,'pos_1764798838121_r9edj7ysm',NULL,NULL,100.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-03 21:53:58','2025-12-03 21:53:58'),(134,23,'9954d428-8055-499f-9d80-77ce13e9ab1e','booked','public','41b06a5ab2e2fcc9e85ecfedec8ae2ec',NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,39,NULL,'pos_1764798853755_xiv5xtu44',NULL,NULL,100.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-03 21:54:13','2025-12-03 21:54:17'),(135,23,'6b9c6ca2-aca5-4e8a-93d8-653da7d6273d','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:43','2025-12-05 14:12:43'),(136,23,'7706d1d5-46dd-4937-a456-4b9de87d3f95','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(137,23,'d40a2878-82b1-40d8-ba51-77d932acd5be','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(138,23,'155c40ee-3e4f-44aa-b15f-c3a810931d38','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(139,23,'01b646f5-95fa-4d77-b6b7-a6ea7c66e738','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(140,23,'737d949f-83d6-4434-884b-5f50b2a8288f','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(141,23,'9ace6ca4-79ca-4dcd-8aad-3894e69d1e96','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(142,23,'dff6d175-992e-4ae6-877d-2e21d18ffb04','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(143,23,'2fb3f63d-b91b-495f-9a0b-b322c327c7cd','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(144,23,'3ae34f39-11cc-4450-a46b-ba58d85ae38a','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(145,23,'ec3075f7-6a63-4395-a352-3954715575df','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(146,23,'c2b747e7-93cd-4a03-9066-ed71c5a2d71f','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(147,23,'b0284bad-ca35-4dae-9a50-41a534ee0095','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(148,23,'29fdeec8-dfeb-4edd-9018-e319918feda0','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(149,23,'aaac90f7-e538-4621-82a9-1ff9a4bb228d','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(150,23,'d2ec8fc9-5609-4995-9c7f-22faa5e6259d','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(151,23,'b4c0a5a6-6589-4af7-8e9c-3f0f3a120723','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(152,23,'f822c546-5a74-4cc8-a98a-84efded96f91','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(153,23,'2f8b3fce-85d6-4e48-8664-09909fbed576','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(154,23,'1654bcc1-38a8-4701-92df-14f0c10a2e44','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(155,23,'290f32fc-6ef4-42fb-b27d-8bbc24d97516','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(156,23,'93268c83-2943-4f67-bb2d-c869726a196b','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(157,23,'0d32704b-4a17-4467-a9b3-cdebca7b002d','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(158,23,'93fe2cf7-4b43-4f79-8005-d19ca4ff5216','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(159,23,'858534d4-32eb-4d70-b47e-9b95e18fa9a3','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(160,23,'b1c23c58-ae13-4520-baa5-6490af412a5e','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(161,23,'1d9c9dc2-aadc-440f-85c3-1d869b939dac','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(162,23,'092582f6-14d3-4d21-a68a-bd3ed8d5b29a','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(163,23,'6fcaf205-fb5c-400b-8951-2b5bb512bdb8','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(164,23,'6c9761f5-4547-45f3-82fe-cf9c8afe18b5','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(165,23,'9c8e6dce-a3bb-415d-93be-b7069f3a04af','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(166,23,'c226a4d7-01c9-44f8-8224-6396750fc73e','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(167,23,'df85889a-fef0-466a-8692-019d82f3af1d','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(168,23,'6406e467-6ac8-4e8d-bb4e-ca88437a44df','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(169,23,'ecc4db6f-86f4-41f2-8db9-60d8bdff8b8c','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(170,23,'d77ef0af-7c35-4d6d-90f2-7728628cff99','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(171,23,'8b648293-a2d9-448b-a3c9-ba91300ef020','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(172,23,'6ca8542f-e6ed-40e0-8e0c-f9ba3e7fcfee','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(173,23,'10bc0edd-bfca-4c6d-82bd-a46be12d43ac','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(174,23,'b84352a2-6414-4971-b8f1-08bfb4803555','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(175,23,'82c47bbf-3df1-4db6-93d1-e193211e75ca','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(176,23,'2f55cbd5-28af-44a2-8ba1-a47cce5e9257','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(177,23,'6f56bd6d-124b-4371-a10f-f3a47ba7f288','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(178,23,'0c4bf3a6-a73f-4939-8db3-1b7601a343a6','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(179,23,'2313eb0f-8455-45e5-825a-0dc61c43ddeb','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(180,23,'f023b854-9434-4f32-9569-6a41d0bd7d7e','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(181,23,'fcc3cd60-7aeb-421c-9b0e-3f2e6ab304bc','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(182,23,'84aa9ab6-e252-40d9-be50-6f61d6c170f5','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(183,23,'d109c7f0-5729-4c29-a1f7-ab308697cf0a','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(184,23,'68b2eb32-a5c9-4cc6-b18e-2923412dead3','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(185,23,'21b6dbba-60b4-4534-9b3d-c223f2176e33','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(186,23,'ae307b78-86f5-4e71-b43d-5b81de729f8e','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(187,23,'050697d8-a0b2-48b2-b2d2-193ef2887c74','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(188,23,'b0bc8bcc-6363-4a8b-94c9-4bb643d5f9ff','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(189,23,'210d6560-1e73-4d0a-939f-837c872543c6','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(190,23,'398d2012-b76e-4811-a07b-ac727f0bafcf','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(191,23,'43bad8a4-65ee-404c-8fe2-a814ece96d75','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(192,23,'f9800421-e4a1-46f6-b0fe-25748b5d5c86','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(193,23,'f717a6c8-43ce-4d98-bc5d-514431b6e51e','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(194,23,'45719b8d-b695-4880-942c-3301f27c25e6','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(195,23,'d0801410-6c67-46ec-b58f-4ad0587f5bf0','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(196,23,'99fdd1cd-a7e4-4dc2-90a8-3baa8913c5bb','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(197,23,'78b4487a-0c74-46a8-a310-949f08fc944d','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(198,23,'d8f3ddc8-92b9-49de-81d7-1ed0d0cad6d8','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(199,23,'b008750c-2fe4-4399-b3d5-36fc021e4534','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(200,23,'e253060a-f169-45b0-9528-5cc2b0fd1179','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(201,23,'d1eab590-564c-427d-9726-bdfd976d6723','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(202,23,'5896a531-8f79-4be9-99a0-f87c9ac4e651','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(203,23,'e016bb83-cd16-4547-9336-b54657e2df26','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(204,23,'52a11ae9-20bc-49c0-88a1-5b0e4b45181c','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(205,23,'f970cabf-6bb3-4c50-bb2b-b79b8e8945c4','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(206,23,'c4620e7e-b766-4216-94a8-8ee850067899','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(207,23,'a763b0c0-1c5a-441a-8f34-104212237161','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(208,23,'7aa02a63-23fe-4430-90f8-8866e31a6234','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(209,23,'3eb6239d-4028-4070-b947-2634677f6bcb','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(210,23,'7b55f2ac-7719-4488-ab48-1cb5d1fddd6b','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(211,23,'bac158a7-fec7-4e6c-adef-8376d4eb35a5','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(212,23,'d41d994e-18e1-4cb7-bc0b-95554ab252dc','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(213,23,'16dc8e66-e59f-48a5-8606-4fef0fde3640','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(214,23,'eb125206-dcee-40de-8e5e-d4f0abc01156','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(215,23,'c4168341-5ae9-4ce9-b61b-fc6543933645','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(216,23,'01df5b5f-752b-4583-875b-3ad260578c73','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(217,23,'b48c9595-37fa-400a-a9be-2d74138a6a2f','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(218,23,'aa7727e4-c70c-47d4-b8e8-7fa1a97d46e1','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(219,23,'6f33d034-e8a3-4a70-aaf5-37125eb9c5de','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(220,23,'1a87562d-c8b8-42b7-be9e-3c064475f300','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(221,23,'4a5e2acd-e7e8-46d1-8359-8af39e54c232','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(222,23,'10230906-6b29-404e-acd8-9083d738bb7a','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(223,23,'8d671c73-f6da-43c5-aff9-ad789d1da080','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(224,23,'1e4bc147-8416-44e0-8978-dfde51516e3a','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(225,23,'ce49c3f1-6189-4034-8e28-6ef6d1efb9a0','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(226,23,'b0464ea3-6211-4149-9d95-5f031cac2d96','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(227,23,'e0307ee6-6f0b-4507-98d6-b2089662bbe5','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(228,23,'c1c27aec-7e88-45ec-ac5f-0bc28d8388d5','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(229,23,'a32c56c4-a73b-4237-864f-b769b269c011','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(230,23,'f65a02ee-c603-43f4-9599-fa88cc61ef81','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(231,23,'34d01879-9506-495a-9f91-aaa4c7d49fe8','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(232,23,'701f79f7-90d4-4ac4-8c2d-8730cff8db2f','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(233,23,'6ff13fe9-4c79-4705-a665-0f3d7f2017e3','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(234,23,'4a7b264f-d7eb-498f-b725-dcf0f3c1dcf1','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(235,23,'1013fb7e-4428-434c-a25e-cddfac7e55b1','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(236,23,'ff1bf7aa-25ce-4090-b5e0-b43495f73da9','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(237,23,'047bc287-85f3-4692-9a85-33d9cc9aa605','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(238,23,'901978de-6a2d-4e8f-a2a3-c7609a963ad9','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(239,23,'533a41a9-c7fc-42a4-aa28-e4992f7fb373','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(240,23,'ce2aa858-0a21-458c-a22d-0630f1e3fdc4','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(241,23,'527dee8c-4fce-44ed-942c-e54d3338324d','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(242,23,'5603df6a-c2a3-4f0f-b760-49a8f634d866','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,100.00,'Available soon',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:44','2025-12-05 14:12:44'),(243,23,'9f37cdfe-9f77-4d39-b308-532cdef7c617','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(244,23,'e472b3e8-ea72-4c13-975b-647aec11a48d','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(245,23,'e2af6487-7db4-4f8d-81c1-c6845818a087','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(246,23,'aa3a4768-03b1-4e67-b8d7-727bc77af326','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(247,23,'89949c74-9be3-43f6-a310-11b8ad03fa9c','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(248,23,'4f7732ed-10f9-4a44-9050-1ce50570adb0','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(249,23,'f30aad89-bb6d-4fc1-bdcf-0197a2e94aa3','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(250,23,'e44831c8-e18a-453a-870f-993e6e81bbcf','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(251,23,'4118ca64-c73c-46c3-abf7-6ef41589ce36','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(252,23,'6615fbc4-7644-46aa-8e15-4780696fdfbe','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(253,23,'dc6d0454-7b83-47a1-86b9-b3c16028d2f3','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(254,23,'97abd20a-55f2-461f-b4c7-4b462ce4a660','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(255,23,'d35c74bf-c131-470e-a5ae-bd96f9cfcd8a','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(256,23,'db028062-a6bf-4a4a-b1ca-bbb079a6b542','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(257,23,'4f839d1e-9325-4f22-b2c4-49e862c4285b','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(258,23,'b1988a45-d54c-4f9a-9578-84c3a6d81c09','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(259,23,'c2f6a153-0535-4bb9-9152-62b28e030fad','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(260,23,'76f1c9a3-377a-4d8f-a4dc-782c8d3d77db','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(261,23,'ce163413-1a1e-44dc-9582-285019a96456','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(262,23,'48162927-699e-4c5d-8161-9ebeabdbcaeb','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(263,23,'8d658954-3f50-44ca-ad1e-afd631dfec21','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(264,23,'45bd4c0d-79c5-400b-9b48-4d409c26107e','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(265,23,'be0b9dd1-ce95-4ec9-b309-b4bfb8bf55b5','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(266,23,'f64b3dfc-4d5d-4ee1-a632-81810671a71a','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(267,23,'fe1dea6a-928c-4ff0-b261-4ffc7359c32c','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(268,23,'98c9d241-100f-4018-b264-42fd2862f7c4','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(269,23,'dd1efd4c-3ae6-4976-bca2-1b18740b67e0','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(270,23,'758110fa-239b-48d4-9114-7df9376c5753','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(271,23,'e354a8aa-fcff-4154-9f05-f3b2ddb834c8','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(272,23,'ef5e4d4e-dcbd-4ed0-bd5b-7edce1d69502','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(273,23,'9c207b48-2904-43e1-9657-e270b3f0880f','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(274,23,'a722e3ec-3294-489b-b356-399be61b0d39','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(275,23,'12db76b5-d4fe-4502-b5d8-2ebacc2e41e4','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(276,23,'b18d90a9-fd4a-45ec-b320-a155603364ad','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(277,23,'4f39995b-dd5b-4ba0-add6-887e673ae5dd','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(278,23,'098f9b30-f387-4596-a3ed-ef37b076c6ac','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(279,23,'5d8a4cdd-bb05-4e47-9145-d820418c6000','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(280,23,'91a91428-fc38-4b67-860d-35ae28b79936','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(281,23,'5daae556-cbf0-467a-8305-56cf983e67a8','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(282,23,'2678fdb0-0f00-46d9-9085-b51f56ca5fd8','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(283,23,'e7ca4f18-3229-4d39-8121-0470a7f20a74','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(284,23,'00b4c829-04d3-4581-ab42-191aac01f690','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(285,23,'89592016-adb1-459e-b2e0-6eb882d5d21f','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(286,23,'1aa3f34a-1ed4-4cae-a024-321e9d6e503c','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(287,23,'7224250f-c052-48de-b4c3-357c5747f887','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(288,23,'ea71106a-7104-463f-b0ec-3dd2eca8ab0f','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(289,23,'48d72532-1e61-4501-b913-acd0593f9a5f','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(290,23,'5655c670-02c4-4054-bf59-e5ee5c655976','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(291,23,'0b14370a-7ad0-4735-87f4-d80bf44891e5','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(292,23,'7dd88669-1895-49a5-939e-2800b531efd6','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(293,23,'0e533e55-b8ca-4dac-a567-18fca861e909','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(294,23,'2959ae92-40a2-4ed2-84a6-f43b0ab8ae9e','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(295,23,'6546e761-6352-4383-bf31-6a21b15dd50c','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(296,23,'951688f6-51a9-4f5a-9d8b-1b78eca8ec19','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(297,23,'06111395-3740-4568-9449-950f82fc5597','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(298,23,'5cb2665c-f326-43d7-b0b0-14c6ddfe959b','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(299,23,'1933da8b-3562-4f5e-8c05-51398ebc0723','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(300,23,'57fc3875-a2a4-4855-99da-aef4f01fded0','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(301,23,'5b4be08c-8ee7-491b-b97c-98cef3bd3b5b','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(302,23,'40184c63-6c39-4394-ae35-05a551ffe64d','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(303,23,'842bf93f-7105-4b3f-bab7-60395d7bfa9f','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(304,23,'97dd0caa-ad80-47e2-a5ae-bfe4160ac260','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(305,23,'3e58ff2b-1a3e-4c8b-ae0e-6cfddea4adf3','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(306,23,'2510bb99-ce9c-444a-ac33-5aea258dec6c','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(307,23,'dda06d3c-994d-4ae3-8c6d-508da44a193c','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(308,23,'ca0c5c3c-7ea9-4c76-bc04-cc220b0db83f','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(309,23,'eb5f0099-699b-448b-9827-5bf6960489fa','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(310,23,'8c9bab2c-4205-4828-9720-cfd3faacee79','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(311,23,'d3b12a5e-cb3a-495b-9774-c4594244096d','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(312,23,'b9172045-8dbd-4ef3-b31f-a26f5501be8c','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(313,23,'4f41b778-b038-4d51-a1cf-76220dea8531','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(314,23,'d83d74f4-a197-454c-a69a-a93d819801bd','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,50.00,NULL,NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:12:52','2025-12-05 14:12:52'),(315,23,'c58a3923-b340-4d3f-bf4d-44635f022fe4','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(316,23,'6fc3b427-2010-481b-bb6c-acc772210477','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(317,23,'48d18ec3-d8f7-46b7-b801-b8460f06ed6e','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(318,23,'3e6db715-9dd5-46b8-9484-bcc1ca342f68','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(319,23,'65b16b11-0287-4e73-8741-ab9f2b2aa250','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(320,23,'11c38c16-d993-4ca1-a3e7-3388034fcb36','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(321,23,'770e860d-9931-448f-b2ce-65951b8af703','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(322,23,'1a6464e4-4357-494b-b43b-f8ee54d47792','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(323,23,'1690ee7d-a663-4b03-a9e2-7662f6b66c83','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(324,23,'ae6afd5e-c466-4c37-b53c-e41a63123de2','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(325,23,'25b4b256-681e-42d0-8b8b-21b311c68fa2','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(326,23,'c549d4d5-d669-40ad-a12c-d49d552bacaf','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(327,23,'859e5794-e220-428e-8bc5-2873b5cb2224','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(328,23,'756a8de3-65f8-4f28-ac78-b1fd59e9e1a9','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(329,23,'85b112a4-b7cf-491b-84c3-2eefab563e49','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(330,23,'67b04940-9d8b-41c9-9188-fbfcb505bc67','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(331,23,'0f4fb057-cc24-4353-b2e4-2a3093482ce3','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(332,23,'96f8542b-ba52-4ed8-b0a2-3c92201dd7ff','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(333,23,'97c7d498-7aa5-42fe-83b4-f4157881abc7','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(334,23,'2599b7e0-408e-4f26-968e-aeb8e1590bdf','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(335,23,'bcefe0ce-fdca-411e-8bd0-cd869ace02e2','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(336,23,'0b912ddd-f192-42cd-baee-c43bd7bb48cd','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(337,23,'52aed440-f86d-45af-b8bb-907484c11d2a','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(338,23,'88218a0a-3abe-40f9-8c0a-1210be6db25e','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(339,23,'e57e8e8a-2eed-4640-bf60-cb339890902e','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(340,23,'293f15a9-a090-4c31-a742-c044794f30f3','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(341,23,'8910b008-a7c2-421c-85f0-0f6db959a0a4','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(342,23,'55b8207e-2056-4e43-a043-00af9d6ada50','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(343,23,'93ecfaa7-ef80-4eca-9064-0ec4196fa8be','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(344,23,'d300c58d-0f6d-4bf3-b3c9-2fbb389ac585','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(345,23,'d070b211-65f3-4b2b-a558-669fe03af08f','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(346,23,'d62d8f09-839c-4d96-9cb6-f1bbc53f981a','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(347,23,'4596dc13-83e4-4a19-bac9-034b75fedb32','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(348,23,'957359d9-0892-47ee-a24e-340bf6395740','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(349,23,'39a417fa-795f-4dbe-a214-6d5f912d3b84','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(350,23,'d060ef99-04d3-436a-a787-3112329dd35c','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(351,23,'7fcea493-f130-4ef8-8c6b-011f5db49023','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(352,23,'4e35402a-730f-478f-be65-393959dcd440','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(353,23,'d4614a1a-d42c-44e1-b064-3b547f04d4fb','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(354,23,'36c38ee4-9c50-4544-808a-55d632536236','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(355,23,'e1f9418d-2883-40e8-933e-71ecd179c071','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(356,23,'5fd0bae5-628f-4972-86ab-82b2736435ea','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(357,23,'e3d0cd15-7dce-4d02-9be9-05286d72fec6','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(358,23,'747fbb67-19ad-4033-a569-d7e5d46db0e7','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(359,23,'de41c9b7-eb82-4cef-be55-5c0a7998eed1','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(360,23,'2fbe49c6-1479-41ae-b582-36eb84d24149','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(361,23,'4422abcd-f4ea-461e-b2c8-ac04f005f47f','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(362,23,'0369cfaa-d65a-4059-b7e0-05e34efed8d7','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(363,23,'2a58cb28-f3d1-474e-bb43-743774021d4c','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(364,23,'ac7e7d48-c151-4049-b395-a8268fbf9b6e','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(365,23,'6169b779-df60-42ee-9925-2dbd44cbe0fc','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(366,23,'e674d2c2-5c55-41c2-b177-12c523a234c4','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(367,23,'a08a1152-2850-421f-b784-7b464a9643f7','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(368,23,'c3035c85-6e0e-41c1-836f-80509f0c69d6','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(369,23,'0d7109d9-83b6-4394-9233-d39d57f115f1','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(370,23,'d4744b71-774a-4e0d-8267-574da981fce6','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(371,23,'8b262e17-90d5-4ce2-a0bc-5fe8959b9881','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(372,23,'f1ed4c44-3f93-43b7-bfab-d93562373adc','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(373,23,'64135dc4-a12b-4bfa-8c66-fbc2ee09b216','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(374,23,'4984c704-ab27-42ab-855d-2a312fdab14d','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(375,23,'dd2b021d-7e35-4803-a896-2b353329c8f6','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(376,23,'3025af5b-7212-46b6-b8b6-0e429deb13d1','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(377,23,'ace2c87c-7d46-4576-9a5b-770636b76b86','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(378,23,'e5ac551b-e59e-454e-abbe-8f0b88ac650b','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(379,23,'07eb9ca5-379b-49df-a7ce-091ff9728b78','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(380,23,'d80c134d-0026-41af-a032-c646110b5d88','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(381,23,'488b0ef5-c951-4bb8-9195-8860d8bb439a','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(382,23,'e8871962-2ae0-4ec7-bd7b-c3a4262e7b31','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(383,23,'3d147316-4386-4f21-9b60-7cbd6fa950e6','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(384,23,'68359aad-75c9-4dbf-b2ef-33583b710b45','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(385,23,'4d5ee896-41df-49e9-b28f-f5c91b8b017d','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(386,23,'60e1eaae-6458-4bcc-acb9-5abd0b0d28e0','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(387,23,'0210a0ff-7ab1-4994-ba09-1c3ce0c1c424','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(388,23,'02400cac-db83-42b5-a21f-66e43e39e9aa','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(389,23,'5a870030-596f-40d5-a988-ef82d3cd449f','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(390,23,'3eb4a30b-6c43-48f4-bbf7-3e709608b79e','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(391,23,'04e0832c-2e42-4303-858a-36afad31f716','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(392,23,'a0e58873-1c19-4de0-8c06-296c13a66746','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(393,23,'4ce6a336-fc49-47b0-938c-ef79e2e7d0f9','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(394,23,'77636282-f437-4da0-a55e-50e786c68c43','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(395,23,'6c692816-c4bd-4cfc-b528-30d39bbfa52d','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(396,23,'9e3c9d7f-90ab-4d71-a87c-fa50560eb39d','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(397,23,'d435ba12-d8fe-4362-96fc-20984b241f20','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(398,23,'dc7d5e87-71a1-4969-b95a-728efe6762e4','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(399,23,'7496deaf-61e7-4ee6-8dc9-2ca78481f36a','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:14','2025-12-05 14:13:14'),(400,23,'c77482e1-aef4-4fc2-ad02-350fa3c3c0aa','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(401,23,'4e3f0e99-0aa4-4eca-a039-55390b4dffd4','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(402,23,'836243a7-a250-4d68-8aaf-a4ae4c7a92e7','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(403,23,'44d5ef8d-1585-49c6-8b31-a65a17db3d22','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(404,23,'163c5490-de64-428b-96e4-9ec704ea3005','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(405,23,'1ba9eb1d-c735-41da-b8ad-4c23498d846b','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(406,23,'8249f879-7078-4fcb-8625-6d4ef9a19072','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(407,23,'6e535e08-8c26-48e0-8e99-3dfb6ae55e5c','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(408,23,'2f775946-82bd-4b15-ae14-698a4a7dde78','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(409,23,'cc9bc057-a2aa-42a1-b551-504de8a16a95','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(410,23,'56b8372b-77ab-4ec7-b911-1d414febb899','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(411,23,'a67cef5c-0657-46a1-a1ae-7dd1024030b9','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(412,23,'f0ca55c9-3ecf-4254-9ebd-1c58f1e26086','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(413,23,'e144427b-44db-4c1d-9ee8-f707a62921d5','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(414,23,'1ebfa491-7a88-4de0-8b88-ce92cb2564f7','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(415,23,'fecf300e-de51-4d47-9949-dd26446b617b','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(416,23,'5b0c2b23-6e8b-4a76-8bfa-e3ae6b1a6043','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(417,23,'b4d760c4-fa43-42d7-8c30-a044a59e11f7','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(418,23,'5b9a08c1-f29c-41a2-80c3-510f7f8aa507','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(419,23,'41263b5f-c02d-4bc0-b65f-16ef2934375c','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(420,23,'7d26a11d-966f-44b7-86ae-3f79a6a35686','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(421,23,'8050804f-120d-42dc-9a29-0058399cf8a8','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(422,23,'2ba3dfe4-bf5a-4bcd-a710-3d6394252ac8','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(423,23,'7110167c-6f4b-4b1c-9c9d-367e2febf328','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(424,23,'2743c18f-f1d1-4ff7-9aa8-4ec4cfb56d75','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(425,23,'80596cbc-e255-454f-94d4-1202d539db5a','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(426,23,'7c14a666-5b3c-4c63-b37a-274cd8b86cde','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(427,23,'b6c3857c-926c-484d-a133-6b17a7663e7d','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(428,23,'39ccb69c-a19e-4af7-b31e-426aa3b218b1','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(429,23,'52806e47-e5f8-4569-9f3a-687cfa34fc70','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(430,23,'8d821601-efae-4893-8910-47aeb8fa2fc3','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(431,23,'44b4d159-5d61-4b16-9536-5e793970dbf0','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(432,23,'dd3b928f-b8bc-47f2-9b61-9e1574015376','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(433,23,'065aca35-5a80-45ae-8203-6db3f469d5ae','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(434,23,'c5515698-54d5-48ad-bc0e-aba076724959','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(435,23,'9c03569e-4285-49e6-8591-ff210a0ef059','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(436,23,'accbe97e-55bb-4c22-9f43-c9293e59825e','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,1000.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(437,23,'9dbe954b-d977-466f-8bb1-bb55cc0bd2ba','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(438,23,'93159638-638c-47fc-84c1-97dee28cf0bf','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(439,23,'092eecf1-6159-4177-a4dd-ada0000b5e02','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(440,23,'7afa3811-bbb8-4377-ada7-f979f91600be','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(441,23,'2ae950ee-a0b3-47c6-88ed-8810ab60db8f','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(442,23,'e3911693-a730-4786-97f7-2f02530649d6','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(443,23,'9fd1fbf5-2f09-47cb-8d25-ac6acf261891','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(444,23,'f1f2d0b6-ba82-4902-9394-eaf9a12a2d8b','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(445,23,'e56f1e4f-4e67-4d0d-bd26-a5ae7e6fcbc5','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(446,23,'fb8cda91-9ad4-4699-beef-80f60655f463','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(447,23,'d749c478-96d0-4858-8f3a-e7135ff8ef6e','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(448,23,'8d3ed8d2-1683-4246-b0e3-1c9bdc62389d','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(449,23,'c822baf0-f226-4162-8e4e-6665e202b1b9','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(450,23,'63072583-9ded-4874-85c4-4b3e84728fea','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(451,23,'11143757-e879-4695-a86b-c72f40b21cc8','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(452,23,'f8c53bab-fc41-4006-95b9-e2d140075ae4','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(453,23,'5f2476fa-d59f-408c-b023-1651f37abf38','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(454,23,'b42b973a-450e-4a6b-bb8e-b3df21d995ca','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(455,23,'10c65633-af58-404b-adc2-c9f9d2c6f872','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(456,23,'705cc0a7-eec5-41bf-94df-7bca9a85fa32','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(457,23,'ba3c95d4-2ec7-4622-a710-f39210e5f458','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(458,23,'4ec0a0b1-34de-4e78-8787-71f37334dcf4','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(459,23,'4da7a943-3a6d-4296-bec2-a0e7d5b1778d','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(460,23,'91d0e290-a86b-407d-a2c2-8ef90206a598','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(461,23,'a2c2ca27-dcfd-4916-97d6-7b76052c5c9c','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(462,23,'1ee1fa98-af54-4c31-bd21-5285710838e3','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(463,23,'ccd909a4-c69d-4880-a9be-0377435b2f05','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(464,23,'4660c03c-c4b4-48bb-9ee2-9ddfe91a86ed','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(465,23,'5772b347-489c-4818-a795-0b292109a66b','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(466,23,'02941662-bd2f-4745-9aaa-04fc8141be4b','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(467,23,'4442ae1c-e228-4077-be25-60f978eb00bf','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(468,23,'25d82267-5d98-4f1f-8672-c72ba5b569e0','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(469,23,'71b9aeb5-f445-42fa-97a4-35afd73c877c','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(470,23,'fa1731fe-dbd6-4c88-909c-c731bc4dd3c6','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(471,23,'972d7708-c2ff-4f13-9123-ecb845d99d76','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(472,23,'6bded733-47f5-438b-a52e-78d4fab8a5a8','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(473,23,'bc36e6ac-c6e3-4b5c-8821-7c79104e1f2f','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(474,23,'2dfcf6c5-06e0-4e96-9a2a-9c9d3fb9063e','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(475,23,'1b8b26fc-8c13-4b8c-a729-c503a9547588','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(476,23,'f0bf2767-726f-4cac-bb12-cf1c39f1e898','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(477,23,'75a87c9c-e359-4e4f-8f38-33480770c03c','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(478,23,'d1a8a79d-e8ee-4fdb-8034-8a60b5de69c6','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(479,23,'2bc32131-b916-40d4-b395-33963247dbf0','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(480,23,'4e39126d-13ab-4869-a8a5-373da1ded88f','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(481,23,'9ae19ef4-5e8c-4330-9edd-e2b643d57dc2','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(482,23,'7e57bfdc-d546-4385-b7d3-9cb9d2aeaca2','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(483,23,'7eb0d1ac-014f-48c4-863f-9b92bb1ca0dc','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(484,23,'8dae6426-e1d5-479b-b5bb-953a72c369be','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(485,23,'5a6a8978-1631-4f36-b2de-804cced38abe','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(486,23,'4469674a-c3ff-4b77-9016-4f842ba8b375','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(487,23,'4895065a-d4cc-4e31-9544-3bca162a45cb','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(488,23,'9e746884-143c-42c4-8286-861e61480eaf','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(489,23,'631cea4a-f81a-4bff-bd55-89a5249b5bdb','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(490,23,'98977dec-fd78-467b-8782-b7535fcf5be2','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(491,23,'1f109324-85fa-491d-9387-8ab0da6fd324','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15'),(492,23,'48667106-2758-4312-86cc-56d68cf1b89c','blocked','public',NULL,NULL,NULL,'immediate','stripe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,500.00,'Private Sale',NULL,0.00,0,NULL,'£',0,1,1,'2025-12-05 14:13:15','2025-12-05 14:13:15');
/*!40000 ALTER TABLE `seat_reservations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `seat_state_log`
--

DROP TABLE IF EXISTS `seat_state_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `seat_state_log` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `event_id` bigint unsigned NOT NULL,
  `seat_ids` json NOT NULL COMMENT 'Array of seat IDs affected by this action',
  `action` enum('shadow_sold','blocked','unblocked') COLLATE utf8mb4_unicode_ci NOT NULL,
  `reason` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Reason for state change',
  `staff_id` bigint unsigned NOT NULL COMMENT 'Staff who performed action',
  `manager_approval_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Manager JWT token (for shadow sold)',
  `blocked_until` timestamp NULL DEFAULT NULL COMMENT 'Block expiry timestamp',
  `action_at` timestamp NOT NULL COMMENT 'When action was performed',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `seat_state_log_staff_id_foreign` (`staff_id`),
  KEY `seat_state_log_action_at_index` (`action_at`),
  KEY `seat_state_log_event_id_action_at_index` (`event_id`,`action_at`),
  KEY `seat_state_log_event_id_index` (`event_id`),
  KEY `seat_state_log_action_index` (`action`),
  CONSTRAINT `seat_state_log_event_id_foreign` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`) ON DELETE CASCADE,
  CONSTRAINT `seat_state_log_staff_id_foreign` FOREIGN KEY (`staff_id`) REFERENCES `admins` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `seat_state_log`
--

LOCK TABLES `seat_state_log` WRITE;
/*!40000 ALTER TABLE `seat_state_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `seat_state_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `seat_transfer_requests`
--

DROP TABLE IF EXISTS `seat_transfer_requests`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `seat_transfer_requests` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint unsigned NOT NULL,
  `event_id` bigint unsigned NOT NULL,
  `from_seat_id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `to_seat_id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint unsigned DEFAULT NULL,
  `session_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `customer_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `customer_phone` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `original_price` decimal(10,2) NOT NULL,
  `new_price` decimal(10,2) NOT NULL,
  `upgrade_fee` decimal(10,2) NOT NULL DEFAULT '0.00',
  `price_difference` decimal(10,2) NOT NULL DEFAULT '0.00',
  `reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `status` enum('pending','approved','rejected','completed','cancelled') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `reviewed_by` bigint unsigned DEFAULT NULL,
  `reviewed_at` timestamp NULL DEFAULT NULL,
  `admin_notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `rejection_reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `completed_at` timestamp NULL DEFAULT NULL,
  `completion_reference` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `seat_transfer_requests_reviewed_by_foreign` (`reviewed_by`),
  KEY `seat_transfer_requests_order_id_index` (`order_id`),
  KEY `seat_transfer_requests_event_id_index` (`event_id`),
  KEY `seat_transfer_requests_from_seat_id_index` (`from_seat_id`),
  KEY `seat_transfer_requests_to_seat_id_index` (`to_seat_id`),
  KEY `seat_transfer_requests_user_id_index` (`user_id`),
  KEY `seat_transfer_requests_session_id_index` (`session_id`),
  KEY `seat_transfer_requests_customer_email_index` (`customer_email`),
  KEY `seat_transfer_requests_status_index` (`status`),
  CONSTRAINT `seat_transfer_requests_event_id_foreign` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`) ON DELETE CASCADE,
  CONSTRAINT `seat_transfer_requests_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `seat_transfer_requests_reviewed_by_foreign` FOREIGN KEY (`reviewed_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `seat_transfer_requests_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `seat_transfer_requests`
--

LOCK TABLES `seat_transfer_requests` WRITE;
/*!40000 ALTER TABLE `seat_transfer_requests` DISABLE KEYS */;
/*!40000 ALTER TABLE `seat_transfer_requests` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `seats`
--

DROP TABLE IF EXISTS `seats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `seats` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `seat_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent_table_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `event_id` bigint unsigned NOT NULL,
  `row_letter` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `seat_number` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `seat_type` enum('individual','table','table_child') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'individual',
  `price` decimal(10,2) NOT NULL,
  `price_tier_id` bigint unsigned DEFAULT NULL,
  `price_assigned_from_tier` decimal(10,2) DEFAULT NULL,
  `zone` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `parametric` json DEFAULT NULL,
  `child_seats` json DEFAULT NULL,
  `position` json DEFAULT NULL,
  `section_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_accessible` tinyint(1) NOT NULL DEFAULT '0',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `total_tables` int NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `blocked_reason` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Reason for blocking (broken, accessibility, vip_hold, etc)',
  `blocked_until` timestamp NULL DEFAULT NULL COMMENT 'When block expires (null = permanent)',
  PRIMARY KEY (`id`),
  UNIQUE KEY `seats_event_id_seat_id_unique` (`event_id`,`seat_id`),
  UNIQUE KEY `seats_event_seat_unique` (`event_id`,`seat_id`),
  KEY `seats_event_id_is_active_index` (`event_id`,`is_active`),
  KEY `seats_seat_id_index` (`seat_id`),
  KEY `seats_event_id_index` (`event_id`),
  KEY `seats_event_id_seat_type_index` (`event_id`,`seat_type`),
  KEY `seats_event_id_section_id_index` (`event_id`,`section_id`),
  KEY `seats_parent_table_id_seat_type_index` (`parent_table_id`,`seat_type`),
  KEY `seats_parent_table_id_index` (`parent_table_id`),
  KEY `seats_section_id_index` (`section_id`),
  KEY `idx_seats_price` (`price`),
  KEY `idx_seats_event_price` (`event_id`,`price`),
  KEY `idx_price_tier` (`price_tier_id`),
  KEY `seats_blocked_until_index` (`blocked_until`),
  CONSTRAINT `seats_price_tier_id_foreign` FOREIGN KEY (`price_tier_id`) REFERENCES `price_tiers` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=1455 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `seats`
--

LOCK TABLES `seats` WRITE;
/*!40000 ALTER TABLE `seats` DISABLE KEYS */;
INSERT INTO `seats` VALUES (26,'9f03124c-67b3-4acf-b2de-8f27778a5aab',NULL,1,'','A1','individual',50.00,NULL,NULL,'',NULL,NULL,NULL,NULL,0,1,0,'2025-11-24 21:34:01','2025-11-24 21:34:01',NULL,NULL),(27,'5c5b7edc-20f9-482f-8811-44b07d99515c',NULL,1,'','B2','individual',60.00,NULL,NULL,'',NULL,NULL,NULL,NULL,0,1,0,'2025-11-24 21:34:01','2025-11-24 21:34:01',NULL,NULL),(28,'2088b9b7-f827-4a47-aa5d-c69e62a615fc',NULL,1,'','C3','individual',70.00,NULL,NULL,'',NULL,NULL,NULL,NULL,0,1,0,'2025-11-24 21:34:01','2025-11-24 21:34:01',NULL,NULL),(29,'dceba2a1-4c1c-4c2d-a83a-935fb3cf72e9',NULL,1,'','D4','individual',80.00,NULL,NULL,'',NULL,NULL,NULL,NULL,0,1,0,'2025-11-24 21:34:01','2025-11-24 21:34:01',NULL,NULL),(30,'b1f69a66-e8d0-4bdf-9173-94bf445b5cfd',NULL,1,'','E5','individual',90.00,NULL,NULL,'',NULL,NULL,NULL,NULL,0,1,0,'2025-11-24 21:34:01','2025-11-24 21:34:01',NULL,NULL),(39,'71abaa1d-477f-4383-8256-e879110e9fbe',NULL,23,'','101','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1376.3478773950628, \"y\": 1133.4121414111594}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"c58a3923-b340-4d3f-bf4d-44635f022fe4\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"101-A1\", \"capacity\": 1, \"position\": {\"x\": 1326.3478773950628, \"y\": 1208.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:31:14.559Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:40.562Z\", \"price_tier_id\": 126}, {\"id\": \"6fc3b427-2010-481b-bb6c-acc772210477\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"101-A2\", \"capacity\": 1, \"position\": {\"x\": 1326.3478773950628, \"y\": 1183.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:31:14.559Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:40.562Z\", \"price_tier_id\": 126}, {\"id\": \"48d18ec3-d8f7-46b7-b801-b8460f06ed6e\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"101-A3\", \"capacity\": 1, \"position\": {\"x\": 1326.3478773950628, \"y\": 1158.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:31:14.559Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:40.562Z\", \"price_tier_id\": 126}, {\"id\": \"3e6db715-9dd5-46b8-9484-bcc1ca342f68\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"101-A4\", \"capacity\": 1, \"position\": {\"x\": 1326.3478773950628, \"y\": 1133.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:31:14.559Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:40.562Z\", \"price_tier_id\": 126}, {\"id\": \"65b16b11-0287-4e73-8741-ab9f2b2aa250\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"101-A5\", \"capacity\": 1, \"position\": {\"x\": 1326.3478773950628, \"y\": 1108.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:31:14.559Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:40.562Z\", \"price_tier_id\": 126}, {\"id\": \"eda1116a-96d1-4d9b-87e7-1ec886efc8c6\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"101-A6\", \"capacity\": 1, \"position\": {\"x\": 1326.3478773950628, \"y\": 1083.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:31:14.559Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:40.562Z\", \"price_tier_id\": 126}, {\"id\": \"c10a7d85-da2b-4d93-8e17-81a71c8d842a\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"101-A7\", \"capacity\": 1, \"position\": {\"x\": 1326.3478773950628, \"y\": 1058.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:31:14.559Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:40.562Z\", \"price_tier_id\": 126}, {\"id\": \"11c38c16-d993-4ca1-a3e7-3388034fcb36\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"101-B1\", \"capacity\": 1, \"position\": {\"x\": 1426.3478773950628, \"y\": 1208.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:31:14.559Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:40.562Z\", \"price_tier_id\": 126}, {\"id\": \"770e860d-9931-448f-b2ce-65951b8af703\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"101-B2\", \"capacity\": 1, \"position\": {\"x\": 1426.3478773950628, \"y\": 1183.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:31:14.559Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:40.562Z\", \"price_tier_id\": 126}, {\"id\": \"1a6464e4-4357-494b-b43b-f8ee54d47792\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"101-B3\", \"capacity\": 1, \"position\": {\"x\": 1426.3478773950628, \"y\": 1158.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:31:14.559Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:40.562Z\", \"price_tier_id\": 126}, {\"id\": \"1690ee7d-a663-4b03-a9e2-7662f6b66c83\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"101-B4\", \"capacity\": 1, \"position\": {\"x\": 1426.3478773950628, \"y\": 1133.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:31:14.559Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:40.562Z\", \"price_tier_id\": 126}, {\"id\": \"ae6afd5e-c466-4c37-b53c-e41a63123de2\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"101-B5\", \"capacity\": 1, \"position\": {\"x\": 1426.3478773950628, \"y\": 1108.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:31:14.559Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:40.562Z\", \"price_tier_id\": 126}, {\"id\": \"ae055e8c-bf63-4f1e-aebe-f7762cef4341\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"101-B6\", \"capacity\": 1, \"position\": {\"x\": 1426.3478773950628, \"y\": 1083.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:31:14.559Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:40.562Z\", \"price_tier_id\": 126}, {\"id\": \"97ea42cc-f5da-45fb-b05d-8ce2985458fe\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"101-B7\", \"capacity\": 1, \"position\": {\"x\": 1426.3478773950628, \"y\": 1058.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:31:14.559Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:40.562Z\", \"price_tier_id\": 126}]','{\"x\": 1376.3478773950628, \"y\": 1133.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(40,'c58a3923-b340-4d3f-bf4d-44635f022fe4','71abaa1d-477f-4383-8256-e879110e9fbe',23,'','101-A1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1326.3478773950628, \"y\": 1208.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(41,'6fc3b427-2010-481b-bb6c-acc772210477','71abaa1d-477f-4383-8256-e879110e9fbe',23,'','101-A2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1326.3478773950628, \"y\": 1183.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(42,'48d18ec3-d8f7-46b7-b801-b8460f06ed6e','71abaa1d-477f-4383-8256-e879110e9fbe',23,'','101-A3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1326.3478773950628, \"y\": 1158.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(43,'3e6db715-9dd5-46b8-9484-bcc1ca342f68','71abaa1d-477f-4383-8256-e879110e9fbe',23,'','101-A4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1326.3478773950628, \"y\": 1133.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(44,'65b16b11-0287-4e73-8741-ab9f2b2aa250','71abaa1d-477f-4383-8256-e879110e9fbe',23,'','101-A5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1326.3478773950628, \"y\": 1108.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(45,'eda1116a-96d1-4d9b-87e7-1ec886efc8c6','71abaa1d-477f-4383-8256-e879110e9fbe',23,'','101-A6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1326.3478773950628, \"y\": 1083.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(46,'c10a7d85-da2b-4d93-8e17-81a71c8d842a','71abaa1d-477f-4383-8256-e879110e9fbe',23,'','101-A7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1326.3478773950628, \"y\": 1058.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(47,'11c38c16-d993-4ca1-a3e7-3388034fcb36','71abaa1d-477f-4383-8256-e879110e9fbe',23,'','101-B1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1426.3478773950628, \"y\": 1208.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(48,'770e860d-9931-448f-b2ce-65951b8af703','71abaa1d-477f-4383-8256-e879110e9fbe',23,'','101-B2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1426.3478773950628, \"y\": 1183.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(49,'1a6464e4-4357-494b-b43b-f8ee54d47792','71abaa1d-477f-4383-8256-e879110e9fbe',23,'','101-B3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1426.3478773950628, \"y\": 1158.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(50,'1690ee7d-a663-4b03-a9e2-7662f6b66c83','71abaa1d-477f-4383-8256-e879110e9fbe',23,'','101-B4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1426.3478773950628, \"y\": 1133.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(51,'ae6afd5e-c466-4c37-b53c-e41a63123de2','71abaa1d-477f-4383-8256-e879110e9fbe',23,'','101-B5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1426.3478773950628, \"y\": 1108.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(52,'ae055e8c-bf63-4f1e-aebe-f7762cef4341','71abaa1d-477f-4383-8256-e879110e9fbe',23,'','101-B6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1426.3478773950628, \"y\": 1083.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(53,'97ea42cc-f5da-45fb-b05d-8ce2985458fe','71abaa1d-477f-4383-8256-e879110e9fbe',23,'','101-B7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1426.3478773950628, \"y\": 1058.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(54,'a37d8cd2-5a61-46a0-9368-2a56f53a1832',NULL,23,'','102','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1511.6201179965058, \"y\": 1133.4121414111594}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"25b4b256-681e-42d0-8b8b-21b311c68fa2\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"102-A1\", \"capacity\": 1, \"position\": {\"x\": 1561.6201179965058, \"y\": 1058.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.514Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.197Z\", \"price_tier_id\": 126}, {\"id\": \"c549d4d5-d669-40ad-a12c-d49d552bacaf\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"102-A2\", \"capacity\": 1, \"position\": {\"x\": 1561.6201179965058, \"y\": 1083.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.514Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.197Z\", \"price_tier_id\": 126}, {\"id\": \"859e5794-e220-428e-8bc5-2873b5cb2224\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"102-A3\", \"capacity\": 1, \"position\": {\"x\": 1561.6201179965058, \"y\": 1108.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.514Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.197Z\", \"price_tier_id\": 126}, {\"id\": \"756a8de3-65f8-4f28-ac78-b1fd59e9e1a9\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"102-A4\", \"capacity\": 1, \"position\": {\"x\": 1561.6201179965058, \"y\": 1133.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.514Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.197Z\", \"price_tier_id\": 126}, {\"id\": \"85b112a4-b7cf-491b-84c3-2eefab563e49\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"102-A5\", \"capacity\": 1, \"position\": {\"x\": 1561.6201179965058, \"y\": 1158.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.514Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.197Z\", \"price_tier_id\": 126}, {\"id\": \"67b04940-9d8b-41c9-9188-fbfcb505bc67\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"102-A6\", \"capacity\": 1, \"position\": {\"x\": 1561.6201179965058, \"y\": 1183.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.514Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.197Z\", \"price_tier_id\": 126}, {\"id\": \"0f4fb057-cc24-4353-b2e4-2a3093482ce3\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"102-A7\", \"capacity\": 1, \"position\": {\"x\": 1561.6201179965058, \"y\": 1208.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.514Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.197Z\", \"price_tier_id\": 126}, {\"id\": \"96f8542b-ba52-4ed8-b0a2-3c92201dd7ff\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"102-B1\", \"capacity\": 1, \"position\": {\"x\": 1461.6201179965058, \"y\": 1058.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.514Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.197Z\", \"price_tier_id\": 126}, {\"id\": \"97c7d498-7aa5-42fe-83b4-f4157881abc7\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"102-B2\", \"capacity\": 1, \"position\": {\"x\": 1461.6201179965058, \"y\": 1083.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.514Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.197Z\", \"price_tier_id\": 126}, {\"id\": \"2599b7e0-408e-4f26-968e-aeb8e1590bdf\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"102-B3\", \"capacity\": 1, \"position\": {\"x\": 1461.6201179965058, \"y\": 1108.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.514Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.197Z\", \"price_tier_id\": 126}, {\"id\": \"bcefe0ce-fdca-411e-8bd0-cd869ace02e2\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"102-B4\", \"capacity\": 1, \"position\": {\"x\": 1461.6201179965058, \"y\": 1133.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.514Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.197Z\", \"price_tier_id\": 126}, {\"id\": \"0b912ddd-f192-42cd-baee-c43bd7bb48cd\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"102-B5\", \"capacity\": 1, \"position\": {\"x\": 1461.6201179965058, \"y\": 1158.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.514Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.197Z\", \"price_tier_id\": 126}, {\"id\": \"52aed440-f86d-45af-b8bb-907484c11d2a\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"102-B6\", \"capacity\": 1, \"position\": {\"x\": 1461.6201179965058, \"y\": 1183.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.514Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.197Z\", \"price_tier_id\": 126}, {\"id\": \"88218a0a-3abe-40f9-8c0a-1210be6db25e\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"102-B7\", \"capacity\": 1, \"position\": {\"x\": 1461.6201179965058, \"y\": 1208.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.514Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.197Z\", \"price_tier_id\": 126}]','{\"x\": 1511.6201179965058, \"y\": 1133.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(55,'25b4b256-681e-42d0-8b8b-21b311c68fa2','a37d8cd2-5a61-46a0-9368-2a56f53a1832',23,'','102-A1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1561.6201179965058, \"y\": 1058.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(56,'c549d4d5-d669-40ad-a12c-d49d552bacaf','a37d8cd2-5a61-46a0-9368-2a56f53a1832',23,'','102-A2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1561.6201179965058, \"y\": 1083.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(57,'859e5794-e220-428e-8bc5-2873b5cb2224','a37d8cd2-5a61-46a0-9368-2a56f53a1832',23,'','102-A3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1561.6201179965058, \"y\": 1108.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(58,'756a8de3-65f8-4f28-ac78-b1fd59e9e1a9','a37d8cd2-5a61-46a0-9368-2a56f53a1832',23,'','102-A4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1561.6201179965058, \"y\": 1133.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(59,'85b112a4-b7cf-491b-84c3-2eefab563e49','a37d8cd2-5a61-46a0-9368-2a56f53a1832',23,'','102-A5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1561.6201179965058, \"y\": 1158.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(60,'67b04940-9d8b-41c9-9188-fbfcb505bc67','a37d8cd2-5a61-46a0-9368-2a56f53a1832',23,'','102-A6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1561.6201179965058, \"y\": 1183.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(61,'0f4fb057-cc24-4353-b2e4-2a3093482ce3','a37d8cd2-5a61-46a0-9368-2a56f53a1832',23,'','102-A7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1561.6201179965058, \"y\": 1208.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(62,'96f8542b-ba52-4ed8-b0a2-3c92201dd7ff','a37d8cd2-5a61-46a0-9368-2a56f53a1832',23,'','102-B1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1461.6201179965058, \"y\": 1058.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(63,'97c7d498-7aa5-42fe-83b4-f4157881abc7','a37d8cd2-5a61-46a0-9368-2a56f53a1832',23,'','102-B2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1461.6201179965058, \"y\": 1083.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(64,'2599b7e0-408e-4f26-968e-aeb8e1590bdf','a37d8cd2-5a61-46a0-9368-2a56f53a1832',23,'','102-B3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1461.6201179965058, \"y\": 1108.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(65,'bcefe0ce-fdca-411e-8bd0-cd869ace02e2','a37d8cd2-5a61-46a0-9368-2a56f53a1832',23,'','102-B4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1461.6201179965058, \"y\": 1133.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(66,'0b912ddd-f192-42cd-baee-c43bd7bb48cd','a37d8cd2-5a61-46a0-9368-2a56f53a1832',23,'','102-B5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1461.6201179965058, \"y\": 1158.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(67,'52aed440-f86d-45af-b8bb-907484c11d2a','a37d8cd2-5a61-46a0-9368-2a56f53a1832',23,'','102-B6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1461.6201179965058, \"y\": 1183.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(68,'88218a0a-3abe-40f9-8c0a-1210be6db25e','a37d8cd2-5a61-46a0-9368-2a56f53a1832',23,'','102-B7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1461.6201179965058, \"y\": 1208.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(69,'13270b8e-3284-411d-bcb2-7aa0632fe252',NULL,23,'','103','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1646.8923585979487, \"y\": 1133.4121414111594}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"e57e8e8a-2eed-4640-bf60-cb339890902e\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"103-A1\", \"capacity\": 1, \"position\": {\"x\": 1696.8923585979487, \"y\": 1058.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.975Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.195Z\", \"price_tier_id\": 126}, {\"id\": \"293f15a9-a090-4c31-a742-c044794f30f3\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"103-A2\", \"capacity\": 1, \"position\": {\"x\": 1696.8923585979487, \"y\": 1083.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.975Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.195Z\", \"price_tier_id\": 126}, {\"id\": \"8910b008-a7c2-421c-85f0-0f6db959a0a4\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"103-A3\", \"capacity\": 1, \"position\": {\"x\": 1696.8923585979487, \"y\": 1108.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.975Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.195Z\", \"price_tier_id\": 126}, {\"id\": \"55b8207e-2056-4e43-a043-00af9d6ada50\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"103-A4\", \"capacity\": 1, \"position\": {\"x\": 1696.8923585979487, \"y\": 1133.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.975Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.195Z\", \"price_tier_id\": 126}, {\"id\": \"93ecfaa7-ef80-4eca-9064-0ec4196fa8be\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"103-A5\", \"capacity\": 1, \"position\": {\"x\": 1696.8923585979487, \"y\": 1158.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.975Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.195Z\", \"price_tier_id\": 126}, {\"id\": \"d300c58d-0f6d-4bf3-b3c9-2fbb389ac585\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"103-A6\", \"capacity\": 1, \"position\": {\"x\": 1696.8923585979487, \"y\": 1183.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.975Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.195Z\", \"price_tier_id\": 126}, {\"id\": \"d070b211-65f3-4b2b-a558-669fe03af08f\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"103-A7\", \"capacity\": 1, \"position\": {\"x\": 1696.8923585979487, \"y\": 1208.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.975Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.195Z\", \"price_tier_id\": 126}, {\"id\": \"d62d8f09-839c-4d96-9cb6-f1bbc53f981a\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"103-B1\", \"capacity\": 1, \"position\": {\"x\": 1596.8923585979487, \"y\": 1058.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.975Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.195Z\", \"price_tier_id\": 126}, {\"id\": \"4596dc13-83e4-4a19-bac9-034b75fedb32\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"103-B2\", \"capacity\": 1, \"position\": {\"x\": 1596.8923585979487, \"y\": 1083.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.975Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.195Z\", \"price_tier_id\": 126}, {\"id\": \"957359d9-0892-47ee-a24e-340bf6395740\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"103-B3\", \"capacity\": 1, \"position\": {\"x\": 1596.8923585979487, \"y\": 1108.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.975Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.195Z\", \"price_tier_id\": 126}, {\"id\": \"39a417fa-795f-4dbe-a214-6d5f912d3b84\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"103-B4\", \"capacity\": 1, \"position\": {\"x\": 1596.8923585979487, \"y\": 1133.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.975Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.195Z\", \"price_tier_id\": 126}, {\"id\": \"d060ef99-04d3-436a-a787-3112329dd35c\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"103-B5\", \"capacity\": 1, \"position\": {\"x\": 1596.8923585979487, \"y\": 1158.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.975Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.195Z\", \"price_tier_id\": 126}, {\"id\": \"7fcea493-f130-4ef8-8c6b-011f5db49023\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"103-B6\", \"capacity\": 1, \"position\": {\"x\": 1596.8923585979487, \"y\": 1183.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.975Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.195Z\", \"price_tier_id\": 126}, {\"id\": \"4e35402a-730f-478f-be65-393959dcd440\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"103-B7\", \"capacity\": 1, \"position\": {\"x\": 1596.8923585979487, \"y\": 1208.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:51.975Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.195Z\", \"price_tier_id\": 126}]','{\"x\": 1646.8923585979487, \"y\": 1133.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(70,'e57e8e8a-2eed-4640-bf60-cb339890902e','13270b8e-3284-411d-bcb2-7aa0632fe252',23,'','103-A1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1696.8923585979487, \"y\": 1058.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(71,'293f15a9-a090-4c31-a742-c044794f30f3','13270b8e-3284-411d-bcb2-7aa0632fe252',23,'','103-A2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1696.8923585979487, \"y\": 1083.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(72,'8910b008-a7c2-421c-85f0-0f6db959a0a4','13270b8e-3284-411d-bcb2-7aa0632fe252',23,'','103-A3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1696.8923585979487, \"y\": 1108.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(73,'55b8207e-2056-4e43-a043-00af9d6ada50','13270b8e-3284-411d-bcb2-7aa0632fe252',23,'','103-A4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1696.8923585979487, \"y\": 1133.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(74,'93ecfaa7-ef80-4eca-9064-0ec4196fa8be','13270b8e-3284-411d-bcb2-7aa0632fe252',23,'','103-A5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1696.8923585979487, \"y\": 1158.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(75,'d300c58d-0f6d-4bf3-b3c9-2fbb389ac585','13270b8e-3284-411d-bcb2-7aa0632fe252',23,'','103-A6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1696.8923585979487, \"y\": 1183.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(76,'d070b211-65f3-4b2b-a558-669fe03af08f','13270b8e-3284-411d-bcb2-7aa0632fe252',23,'','103-A7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1696.8923585979487, \"y\": 1208.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(77,'d62d8f09-839c-4d96-9cb6-f1bbc53f981a','13270b8e-3284-411d-bcb2-7aa0632fe252',23,'','103-B1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1596.8923585979487, \"y\": 1058.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(78,'4596dc13-83e4-4a19-bac9-034b75fedb32','13270b8e-3284-411d-bcb2-7aa0632fe252',23,'','103-B2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1596.8923585979487, \"y\": 1083.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(79,'957359d9-0892-47ee-a24e-340bf6395740','13270b8e-3284-411d-bcb2-7aa0632fe252',23,'','103-B3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1596.8923585979487, \"y\": 1108.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(80,'39a417fa-795f-4dbe-a214-6d5f912d3b84','13270b8e-3284-411d-bcb2-7aa0632fe252',23,'','103-B4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1596.8923585979487, \"y\": 1133.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(81,'d060ef99-04d3-436a-a787-3112329dd35c','13270b8e-3284-411d-bcb2-7aa0632fe252',23,'','103-B5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1596.8923585979487, \"y\": 1158.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(82,'7fcea493-f130-4ef8-8c6b-011f5db49023','13270b8e-3284-411d-bcb2-7aa0632fe252',23,'','103-B6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1596.8923585979487, \"y\": 1183.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(83,'4e35402a-730f-478f-be65-393959dcd440','13270b8e-3284-411d-bcb2-7aa0632fe252',23,'','103-B7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1596.8923585979487, \"y\": 1208.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(84,'28211a2d-5051-4d36-a498-4eecf7bf2619',NULL,23,'','104','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1782.1645991993917, \"y\": 1133.4121414111594}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"d4614a1a-d42c-44e1-b064-3b547f04d4fb\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"104-A1\", \"capacity\": 1, \"position\": {\"x\": 1832.1645991993917, \"y\": 1058.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:52.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.193Z\", \"price_tier_id\": 126}, {\"id\": \"36c38ee4-9c50-4544-808a-55d632536236\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"104-A2\", \"capacity\": 1, \"position\": {\"x\": 1832.1645991993917, \"y\": 1083.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:52.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.193Z\", \"price_tier_id\": 126}, {\"id\": \"e1f9418d-2883-40e8-933e-71ecd179c071\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"104-A3\", \"capacity\": 1, \"position\": {\"x\": 1832.1645991993917, \"y\": 1108.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:52.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.193Z\", \"price_tier_id\": 126}, {\"id\": \"5fd0bae5-628f-4972-86ab-82b2736435ea\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"104-A4\", \"capacity\": 1, \"position\": {\"x\": 1832.1645991993917, \"y\": 1133.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:52.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.193Z\", \"price_tier_id\": 126}, {\"id\": \"e3d0cd15-7dce-4d02-9be9-05286d72fec6\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"104-A5\", \"capacity\": 1, \"position\": {\"x\": 1832.1645991993917, \"y\": 1158.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:52.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.193Z\", \"price_tier_id\": 126}, {\"id\": \"747fbb67-19ad-4033-a569-d7e5d46db0e7\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"104-A6\", \"capacity\": 1, \"position\": {\"x\": 1832.1645991993917, \"y\": 1183.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:52.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.193Z\", \"price_tier_id\": 126}, {\"id\": \"de41c9b7-eb82-4cef-be55-5c0a7998eed1\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"104-A7\", \"capacity\": 1, \"position\": {\"x\": 1832.1645991993917, \"y\": 1208.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:52.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.193Z\", \"price_tier_id\": 126}, {\"id\": \"2fbe49c6-1479-41ae-b582-36eb84d24149\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"104-B1\", \"capacity\": 1, \"position\": {\"x\": 1732.1645991993917, \"y\": 1058.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:52.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.193Z\", \"price_tier_id\": 126}, {\"id\": \"4422abcd-f4ea-461e-b2c8-ac04f005f47f\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"104-B2\", \"capacity\": 1, \"position\": {\"x\": 1732.1645991993917, \"y\": 1083.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:52.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.193Z\", \"price_tier_id\": 126}, {\"id\": \"0369cfaa-d65a-4059-b7e0-05e34efed8d7\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"104-B3\", \"capacity\": 1, \"position\": {\"x\": 1732.1645991993917, \"y\": 1108.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:52.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.193Z\", \"price_tier_id\": 126}, {\"id\": \"2a58cb28-f3d1-474e-bb43-743774021d4c\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"104-B4\", \"capacity\": 1, \"position\": {\"x\": 1732.1645991993917, \"y\": 1133.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:52.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.193Z\", \"price_tier_id\": 126}, {\"id\": \"ac7e7d48-c151-4049-b395-a8268fbf9b6e\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"104-B5\", \"capacity\": 1, \"position\": {\"x\": 1732.1645991993917, \"y\": 1158.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:52.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.193Z\", \"price_tier_id\": 126}, {\"id\": \"6169b779-df60-42ee-9925-2dbd44cbe0fc\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"104-B6\", \"capacity\": 1, \"position\": {\"x\": 1732.1645991993917, \"y\": 1183.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:52.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.193Z\", \"price_tier_id\": 126}, {\"id\": \"e674d2c2-5c55-41c2-b177-12c523a234c4\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"104-B7\", \"capacity\": 1, \"position\": {\"x\": 1732.1645991993917, \"y\": 1208.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:52.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.193Z\", \"price_tier_id\": 126}]','{\"x\": 1782.1645991993917, \"y\": 1133.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(85,'d4614a1a-d42c-44e1-b064-3b547f04d4fb','28211a2d-5051-4d36-a498-4eecf7bf2619',23,'','104-A1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1832.1645991993917, \"y\": 1058.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(86,'36c38ee4-9c50-4544-808a-55d632536236','28211a2d-5051-4d36-a498-4eecf7bf2619',23,'','104-A2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1832.1645991993917, \"y\": 1083.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(87,'e1f9418d-2883-40e8-933e-71ecd179c071','28211a2d-5051-4d36-a498-4eecf7bf2619',23,'','104-A3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1832.1645991993917, \"y\": 1108.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(88,'5fd0bae5-628f-4972-86ab-82b2736435ea','28211a2d-5051-4d36-a498-4eecf7bf2619',23,'','104-A4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1832.1645991993917, \"y\": 1133.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(89,'e3d0cd15-7dce-4d02-9be9-05286d72fec6','28211a2d-5051-4d36-a498-4eecf7bf2619',23,'','104-A5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1832.1645991993917, \"y\": 1158.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(90,'747fbb67-19ad-4033-a569-d7e5d46db0e7','28211a2d-5051-4d36-a498-4eecf7bf2619',23,'','104-A6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1832.1645991993917, \"y\": 1183.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(91,'de41c9b7-eb82-4cef-be55-5c0a7998eed1','28211a2d-5051-4d36-a498-4eecf7bf2619',23,'','104-A7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1832.1645991993917, \"y\": 1208.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(92,'2fbe49c6-1479-41ae-b582-36eb84d24149','28211a2d-5051-4d36-a498-4eecf7bf2619',23,'','104-B1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1732.1645991993917, \"y\": 1058.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(93,'4422abcd-f4ea-461e-b2c8-ac04f005f47f','28211a2d-5051-4d36-a498-4eecf7bf2619',23,'','104-B2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1732.1645991993917, \"y\": 1083.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(94,'0369cfaa-d65a-4059-b7e0-05e34efed8d7','28211a2d-5051-4d36-a498-4eecf7bf2619',23,'','104-B3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1732.1645991993917, \"y\": 1108.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(95,'2a58cb28-f3d1-474e-bb43-743774021d4c','28211a2d-5051-4d36-a498-4eecf7bf2619',23,'','104-B4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1732.1645991993917, \"y\": 1133.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(96,'ac7e7d48-c151-4049-b395-a8268fbf9b6e','28211a2d-5051-4d36-a498-4eecf7bf2619',23,'','104-B5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1732.1645991993917, \"y\": 1158.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(97,'6169b779-df60-42ee-9925-2dbd44cbe0fc','28211a2d-5051-4d36-a498-4eecf7bf2619',23,'','104-B6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1732.1645991993917, \"y\": 1183.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(98,'e674d2c2-5c55-41c2-b177-12c523a234c4','28211a2d-5051-4d36-a498-4eecf7bf2619',23,'','104-B7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1732.1645991993917, \"y\": 1208.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(99,'3c0113b9-476f-4c43-8db3-8bca500addb8',NULL,23,'','105','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1917.4368398008344, \"y\": 1133.4121414111594}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"a08a1152-2850-421f-b784-7b464a9643f7\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"105-A1\", \"capacity\": 1, \"position\": {\"x\": 1967.4368398008344, \"y\": 1058.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.142Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.191Z\", \"price_tier_id\": 125}, {\"id\": \"c3035c85-6e0e-41c1-836f-80509f0c69d6\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"105-A2\", \"capacity\": 1, \"position\": {\"x\": 1967.4368398008344, \"y\": 1083.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.142Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.191Z\", \"price_tier_id\": 125}, {\"id\": \"0d7109d9-83b6-4394-9233-d39d57f115f1\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"105-A3\", \"capacity\": 1, \"position\": {\"x\": 1967.4368398008344, \"y\": 1108.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.142Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.191Z\", \"price_tier_id\": 125}, {\"id\": \"d4744b71-774a-4e0d-8267-574da981fce6\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"105-A4\", \"capacity\": 1, \"position\": {\"x\": 1967.4368398008344, \"y\": 1133.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.142Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.191Z\", \"price_tier_id\": 125}, {\"id\": \"8b262e17-90d5-4ce2-a0bc-5fe8959b9881\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"105-A5\", \"capacity\": 1, \"position\": {\"x\": 1967.4368398008344, \"y\": 1158.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.142Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.191Z\", \"price_tier_id\": 125}, {\"id\": \"f1ed4c44-3f93-43b7-bfab-d93562373adc\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"105-A6\", \"capacity\": 1, \"position\": {\"x\": 1967.4368398008344, \"y\": 1183.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.142Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.191Z\", \"price_tier_id\": 125}, {\"id\": \"64135dc4-a12b-4bfa-8c66-fbc2ee09b216\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"105-A7\", \"capacity\": 1, \"position\": {\"x\": 1967.4368398008344, \"y\": 1208.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.142Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.191Z\", \"price_tier_id\": 125}, {\"id\": \"4984c704-ab27-42ab-855d-2a312fdab14d\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"105-B1\", \"capacity\": 1, \"position\": {\"x\": 1867.4368398008344, \"y\": 1058.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.142Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.191Z\", \"price_tier_id\": 125}, {\"id\": \"dd2b021d-7e35-4803-a896-2b353329c8f6\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"105-B2\", \"capacity\": 1, \"position\": {\"x\": 1867.4368398008344, \"y\": 1083.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.142Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.191Z\", \"price_tier_id\": 125}, {\"id\": \"3025af5b-7212-46b6-b8b6-0e429deb13d1\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"105-B3\", \"capacity\": 1, \"position\": {\"x\": 1867.4368398008344, \"y\": 1108.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.142Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.191Z\", \"price_tier_id\": 125}, {\"id\": \"ace2c87c-7d46-4576-9a5b-770636b76b86\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"105-B4\", \"capacity\": 1, \"position\": {\"x\": 1867.4368398008344, \"y\": 1133.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.142Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.191Z\", \"price_tier_id\": 125}, {\"id\": \"e5ac551b-e59e-454e-abbe-8f0b88ac650b\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"105-B5\", \"capacity\": 1, \"position\": {\"x\": 1867.4368398008344, \"y\": 1158.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.142Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.191Z\", \"price_tier_id\": 125}, {\"id\": \"07eb9ca5-379b-49df-a7ce-091ff9728b78\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"105-B6\", \"capacity\": 1, \"position\": {\"x\": 1867.4368398008344, \"y\": 1183.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.142Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.191Z\", \"price_tier_id\": 125}, {\"id\": \"d80c134d-0026-41af-a032-c646110b5d88\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"105-B7\", \"capacity\": 1, \"position\": {\"x\": 1867.4368398008344, \"y\": 1208.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.142Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.191Z\", \"price_tier_id\": 125}]','{\"x\": 1917.4368398008344, \"y\": 1133.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(100,'a08a1152-2850-421f-b784-7b464a9643f7','3c0113b9-476f-4c43-8db3-8bca500addb8',23,'','105-A1','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 1967.4368398008344, \"y\": 1058.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(101,'c3035c85-6e0e-41c1-836f-80509f0c69d6','3c0113b9-476f-4c43-8db3-8bca500addb8',23,'','105-A2','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 1967.4368398008344, \"y\": 1083.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(102,'0d7109d9-83b6-4394-9233-d39d57f115f1','3c0113b9-476f-4c43-8db3-8bca500addb8',23,'','105-A3','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 1967.4368398008344, \"y\": 1108.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(103,'d4744b71-774a-4e0d-8267-574da981fce6','3c0113b9-476f-4c43-8db3-8bca500addb8',23,'','105-A4','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 1967.4368398008344, \"y\": 1133.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(104,'8b262e17-90d5-4ce2-a0bc-5fe8959b9881','3c0113b9-476f-4c43-8db3-8bca500addb8',23,'','105-A5','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 1967.4368398008344, \"y\": 1158.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(105,'f1ed4c44-3f93-43b7-bfab-d93562373adc','3c0113b9-476f-4c43-8db3-8bca500addb8',23,'','105-A6','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 1967.4368398008344, \"y\": 1183.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(106,'64135dc4-a12b-4bfa-8c66-fbc2ee09b216','3c0113b9-476f-4c43-8db3-8bca500addb8',23,'','105-A7','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 1967.4368398008344, \"y\": 1208.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(107,'4984c704-ab27-42ab-855d-2a312fdab14d','3c0113b9-476f-4c43-8db3-8bca500addb8',23,'','105-B1','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 1867.4368398008344, \"y\": 1058.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(108,'dd2b021d-7e35-4803-a896-2b353329c8f6','3c0113b9-476f-4c43-8db3-8bca500addb8',23,'','105-B2','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 1867.4368398008344, \"y\": 1083.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(109,'3025af5b-7212-46b6-b8b6-0e429deb13d1','3c0113b9-476f-4c43-8db3-8bca500addb8',23,'','105-B3','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 1867.4368398008344, \"y\": 1108.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(110,'ace2c87c-7d46-4576-9a5b-770636b76b86','3c0113b9-476f-4c43-8db3-8bca500addb8',23,'','105-B4','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 1867.4368398008344, \"y\": 1133.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(111,'e5ac551b-e59e-454e-abbe-8f0b88ac650b','3c0113b9-476f-4c43-8db3-8bca500addb8',23,'','105-B5','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 1867.4368398008344, \"y\": 1158.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(112,'07eb9ca5-379b-49df-a7ce-091ff9728b78','3c0113b9-476f-4c43-8db3-8bca500addb8',23,'','105-B6','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 1867.4368398008344, \"y\": 1183.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(113,'d80c134d-0026-41af-a032-c646110b5d88','3c0113b9-476f-4c43-8db3-8bca500addb8',23,'','105-B7','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 1867.4368398008344, \"y\": 1208.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(114,'dfa71bfc-064b-4e02-83c8-363b97dd50f7',NULL,23,'','106','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2052.7090804022773, \"y\": 1133.4121414111594}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"488b0ef5-c951-4bb8-9195-8860d8bb439a\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"106-A1\", \"capacity\": 1, \"position\": {\"x\": 2102.7090804022773, \"y\": 1058.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.792Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.201Z\", \"price_tier_id\": 125}, {\"id\": \"e8871962-2ae0-4ec7-bd7b-c3a4262e7b31\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"106-A2\", \"capacity\": 1, \"position\": {\"x\": 2102.7090804022773, \"y\": 1083.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.792Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.201Z\", \"price_tier_id\": 125}, {\"id\": \"3d147316-4386-4f21-9b60-7cbd6fa950e6\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"106-A3\", \"capacity\": 1, \"position\": {\"x\": 2102.7090804022773, \"y\": 1108.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.792Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.201Z\", \"price_tier_id\": 125}, {\"id\": \"68359aad-75c9-4dbf-b2ef-33583b710b45\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"106-A4\", \"capacity\": 1, \"position\": {\"x\": 2102.7090804022773, \"y\": 1133.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.792Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.201Z\", \"price_tier_id\": 125}, {\"id\": \"4d5ee896-41df-49e9-b28f-f5c91b8b017d\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"106-A5\", \"capacity\": 1, \"position\": {\"x\": 2102.7090804022773, \"y\": 1158.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.792Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.201Z\", \"price_tier_id\": 125}, {\"id\": \"60e1eaae-6458-4bcc-acb9-5abd0b0d28e0\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"106-A6\", \"capacity\": 1, \"position\": {\"x\": 2102.7090804022773, \"y\": 1183.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.792Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.201Z\", \"price_tier_id\": 125}, {\"id\": \"0210a0ff-7ab1-4994-ba09-1c3ce0c1c424\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"106-A7\", \"capacity\": 1, \"position\": {\"x\": 2102.7090804022773, \"y\": 1208.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.792Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.201Z\", \"price_tier_id\": 125}, {\"id\": \"02400cac-db83-42b5-a21f-66e43e39e9aa\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"106-B1\", \"capacity\": 1, \"position\": {\"x\": 2002.709080402277, \"y\": 1058.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.792Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.201Z\", \"price_tier_id\": 125}, {\"id\": \"5a870030-596f-40d5-a988-ef82d3cd449f\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"106-B2\", \"capacity\": 1, \"position\": {\"x\": 2002.709080402277, \"y\": 1083.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.792Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.201Z\", \"price_tier_id\": 125}, {\"id\": \"3eb4a30b-6c43-48f4-bbf7-3e709608b79e\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"106-B3\", \"capacity\": 1, \"position\": {\"x\": 2002.709080402277, \"y\": 1108.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.792Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.201Z\", \"price_tier_id\": 125}, {\"id\": \"04e0832c-2e42-4303-858a-36afad31f716\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"106-B4\", \"capacity\": 1, \"position\": {\"x\": 2002.709080402277, \"y\": 1133.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.792Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.201Z\", \"price_tier_id\": 125}, {\"id\": \"a0e58873-1c19-4de0-8c06-296c13a66746\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"106-B5\", \"capacity\": 1, \"position\": {\"x\": 2002.709080402277, \"y\": 1158.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.792Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.201Z\", \"price_tier_id\": 125}, {\"id\": \"4ce6a336-fc49-47b0-938c-ef79e2e7d0f9\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"106-B6\", \"capacity\": 1, \"position\": {\"x\": 2002.709080402277, \"y\": 1183.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.792Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.201Z\", \"price_tier_id\": 125}, {\"id\": \"77636282-f437-4da0-a55e-50e786c68c43\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"106-B7\", \"capacity\": 1, \"position\": {\"x\": 2002.709080402277, \"y\": 1208.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:53.792Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.201Z\", \"price_tier_id\": 125}]','{\"x\": 2052.7090804022773, \"y\": 1133.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(115,'488b0ef5-c951-4bb8-9195-8860d8bb439a','dfa71bfc-064b-4e02-83c8-363b97dd50f7',23,'','106-A1','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2102.7090804022773, \"y\": 1058.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(116,'e8871962-2ae0-4ec7-bd7b-c3a4262e7b31','dfa71bfc-064b-4e02-83c8-363b97dd50f7',23,'','106-A2','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2102.7090804022773, \"y\": 1083.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(117,'3d147316-4386-4f21-9b60-7cbd6fa950e6','dfa71bfc-064b-4e02-83c8-363b97dd50f7',23,'','106-A3','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2102.7090804022773, \"y\": 1108.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(118,'68359aad-75c9-4dbf-b2ef-33583b710b45','dfa71bfc-064b-4e02-83c8-363b97dd50f7',23,'','106-A4','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2102.7090804022773, \"y\": 1133.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(119,'4d5ee896-41df-49e9-b28f-f5c91b8b017d','dfa71bfc-064b-4e02-83c8-363b97dd50f7',23,'','106-A5','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2102.7090804022773, \"y\": 1158.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(120,'60e1eaae-6458-4bcc-acb9-5abd0b0d28e0','dfa71bfc-064b-4e02-83c8-363b97dd50f7',23,'','106-A6','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2102.7090804022773, \"y\": 1183.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(121,'0210a0ff-7ab1-4994-ba09-1c3ce0c1c424','dfa71bfc-064b-4e02-83c8-363b97dd50f7',23,'','106-A7','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2102.7090804022773, \"y\": 1208.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(122,'02400cac-db83-42b5-a21f-66e43e39e9aa','dfa71bfc-064b-4e02-83c8-363b97dd50f7',23,'','106-B1','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2002.709080402277, \"y\": 1058.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(123,'5a870030-596f-40d5-a988-ef82d3cd449f','dfa71bfc-064b-4e02-83c8-363b97dd50f7',23,'','106-B2','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2002.709080402277, \"y\": 1083.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(124,'3eb4a30b-6c43-48f4-bbf7-3e709608b79e','dfa71bfc-064b-4e02-83c8-363b97dd50f7',23,'','106-B3','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2002.709080402277, \"y\": 1108.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(125,'04e0832c-2e42-4303-858a-36afad31f716','dfa71bfc-064b-4e02-83c8-363b97dd50f7',23,'','106-B4','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2002.709080402277, \"y\": 1133.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(126,'a0e58873-1c19-4de0-8c06-296c13a66746','dfa71bfc-064b-4e02-83c8-363b97dd50f7',23,'','106-B5','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2002.709080402277, \"y\": 1158.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(127,'4ce6a336-fc49-47b0-938c-ef79e2e7d0f9','dfa71bfc-064b-4e02-83c8-363b97dd50f7',23,'','106-B6','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2002.709080402277, \"y\": 1183.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(128,'77636282-f437-4da0-a55e-50e786c68c43','dfa71bfc-064b-4e02-83c8-363b97dd50f7',23,'','106-B7','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2002.709080402277, \"y\": 1208.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(129,'f084fc29-bf1c-4414-9a76-9c3543f7dc66',NULL,23,'','107','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2187.9813210037205, \"y\": 1133.4121414111594}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"6c692816-c4bd-4cfc-b528-30d39bbfa52d\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"107-A1\", \"capacity\": 1, \"position\": {\"x\": 2237.9813210037205, \"y\": 1058.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:54.275Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.203Z\", \"price_tier_id\": 125}, {\"id\": \"9e3c9d7f-90ab-4d71-a87c-fa50560eb39d\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"107-A2\", \"capacity\": 1, \"position\": {\"x\": 2237.9813210037205, \"y\": 1083.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:54.275Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.203Z\", \"price_tier_id\": 125}, {\"id\": \"d435ba12-d8fe-4362-96fc-20984b241f20\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"107-A3\", \"capacity\": 1, \"position\": {\"x\": 2237.9813210037205, \"y\": 1108.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:54.275Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.203Z\", \"price_tier_id\": 125}, {\"id\": \"dc7d5e87-71a1-4969-b95a-728efe6762e4\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"107-A4\", \"capacity\": 1, \"position\": {\"x\": 2237.9813210037205, \"y\": 1133.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:54.275Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.203Z\", \"price_tier_id\": 125}, {\"id\": \"7496deaf-61e7-4ee6-8dc9-2ca78481f36a\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"107-A5\", \"capacity\": 1, \"position\": {\"x\": 2237.9813210037205, \"y\": 1158.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:54.275Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.203Z\", \"price_tier_id\": 125}, {\"id\": \"c77482e1-aef4-4fc2-ad02-350fa3c3c0aa\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"107-A6\", \"capacity\": 1, \"position\": {\"x\": 2237.9813210037205, \"y\": 1183.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:54.275Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.203Z\", \"price_tier_id\": 125}, {\"id\": \"4e3f0e99-0aa4-4eca-a039-55390b4dffd4\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"107-A7\", \"capacity\": 1, \"position\": {\"x\": 2237.9813210037205, \"y\": 1208.4121414111594}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:54.275Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.203Z\", \"price_tier_id\": 125}, {\"id\": \"836243a7-a250-4d68-8aaf-a4ae4c7a92e7\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"107-B1\", \"capacity\": 1, \"position\": {\"x\": 2137.9813210037205, \"y\": 1058.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:54.275Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.203Z\", \"price_tier_id\": 125}, {\"id\": \"44d5ef8d-1585-49c6-8b31-a65a17db3d22\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"107-B2\", \"capacity\": 1, \"position\": {\"x\": 2137.9813210037205, \"y\": 1083.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:54.275Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.203Z\", \"price_tier_id\": 125}, {\"id\": \"163c5490-de64-428b-96e4-9ec704ea3005\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"107-B3\", \"capacity\": 1, \"position\": {\"x\": 2137.9813210037205, \"y\": 1108.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:54.275Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.203Z\", \"price_tier_id\": 125}, {\"id\": \"1ba9eb1d-c735-41da-b8ad-4c23498d846b\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"107-B4\", \"capacity\": 1, \"position\": {\"x\": 2137.9813210037205, \"y\": 1133.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:54.275Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.203Z\", \"price_tier_id\": 125}, {\"id\": \"8249f879-7078-4fcb-8625-6d4ef9a19072\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"107-B5\", \"capacity\": 1, \"position\": {\"x\": 2137.9813210037205, \"y\": 1158.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:54.275Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.203Z\", \"price_tier_id\": 125}, {\"id\": \"6e535e08-8c26-48e0-8e99-3dfb6ae55e5c\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"107-B6\", \"capacity\": 1, \"position\": {\"x\": 2137.9813210037205, \"y\": 1183.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:54.275Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.203Z\", \"price_tier_id\": 125}, {\"id\": \"2f775946-82bd-4b15-ae14-698a4a7dde78\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"107-B7\", \"capacity\": 1, \"position\": {\"x\": 2137.9813210037205, \"y\": 1208.4121414111594}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:54.275Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.203Z\", \"price_tier_id\": 125}]','{\"x\": 2187.9813210037205, \"y\": 1133.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(130,'6c692816-c4bd-4cfc-b528-30d39bbfa52d','f084fc29-bf1c-4414-9a76-9c3543f7dc66',23,'','107-A1','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2237.9813210037205, \"y\": 1058.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(131,'9e3c9d7f-90ab-4d71-a87c-fa50560eb39d','f084fc29-bf1c-4414-9a76-9c3543f7dc66',23,'','107-A2','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2237.9813210037205, \"y\": 1083.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(132,'d435ba12-d8fe-4362-96fc-20984b241f20','f084fc29-bf1c-4414-9a76-9c3543f7dc66',23,'','107-A3','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2237.9813210037205, \"y\": 1108.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(133,'dc7d5e87-71a1-4969-b95a-728efe6762e4','f084fc29-bf1c-4414-9a76-9c3543f7dc66',23,'','107-A4','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2237.9813210037205, \"y\": 1133.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(134,'7496deaf-61e7-4ee6-8dc9-2ca78481f36a','f084fc29-bf1c-4414-9a76-9c3543f7dc66',23,'','107-A5','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2237.9813210037205, \"y\": 1158.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(135,'c77482e1-aef4-4fc2-ad02-350fa3c3c0aa','f084fc29-bf1c-4414-9a76-9c3543f7dc66',23,'','107-A6','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2237.9813210037205, \"y\": 1183.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(136,'4e3f0e99-0aa4-4eca-a039-55390b4dffd4','f084fc29-bf1c-4414-9a76-9c3543f7dc66',23,'','107-A7','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2237.9813210037205, \"y\": 1208.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(137,'836243a7-a250-4d68-8aaf-a4ae4c7a92e7','f084fc29-bf1c-4414-9a76-9c3543f7dc66',23,'','107-B1','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2137.9813210037205, \"y\": 1058.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(138,'44d5ef8d-1585-49c6-8b31-a65a17db3d22','f084fc29-bf1c-4414-9a76-9c3543f7dc66',23,'','107-B2','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2137.9813210037205, \"y\": 1083.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(139,'163c5490-de64-428b-96e4-9ec704ea3005','f084fc29-bf1c-4414-9a76-9c3543f7dc66',23,'','107-B3','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2137.9813210037205, \"y\": 1108.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(140,'1ba9eb1d-c735-41da-b8ad-4c23498d846b','f084fc29-bf1c-4414-9a76-9c3543f7dc66',23,'','107-B4','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2137.9813210037205, \"y\": 1133.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(141,'8249f879-7078-4fcb-8625-6d4ef9a19072','f084fc29-bf1c-4414-9a76-9c3543f7dc66',23,'','107-B5','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2137.9813210037205, \"y\": 1158.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(142,'6e535e08-8c26-48e0-8e99-3dfb6ae55e5c','f084fc29-bf1c-4414-9a76-9c3543f7dc66',23,'','107-B6','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2137.9813210037205, \"y\": 1183.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(143,'2f775946-82bd-4b15-ae14-698a4a7dde78','f084fc29-bf1c-4414-9a76-9c3543f7dc66',23,'','107-B7','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2137.9813210037205, \"y\": 1208.4121414111594}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(144,'156c4db4-28ba-455c-9f55-1a417fafafef',NULL,23,'','108','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1376.3478773950628, \"y\": 1421.1920818412568}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"a1f637ac-4e7a-4cf2-8a8c-7788391dacc0\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"108-A1\", \"capacity\": 1, \"position\": {\"x\": 1426.3478773950628, \"y\": 1346.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.310Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.205Z\", \"price_tier_id\": 127}, {\"id\": \"978229c3-3e64-4726-8b6b-519d14e3244d\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"108-A2\", \"capacity\": 1, \"position\": {\"x\": 1426.3478773950628, \"y\": 1371.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.310Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.205Z\", \"price_tier_id\": 127}, {\"id\": \"c1cb332e-582c-4ac2-bd24-1faf4c440fe1\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"108-A3\", \"capacity\": 1, \"position\": {\"x\": 1426.3478773950628, \"y\": 1396.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.310Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.205Z\", \"price_tier_id\": 127}, {\"id\": \"5f25c9c7-a59f-42e3-b4c7-d70158d72bce\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"108-A4\", \"capacity\": 1, \"position\": {\"x\": 1426.3478773950628, \"y\": 1421.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.310Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.205Z\", \"price_tier_id\": 127}, {\"id\": \"cd984aff-84f8-497b-82a6-54139b4840f9\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"108-A5\", \"capacity\": 1, \"position\": {\"x\": 1426.3478773950628, \"y\": 1446.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.310Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.205Z\", \"price_tier_id\": 127}, {\"id\": \"9515b3cb-35f2-424c-b08b-6a805fa28846\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"108-A6\", \"capacity\": 1, \"position\": {\"x\": 1426.3478773950628, \"y\": 1471.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.310Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.205Z\", \"price_tier_id\": 127}, {\"id\": \"e3272d23-7e96-4b2f-b5cf-1016eabaf036\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"108-A7\", \"capacity\": 1, \"position\": {\"x\": 1426.3478773950628, \"y\": 1496.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.310Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.205Z\", \"price_tier_id\": 127}, {\"id\": \"009fa5fc-0ca5-4933-a9fb-623295ef2ef8\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"108-B1\", \"capacity\": 1, \"position\": {\"x\": 1326.3478773950628, \"y\": 1346.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.310Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.205Z\", \"price_tier_id\": 127}, {\"id\": \"8501073b-0eee-436f-890a-db4c95880ca3\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"108-B2\", \"capacity\": 1, \"position\": {\"x\": 1326.3478773950628, \"y\": 1371.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.310Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.205Z\", \"price_tier_id\": 127}, {\"id\": \"fb323cc6-c774-4f70-b1f3-cf228cc6482b\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"108-B3\", \"capacity\": 1, \"position\": {\"x\": 1326.3478773950628, \"y\": 1396.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.310Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.205Z\", \"price_tier_id\": 127}, {\"id\": \"2cb09787-9c57-4518-8d9c-56c8ad3a96e1\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"108-B4\", \"capacity\": 1, \"position\": {\"x\": 1326.3478773950628, \"y\": 1421.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.310Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.205Z\", \"price_tier_id\": 127}, {\"id\": \"c76a9eee-8943-4918-9150-0351b0e39c34\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"108-B5\", \"capacity\": 1, \"position\": {\"x\": 1326.3478773950628, \"y\": 1446.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.310Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.205Z\", \"price_tier_id\": 127}, {\"id\": \"b2742507-0411-41bc-a97a-85bed2595b63\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"108-B6\", \"capacity\": 1, \"position\": {\"x\": 1326.3478773950628, \"y\": 1471.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.310Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.205Z\", \"price_tier_id\": 127}, {\"id\": \"ce78ac8d-f36f-4ef2-b130-1d20122889bd\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"108-B7\", \"capacity\": 1, \"position\": {\"x\": 1326.3478773950628, \"y\": 1496.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.310Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.205Z\", \"price_tier_id\": 127}]','{\"x\": 1376.3478773950628, \"y\": 1421.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(145,'a1f637ac-4e7a-4cf2-8a8c-7788391dacc0','156c4db4-28ba-455c-9f55-1a417fafafef',23,'','108-A1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1426.3478773950628, \"y\": 1346.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(146,'978229c3-3e64-4726-8b6b-519d14e3244d','156c4db4-28ba-455c-9f55-1a417fafafef',23,'','108-A2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1426.3478773950628, \"y\": 1371.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(147,'c1cb332e-582c-4ac2-bd24-1faf4c440fe1','156c4db4-28ba-455c-9f55-1a417fafafef',23,'','108-A3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1426.3478773950628, \"y\": 1396.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(148,'5f25c9c7-a59f-42e3-b4c7-d70158d72bce','156c4db4-28ba-455c-9f55-1a417fafafef',23,'','108-A4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1426.3478773950628, \"y\": 1421.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(149,'cd984aff-84f8-497b-82a6-54139b4840f9','156c4db4-28ba-455c-9f55-1a417fafafef',23,'','108-A5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1426.3478773950628, \"y\": 1446.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(150,'9515b3cb-35f2-424c-b08b-6a805fa28846','156c4db4-28ba-455c-9f55-1a417fafafef',23,'','108-A6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1426.3478773950628, \"y\": 1471.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(151,'e3272d23-7e96-4b2f-b5cf-1016eabaf036','156c4db4-28ba-455c-9f55-1a417fafafef',23,'','108-A7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1426.3478773950628, \"y\": 1496.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(152,'009fa5fc-0ca5-4933-a9fb-623295ef2ef8','156c4db4-28ba-455c-9f55-1a417fafafef',23,'','108-B1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1326.3478773950628, \"y\": 1346.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(153,'8501073b-0eee-436f-890a-db4c95880ca3','156c4db4-28ba-455c-9f55-1a417fafafef',23,'','108-B2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1326.3478773950628, \"y\": 1371.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(154,'fb323cc6-c774-4f70-b1f3-cf228cc6482b','156c4db4-28ba-455c-9f55-1a417fafafef',23,'','108-B3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1326.3478773950628, \"y\": 1396.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(155,'2cb09787-9c57-4518-8d9c-56c8ad3a96e1','156c4db4-28ba-455c-9f55-1a417fafafef',23,'','108-B4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1326.3478773950628, \"y\": 1421.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(156,'c76a9eee-8943-4918-9150-0351b0e39c34','156c4db4-28ba-455c-9f55-1a417fafafef',23,'','108-B5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1326.3478773950628, \"y\": 1446.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(157,'b2742507-0411-41bc-a97a-85bed2595b63','156c4db4-28ba-455c-9f55-1a417fafafef',23,'','108-B6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1326.3478773950628, \"y\": 1471.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(158,'ce78ac8d-f36f-4ef2-b130-1d20122889bd','156c4db4-28ba-455c-9f55-1a417fafafef',23,'','108-B7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1326.3478773950628, \"y\": 1496.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(159,'a67b7894-f1cb-44b7-9955-0f81f50bc3f4',NULL,23,'','109','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1511.6201179965058, \"y\": 1421.1920818412568}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"3e740b44-f9db-43e6-aafd-a184735b5441\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"109-A1\", \"capacity\": 1, \"position\": {\"x\": 1561.6201179965058, \"y\": 1346.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.993Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.209Z\", \"price_tier_id\": 127}, {\"id\": \"66db7737-7cbc-4808-b3f9-1f4e42424833\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"109-A2\", \"capacity\": 1, \"position\": {\"x\": 1561.6201179965058, \"y\": 1371.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.993Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.209Z\", \"price_tier_id\": 127}, {\"id\": \"ea1dd7dd-6c59-4981-9cb4-b22cb7c56541\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"109-A3\", \"capacity\": 1, \"position\": {\"x\": 1561.6201179965058, \"y\": 1396.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.993Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.209Z\", \"price_tier_id\": 127}, {\"id\": \"8a817f8e-09aa-447d-8203-10ca50b8e36e\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"109-A4\", \"capacity\": 1, \"position\": {\"x\": 1561.6201179965058, \"y\": 1421.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.993Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.209Z\", \"price_tier_id\": 127}, {\"id\": \"1eb0ba6b-0304-46ea-bc71-9ed91ca5e6d9\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"109-A5\", \"capacity\": 1, \"position\": {\"x\": 1561.6201179965058, \"y\": 1446.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.993Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.209Z\", \"price_tier_id\": 127}, {\"id\": \"9887cbe2-fc1f-4353-82d9-b611d0008aa8\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"109-A6\", \"capacity\": 1, \"position\": {\"x\": 1561.6201179965058, \"y\": 1471.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.993Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.209Z\", \"price_tier_id\": 127}, {\"id\": \"66daee92-4235-4422-8b73-ada4bb84e676\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"109-A7\", \"capacity\": 1, \"position\": {\"x\": 1561.6201179965058, \"y\": 1496.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.993Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.209Z\", \"price_tier_id\": 127}, {\"id\": \"469b28ed-4dd6-4c41-8c21-6cd3cc259593\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"109-B1\", \"capacity\": 1, \"position\": {\"x\": 1461.6201179965058, \"y\": 1346.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.993Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.209Z\", \"price_tier_id\": 127}, {\"id\": \"386f149a-cb08-4957-a723-154e6d944f64\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"109-B2\", \"capacity\": 1, \"position\": {\"x\": 1461.6201179965058, \"y\": 1371.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.993Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.209Z\", \"price_tier_id\": 127}, {\"id\": \"4328d7f5-7b38-446c-b778-cacd8657c56e\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"109-B3\", \"capacity\": 1, \"position\": {\"x\": 1461.6201179965058, \"y\": 1396.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.993Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.209Z\", \"price_tier_id\": 127}, {\"id\": \"0ff728e7-398e-42f8-b34f-2b5eaf6020a0\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"109-B4\", \"capacity\": 1, \"position\": {\"x\": 1461.6201179965058, \"y\": 1421.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.993Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.209Z\", \"price_tier_id\": 127}, {\"id\": \"99ebf1d7-9f21-4cfa-a5fd-c7e346e79b88\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"109-B5\", \"capacity\": 1, \"position\": {\"x\": 1461.6201179965058, \"y\": 1446.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.993Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.209Z\", \"price_tier_id\": 127}, {\"id\": \"c5fc169b-d249-4c0d-982a-97c9d6e4f358\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"109-B6\", \"capacity\": 1, \"position\": {\"x\": 1461.6201179965058, \"y\": 1471.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.993Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.209Z\", \"price_tier_id\": 127}, {\"id\": \"6b06c51d-205a-41cd-975a-337904ef82c9\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"109-B7\", \"capacity\": 1, \"position\": {\"x\": 1461.6201179965058, \"y\": 1496.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:55.993Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.209Z\", \"price_tier_id\": 127}]','{\"x\": 1511.6201179965058, \"y\": 1421.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(160,'3e740b44-f9db-43e6-aafd-a184735b5441','a67b7894-f1cb-44b7-9955-0f81f50bc3f4',23,'','109-A1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1561.6201179965058, \"y\": 1346.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(161,'66db7737-7cbc-4808-b3f9-1f4e42424833','a67b7894-f1cb-44b7-9955-0f81f50bc3f4',23,'','109-A2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1561.6201179965058, \"y\": 1371.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(162,'ea1dd7dd-6c59-4981-9cb4-b22cb7c56541','a67b7894-f1cb-44b7-9955-0f81f50bc3f4',23,'','109-A3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1561.6201179965058, \"y\": 1396.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(163,'8a817f8e-09aa-447d-8203-10ca50b8e36e','a67b7894-f1cb-44b7-9955-0f81f50bc3f4',23,'','109-A4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1561.6201179965058, \"y\": 1421.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(164,'1eb0ba6b-0304-46ea-bc71-9ed91ca5e6d9','a67b7894-f1cb-44b7-9955-0f81f50bc3f4',23,'','109-A5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1561.6201179965058, \"y\": 1446.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(165,'9887cbe2-fc1f-4353-82d9-b611d0008aa8','a67b7894-f1cb-44b7-9955-0f81f50bc3f4',23,'','109-A6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1561.6201179965058, \"y\": 1471.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(166,'66daee92-4235-4422-8b73-ada4bb84e676','a67b7894-f1cb-44b7-9955-0f81f50bc3f4',23,'','109-A7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1561.6201179965058, \"y\": 1496.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(167,'469b28ed-4dd6-4c41-8c21-6cd3cc259593','a67b7894-f1cb-44b7-9955-0f81f50bc3f4',23,'','109-B1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1461.6201179965058, \"y\": 1346.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(168,'386f149a-cb08-4957-a723-154e6d944f64','a67b7894-f1cb-44b7-9955-0f81f50bc3f4',23,'','109-B2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1461.6201179965058, \"y\": 1371.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(169,'4328d7f5-7b38-446c-b778-cacd8657c56e','a67b7894-f1cb-44b7-9955-0f81f50bc3f4',23,'','109-B3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1461.6201179965058, \"y\": 1396.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(170,'0ff728e7-398e-42f8-b34f-2b5eaf6020a0','a67b7894-f1cb-44b7-9955-0f81f50bc3f4',23,'','109-B4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1461.6201179965058, \"y\": 1421.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(171,'99ebf1d7-9f21-4cfa-a5fd-c7e346e79b88','a67b7894-f1cb-44b7-9955-0f81f50bc3f4',23,'','109-B5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1461.6201179965058, \"y\": 1446.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(172,'c5fc169b-d249-4c0d-982a-97c9d6e4f358','a67b7894-f1cb-44b7-9955-0f81f50bc3f4',23,'','109-B6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1461.6201179965058, \"y\": 1471.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(173,'6b06c51d-205a-41cd-975a-337904ef82c9','a67b7894-f1cb-44b7-9955-0f81f50bc3f4',23,'','109-B7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1461.6201179965058, \"y\": 1496.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(174,'3ee97052-01ad-436c-9e0b-5e3521dd366c',NULL,23,'','110','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1646.8923585979487, \"y\": 1421.1920818412568}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"84d88fb8-78ff-41cc-a29a-2bc2e2f50115\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"110-A1\", \"capacity\": 1, \"position\": {\"x\": 1696.8923585979487, \"y\": 1346.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:56.557Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.207Z\", \"price_tier_id\": 127}, {\"id\": \"fba2f2dc-f1d9-4a7f-b387-0a7430c8d631\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"110-A2\", \"capacity\": 1, \"position\": {\"x\": 1696.8923585979487, \"y\": 1371.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:56.557Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.207Z\", \"price_tier_id\": 127}, {\"id\": \"3b79cd67-3521-4e87-88c4-c61021ff58d2\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"110-A3\", \"capacity\": 1, \"position\": {\"x\": 1696.8923585979487, \"y\": 1396.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:56.557Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.207Z\", \"price_tier_id\": 127}, {\"id\": \"87a9c770-01aa-44ea-8460-af9d6e1f8315\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"110-A4\", \"capacity\": 1, \"position\": {\"x\": 1696.8923585979487, \"y\": 1421.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:56.557Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.207Z\", \"price_tier_id\": 127}, {\"id\": \"eb5a1ca9-0523-4df7-ad65-f7571be9c4c8\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"110-A5\", \"capacity\": 1, \"position\": {\"x\": 1696.8923585979487, \"y\": 1446.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:56.557Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.207Z\", \"price_tier_id\": 127}, {\"id\": \"c9f95c27-f609-44cb-8c81-8c46a73f3a69\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"110-A6\", \"capacity\": 1, \"position\": {\"x\": 1696.8923585979487, \"y\": 1471.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:56.557Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.207Z\", \"price_tier_id\": 127}, {\"id\": \"36c36ddf-36db-430e-af97-6c036dcc142f\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"110-A7\", \"capacity\": 1, \"position\": {\"x\": 1696.8923585979487, \"y\": 1496.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:56.557Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.207Z\", \"price_tier_id\": 127}, {\"id\": \"97787a62-64aa-4072-8355-f3056eaacc12\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"110-B1\", \"capacity\": 1, \"position\": {\"x\": 1596.8923585979487, \"y\": 1346.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:56.557Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.207Z\", \"price_tier_id\": 127}, {\"id\": \"4d332d21-2319-4a76-94ac-2384547e6933\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"110-B2\", \"capacity\": 1, \"position\": {\"x\": 1596.8923585979487, \"y\": 1371.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:56.557Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.207Z\", \"price_tier_id\": 127}, {\"id\": \"df008323-5df7-4ec8-8c55-86b52e1bab44\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"110-B3\", \"capacity\": 1, \"position\": {\"x\": 1596.8923585979487, \"y\": 1396.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:56.557Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.207Z\", \"price_tier_id\": 127}, {\"id\": \"e581a47c-8e14-47b2-931b-dfbf7e1715d2\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"110-B4\", \"capacity\": 1, \"position\": {\"x\": 1596.8923585979487, \"y\": 1421.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:56.557Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.207Z\", \"price_tier_id\": 127}, {\"id\": \"d5d27865-7df4-4c92-b9b9-a9b5ba64e071\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"110-B5\", \"capacity\": 1, \"position\": {\"x\": 1596.8923585979487, \"y\": 1446.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:56.557Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.207Z\", \"price_tier_id\": 127}, {\"id\": \"caadbe10-5c0a-4309-beb7-bcb198043222\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"110-B6\", \"capacity\": 1, \"position\": {\"x\": 1596.8923585979487, \"y\": 1471.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:56.557Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.207Z\", \"price_tier_id\": 127}, {\"id\": \"3cea4086-43ac-44b2-9dc6-2c1479a7d7c8\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"110-B7\", \"capacity\": 1, \"position\": {\"x\": 1596.8923585979487, \"y\": 1496.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:56.557Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.207Z\", \"price_tier_id\": 127}]','{\"x\": 1646.8923585979487, \"y\": 1421.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(175,'84d88fb8-78ff-41cc-a29a-2bc2e2f50115','3ee97052-01ad-436c-9e0b-5e3521dd366c',23,'','110-A1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1696.8923585979487, \"y\": 1346.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(176,'fba2f2dc-f1d9-4a7f-b387-0a7430c8d631','3ee97052-01ad-436c-9e0b-5e3521dd366c',23,'','110-A2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1696.8923585979487, \"y\": 1371.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(177,'3b79cd67-3521-4e87-88c4-c61021ff58d2','3ee97052-01ad-436c-9e0b-5e3521dd366c',23,'','110-A3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1696.8923585979487, \"y\": 1396.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(178,'87a9c770-01aa-44ea-8460-af9d6e1f8315','3ee97052-01ad-436c-9e0b-5e3521dd366c',23,'','110-A4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1696.8923585979487, \"y\": 1421.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(179,'eb5a1ca9-0523-4df7-ad65-f7571be9c4c8','3ee97052-01ad-436c-9e0b-5e3521dd366c',23,'','110-A5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1696.8923585979487, \"y\": 1446.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(180,'c9f95c27-f609-44cb-8c81-8c46a73f3a69','3ee97052-01ad-436c-9e0b-5e3521dd366c',23,'','110-A6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1696.8923585979487, \"y\": 1471.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(181,'36c36ddf-36db-430e-af97-6c036dcc142f','3ee97052-01ad-436c-9e0b-5e3521dd366c',23,'','110-A7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1696.8923585979487, \"y\": 1496.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(182,'97787a62-64aa-4072-8355-f3056eaacc12','3ee97052-01ad-436c-9e0b-5e3521dd366c',23,'','110-B1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1596.8923585979487, \"y\": 1346.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(183,'4d332d21-2319-4a76-94ac-2384547e6933','3ee97052-01ad-436c-9e0b-5e3521dd366c',23,'','110-B2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1596.8923585979487, \"y\": 1371.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(184,'df008323-5df7-4ec8-8c55-86b52e1bab44','3ee97052-01ad-436c-9e0b-5e3521dd366c',23,'','110-B3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1596.8923585979487, \"y\": 1396.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(185,'e581a47c-8e14-47b2-931b-dfbf7e1715d2','3ee97052-01ad-436c-9e0b-5e3521dd366c',23,'','110-B4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1596.8923585979487, \"y\": 1421.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(186,'d5d27865-7df4-4c92-b9b9-a9b5ba64e071','3ee97052-01ad-436c-9e0b-5e3521dd366c',23,'','110-B5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1596.8923585979487, \"y\": 1446.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(187,'caadbe10-5c0a-4309-beb7-bcb198043222','3ee97052-01ad-436c-9e0b-5e3521dd366c',23,'','110-B6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1596.8923585979487, \"y\": 1471.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(188,'3cea4086-43ac-44b2-9dc6-2c1479a7d7c8','3ee97052-01ad-436c-9e0b-5e3521dd366c',23,'','110-B7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1596.8923585979487, \"y\": 1496.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(189,'9ccb1721-ecd7-4695-9de1-be23ac689b07',NULL,23,'','111','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1782.1645991993917, \"y\": 1421.1920818412568}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"be28ad60-c1f4-4e91-bce5-d032958bf3a8\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"111-A1\", \"capacity\": 1, \"position\": {\"x\": 1832.1645991993917, \"y\": 1346.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:57.158Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.211Z\", \"price_tier_id\": 127}, {\"id\": \"1c2af8cc-fb1f-4d6b-a3be-3cff164fedc6\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"111-A2\", \"capacity\": 1, \"position\": {\"x\": 1832.1645991993917, \"y\": 1371.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:57.158Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.211Z\", \"price_tier_id\": 127}, {\"id\": \"eb2a3ddb-b0ac-41bc-bc16-2ad33f987869\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"111-A3\", \"capacity\": 1, \"position\": {\"x\": 1832.1645991993917, \"y\": 1396.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:57.158Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.211Z\", \"price_tier_id\": 127}, {\"id\": \"f1077567-08ab-4ccb-a951-25683352d46b\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"111-A4\", \"capacity\": 1, \"position\": {\"x\": 1832.1645991993917, \"y\": 1421.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:57.158Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.211Z\", \"price_tier_id\": 127}, {\"id\": \"dd41778f-9d1c-4a21-832a-64be430b1946\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"111-A5\", \"capacity\": 1, \"position\": {\"x\": 1832.1645991993917, \"y\": 1446.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:57.158Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.211Z\", \"price_tier_id\": 127}, {\"id\": \"a4e91ff7-54ab-4ae8-88c5-f54c4606ebf0\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"111-A6\", \"capacity\": 1, \"position\": {\"x\": 1832.1645991993917, \"y\": 1471.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:57.158Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.211Z\", \"price_tier_id\": 127}, {\"id\": \"715bb31c-e215-45ed-b535-92ec39c7f58a\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"111-A7\", \"capacity\": 1, \"position\": {\"x\": 1832.1645991993917, \"y\": 1496.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:57.158Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.211Z\", \"price_tier_id\": 127}, {\"id\": \"2d51c25f-5314-43ed-b943-5d757d830c05\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"111-B1\", \"capacity\": 1, \"position\": {\"x\": 1732.1645991993917, \"y\": 1346.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:57.158Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.211Z\", \"price_tier_id\": 127}, {\"id\": \"f5e0000a-ec0f-48de-8e34-c4ef2f38891b\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"111-B2\", \"capacity\": 1, \"position\": {\"x\": 1732.1645991993917, \"y\": 1371.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:57.158Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.211Z\", \"price_tier_id\": 127}, {\"id\": \"5b34171f-aba8-4158-b3b2-82b88f201d73\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"111-B3\", \"capacity\": 1, \"position\": {\"x\": 1732.1645991993917, \"y\": 1396.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:57.158Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.211Z\", \"price_tier_id\": 127}, {\"id\": \"096836ce-b7a1-46bb-a2f9-2f66b36e45b9\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"111-B4\", \"capacity\": 1, \"position\": {\"x\": 1732.1645991993917, \"y\": 1421.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:57.158Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.211Z\", \"price_tier_id\": 127}, {\"id\": \"152796cc-8d45-4643-bd79-3d5c82003305\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"111-B5\", \"capacity\": 1, \"position\": {\"x\": 1732.1645991993917, \"y\": 1446.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:57.158Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.211Z\", \"price_tier_id\": 127}, {\"id\": \"89d2796c-414f-401b-9e68-e79ec87dbe8c\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"111-B6\", \"capacity\": 1, \"position\": {\"x\": 1732.1645991993917, \"y\": 1471.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:57.158Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.211Z\", \"price_tier_id\": 127}, {\"id\": \"8391a4c8-78ef-4c57-b4c9-c9577202c7ad\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"111-B7\", \"capacity\": 1, \"position\": {\"x\": 1732.1645991993917, \"y\": 1496.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:57.158Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.211Z\", \"price_tier_id\": 127}]','{\"x\": 1782.1645991993917, \"y\": 1421.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(190,'be28ad60-c1f4-4e91-bce5-d032958bf3a8','9ccb1721-ecd7-4695-9de1-be23ac689b07',23,'','111-A1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1832.1645991993917, \"y\": 1346.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(191,'1c2af8cc-fb1f-4d6b-a3be-3cff164fedc6','9ccb1721-ecd7-4695-9de1-be23ac689b07',23,'','111-A2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1832.1645991993917, \"y\": 1371.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(192,'eb2a3ddb-b0ac-41bc-bc16-2ad33f987869','9ccb1721-ecd7-4695-9de1-be23ac689b07',23,'','111-A3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1832.1645991993917, \"y\": 1396.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(193,'f1077567-08ab-4ccb-a951-25683352d46b','9ccb1721-ecd7-4695-9de1-be23ac689b07',23,'','111-A4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1832.1645991993917, \"y\": 1421.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(194,'dd41778f-9d1c-4a21-832a-64be430b1946','9ccb1721-ecd7-4695-9de1-be23ac689b07',23,'','111-A5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1832.1645991993917, \"y\": 1446.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(195,'a4e91ff7-54ab-4ae8-88c5-f54c4606ebf0','9ccb1721-ecd7-4695-9de1-be23ac689b07',23,'','111-A6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1832.1645991993917, \"y\": 1471.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(196,'715bb31c-e215-45ed-b535-92ec39c7f58a','9ccb1721-ecd7-4695-9de1-be23ac689b07',23,'','111-A7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1832.1645991993917, \"y\": 1496.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(197,'2d51c25f-5314-43ed-b943-5d757d830c05','9ccb1721-ecd7-4695-9de1-be23ac689b07',23,'','111-B1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1732.1645991993917, \"y\": 1346.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(198,'f5e0000a-ec0f-48de-8e34-c4ef2f38891b','9ccb1721-ecd7-4695-9de1-be23ac689b07',23,'','111-B2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1732.1645991993917, \"y\": 1371.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(199,'5b34171f-aba8-4158-b3b2-82b88f201d73','9ccb1721-ecd7-4695-9de1-be23ac689b07',23,'','111-B3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1732.1645991993917, \"y\": 1396.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(200,'096836ce-b7a1-46bb-a2f9-2f66b36e45b9','9ccb1721-ecd7-4695-9de1-be23ac689b07',23,'','111-B4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1732.1645991993917, \"y\": 1421.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(201,'152796cc-8d45-4643-bd79-3d5c82003305','9ccb1721-ecd7-4695-9de1-be23ac689b07',23,'','111-B5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1732.1645991993917, \"y\": 1446.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(202,'89d2796c-414f-401b-9e68-e79ec87dbe8c','9ccb1721-ecd7-4695-9de1-be23ac689b07',23,'','111-B6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1732.1645991993917, \"y\": 1471.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(203,'8391a4c8-78ef-4c57-b4c9-c9577202c7ad','9ccb1721-ecd7-4695-9de1-be23ac689b07',23,'','111-B7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1732.1645991993917, \"y\": 1496.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(204,'2ffd6624-0a5d-43ad-9b10-9780bdeaf546',NULL,23,'','112','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1917.4368398008344, \"y\": 1421.1920818412568}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"3f7b81e0-1920-4a72-9d9b-db98048a7e5b\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"112-A1\", \"capacity\": 1, \"position\": {\"x\": 1967.4368398008344, \"y\": 1346.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.111Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.213Z\", \"price_tier_id\": 127}, {\"id\": \"d4b5c451-0f0a-4de9-9071-c88ab164e0fd\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"112-A2\", \"capacity\": 1, \"position\": {\"x\": 1967.4368398008344, \"y\": 1371.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.111Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.213Z\", \"price_tier_id\": 127}, {\"id\": \"b9ce91da-aa65-4b9a-a8d1-aa11a962c8f6\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"112-A3\", \"capacity\": 1, \"position\": {\"x\": 1967.4368398008344, \"y\": 1396.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.111Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.213Z\", \"price_tier_id\": 127}, {\"id\": \"ae28c002-87db-4a1c-b5ae-12b131759428\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"112-A4\", \"capacity\": 1, \"position\": {\"x\": 1967.4368398008344, \"y\": 1421.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.111Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.213Z\", \"price_tier_id\": 127}, {\"id\": \"6937bc1f-31fc-4dc9-9bce-03950d5320c9\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"112-A5\", \"capacity\": 1, \"position\": {\"x\": 1967.4368398008344, \"y\": 1446.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.111Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.213Z\", \"price_tier_id\": 127}, {\"id\": \"5ba48cf0-e12d-4d2a-86c1-3a8c37edecee\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"112-A6\", \"capacity\": 1, \"position\": {\"x\": 1967.4368398008344, \"y\": 1471.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.111Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.213Z\", \"price_tier_id\": 127}, {\"id\": \"bb6d7f78-7408-46d0-b1c6-22d9c229284a\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"112-A7\", \"capacity\": 1, \"position\": {\"x\": 1967.4368398008344, \"y\": 1496.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.111Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.213Z\", \"price_tier_id\": 127}, {\"id\": \"755f95fa-24e9-49c4-934b-bbce505a07e7\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"112-B1\", \"capacity\": 1, \"position\": {\"x\": 1867.4368398008344, \"y\": 1346.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.111Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.213Z\", \"price_tier_id\": 127}, {\"id\": \"74c54a50-36fd-42c8-89d7-af7d3cf5a4ba\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"112-B2\", \"capacity\": 1, \"position\": {\"x\": 1867.4368398008344, \"y\": 1371.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.111Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.213Z\", \"price_tier_id\": 127}, {\"id\": \"f3a1888c-f305-4c7f-a212-690ce3120b2d\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"112-B3\", \"capacity\": 1, \"position\": {\"x\": 1867.4368398008344, \"y\": 1396.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.111Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.213Z\", \"price_tier_id\": 127}, {\"id\": \"63faa049-e946-4ac8-b17d-abf161409137\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"112-B4\", \"capacity\": 1, \"position\": {\"x\": 1867.4368398008344, \"y\": 1421.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.111Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.213Z\", \"price_tier_id\": 127}, {\"id\": \"89cffb86-9474-4151-a9c0-c01185f63f70\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"112-B5\", \"capacity\": 1, \"position\": {\"x\": 1867.4368398008344, \"y\": 1446.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.111Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.213Z\", \"price_tier_id\": 127}, {\"id\": \"59dea3f7-e546-4644-8204-0e862a99b44f\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"112-B6\", \"capacity\": 1, \"position\": {\"x\": 1867.4368398008344, \"y\": 1471.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.111Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.213Z\", \"price_tier_id\": 127}, {\"id\": \"1a824cf3-b848-4f66-9960-69df50ed66ef\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"112-B7\", \"capacity\": 1, \"position\": {\"x\": 1867.4368398008344, \"y\": 1496.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.111Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.213Z\", \"price_tier_id\": 127}]','{\"x\": 1917.4368398008344, \"y\": 1421.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(205,'3f7b81e0-1920-4a72-9d9b-db98048a7e5b','2ffd6624-0a5d-43ad-9b10-9780bdeaf546',23,'','112-A1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1967.4368398008344, \"y\": 1346.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(206,'d4b5c451-0f0a-4de9-9071-c88ab164e0fd','2ffd6624-0a5d-43ad-9b10-9780bdeaf546',23,'','112-A2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1967.4368398008344, \"y\": 1371.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(207,'b9ce91da-aa65-4b9a-a8d1-aa11a962c8f6','2ffd6624-0a5d-43ad-9b10-9780bdeaf546',23,'','112-A3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1967.4368398008344, \"y\": 1396.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(208,'ae28c002-87db-4a1c-b5ae-12b131759428','2ffd6624-0a5d-43ad-9b10-9780bdeaf546',23,'','112-A4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1967.4368398008344, \"y\": 1421.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(209,'6937bc1f-31fc-4dc9-9bce-03950d5320c9','2ffd6624-0a5d-43ad-9b10-9780bdeaf546',23,'','112-A5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1967.4368398008344, \"y\": 1446.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(210,'5ba48cf0-e12d-4d2a-86c1-3a8c37edecee','2ffd6624-0a5d-43ad-9b10-9780bdeaf546',23,'','112-A6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1967.4368398008344, \"y\": 1471.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(211,'bb6d7f78-7408-46d0-b1c6-22d9c229284a','2ffd6624-0a5d-43ad-9b10-9780bdeaf546',23,'','112-A7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1967.4368398008344, \"y\": 1496.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(212,'755f95fa-24e9-49c4-934b-bbce505a07e7','2ffd6624-0a5d-43ad-9b10-9780bdeaf546',23,'','112-B1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1867.4368398008344, \"y\": 1346.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(213,'74c54a50-36fd-42c8-89d7-af7d3cf5a4ba','2ffd6624-0a5d-43ad-9b10-9780bdeaf546',23,'','112-B2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1867.4368398008344, \"y\": 1371.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(214,'f3a1888c-f305-4c7f-a212-690ce3120b2d','2ffd6624-0a5d-43ad-9b10-9780bdeaf546',23,'','112-B3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1867.4368398008344, \"y\": 1396.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(215,'63faa049-e946-4ac8-b17d-abf161409137','2ffd6624-0a5d-43ad-9b10-9780bdeaf546',23,'','112-B4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1867.4368398008344, \"y\": 1421.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(216,'89cffb86-9474-4151-a9c0-c01185f63f70','2ffd6624-0a5d-43ad-9b10-9780bdeaf546',23,'','112-B5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1867.4368398008344, \"y\": 1446.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(217,'59dea3f7-e546-4644-8204-0e862a99b44f','2ffd6624-0a5d-43ad-9b10-9780bdeaf546',23,'','112-B6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1867.4368398008344, \"y\": 1471.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(218,'1a824cf3-b848-4f66-9960-69df50ed66ef','2ffd6624-0a5d-43ad-9b10-9780bdeaf546',23,'','112-B7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1867.4368398008344, \"y\": 1496.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(219,'33b92e5d-74c9-4c9b-8aee-d51ec65eefaf',NULL,23,'','113','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2052.7090804022773, \"y\": 1421.1920818412568}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"4b241366-40f2-4781-900c-8efc91748ed7\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"113-A1\", \"capacity\": 1, \"position\": {\"x\": 2102.7090804022773, \"y\": 1346.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.542Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.215Z\", \"price_tier_id\": 126}, {\"id\": \"ff45c626-62d0-4e9c-87c9-1fa02178e09c\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"113-A2\", \"capacity\": 1, \"position\": {\"x\": 2102.7090804022773, \"y\": 1371.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.542Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.215Z\", \"price_tier_id\": 126}, {\"id\": \"d86a5bc5-bdb0-4bb1-86d6-5f712e889677\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"113-A3\", \"capacity\": 1, \"position\": {\"x\": 2102.7090804022773, \"y\": 1396.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.542Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.215Z\", \"price_tier_id\": 126}, {\"id\": \"c694f729-1647-4740-bd25-5d12c1422b6d\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"113-A4\", \"capacity\": 1, \"position\": {\"x\": 2102.7090804022773, \"y\": 1421.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.542Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.215Z\", \"price_tier_id\": 126}, {\"id\": \"5c43e63b-d5ca-4883-b961-690261af7ef7\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"113-A5\", \"capacity\": 1, \"position\": {\"x\": 2102.7090804022773, \"y\": 1446.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.542Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.215Z\", \"price_tier_id\": 126}, {\"id\": \"d138599e-3428-433e-8317-b2a22655eb7e\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"113-A6\", \"capacity\": 1, \"position\": {\"x\": 2102.7090804022773, \"y\": 1471.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.542Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.215Z\", \"price_tier_id\": 126}, {\"id\": \"526be7a3-9115-46f8-bed6-89aab47b87e1\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"113-A7\", \"capacity\": 1, \"position\": {\"x\": 2102.7090804022773, \"y\": 1496.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.542Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.215Z\", \"price_tier_id\": 126}, {\"id\": \"0027edfe-2c76-4c2a-a41c-88d05f2b00b8\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"113-B1\", \"capacity\": 1, \"position\": {\"x\": 2002.709080402277, \"y\": 1346.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.542Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.215Z\", \"price_tier_id\": 126}, {\"id\": \"e71d33f6-0759-4434-8183-379a6f91e4f8\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"113-B2\", \"capacity\": 1, \"position\": {\"x\": 2002.709080402277, \"y\": 1371.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.542Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.215Z\", \"price_tier_id\": 126}, {\"id\": \"4df2c69a-606b-4351-9621-bf9db0b69d94\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"113-B3\", \"capacity\": 1, \"position\": {\"x\": 2002.709080402277, \"y\": 1396.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.542Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.215Z\", \"price_tier_id\": 126}, {\"id\": \"3340d521-8194-4b46-afda-89bfbf93337e\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"113-B4\", \"capacity\": 1, \"position\": {\"x\": 2002.709080402277, \"y\": 1421.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.542Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.215Z\", \"price_tier_id\": 126}, {\"id\": \"cea750b2-06f0-4c7e-8943-9b5c99a9e2fb\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"113-B5\", \"capacity\": 1, \"position\": {\"x\": 2002.709080402277, \"y\": 1446.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.542Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.215Z\", \"price_tier_id\": 126}, {\"id\": \"35f70704-0339-455a-9768-0a180e52ade7\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"113-B6\", \"capacity\": 1, \"position\": {\"x\": 2002.709080402277, \"y\": 1471.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.542Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.215Z\", \"price_tier_id\": 126}, {\"id\": \"b4e5708c-3f24-438d-ba86-d26e683ac126\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"113-B7\", \"capacity\": 1, \"position\": {\"x\": 2002.709080402277, \"y\": 1496.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:58.542Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.215Z\", \"price_tier_id\": 126}]','{\"x\": 2052.7090804022773, \"y\": 1421.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(220,'4b241366-40f2-4781-900c-8efc91748ed7','33b92e5d-74c9-4c9b-8aee-d51ec65eefaf',23,'','113-A1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2102.7090804022773, \"y\": 1346.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(221,'ff45c626-62d0-4e9c-87c9-1fa02178e09c','33b92e5d-74c9-4c9b-8aee-d51ec65eefaf',23,'','113-A2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2102.7090804022773, \"y\": 1371.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(222,'d86a5bc5-bdb0-4bb1-86d6-5f712e889677','33b92e5d-74c9-4c9b-8aee-d51ec65eefaf',23,'','113-A3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2102.7090804022773, \"y\": 1396.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(223,'c694f729-1647-4740-bd25-5d12c1422b6d','33b92e5d-74c9-4c9b-8aee-d51ec65eefaf',23,'','113-A4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2102.7090804022773, \"y\": 1421.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(224,'5c43e63b-d5ca-4883-b961-690261af7ef7','33b92e5d-74c9-4c9b-8aee-d51ec65eefaf',23,'','113-A5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2102.7090804022773, \"y\": 1446.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(225,'d138599e-3428-433e-8317-b2a22655eb7e','33b92e5d-74c9-4c9b-8aee-d51ec65eefaf',23,'','113-A6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2102.7090804022773, \"y\": 1471.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(226,'526be7a3-9115-46f8-bed6-89aab47b87e1','33b92e5d-74c9-4c9b-8aee-d51ec65eefaf',23,'','113-A7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2102.7090804022773, \"y\": 1496.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(227,'0027edfe-2c76-4c2a-a41c-88d05f2b00b8','33b92e5d-74c9-4c9b-8aee-d51ec65eefaf',23,'','113-B1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2002.709080402277, \"y\": 1346.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(228,'e71d33f6-0759-4434-8183-379a6f91e4f8','33b92e5d-74c9-4c9b-8aee-d51ec65eefaf',23,'','113-B2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2002.709080402277, \"y\": 1371.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(229,'4df2c69a-606b-4351-9621-bf9db0b69d94','33b92e5d-74c9-4c9b-8aee-d51ec65eefaf',23,'','113-B3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2002.709080402277, \"y\": 1396.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(230,'3340d521-8194-4b46-afda-89bfbf93337e','33b92e5d-74c9-4c9b-8aee-d51ec65eefaf',23,'','113-B4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2002.709080402277, \"y\": 1421.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(231,'cea750b2-06f0-4c7e-8943-9b5c99a9e2fb','33b92e5d-74c9-4c9b-8aee-d51ec65eefaf',23,'','113-B5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2002.709080402277, \"y\": 1446.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(232,'35f70704-0339-455a-9768-0a180e52ade7','33b92e5d-74c9-4c9b-8aee-d51ec65eefaf',23,'','113-B6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2002.709080402277, \"y\": 1471.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(233,'b4e5708c-3f24-438d-ba86-d26e683ac126','33b92e5d-74c9-4c9b-8aee-d51ec65eefaf',23,'','113-B7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2002.709080402277, \"y\": 1496.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(234,'f32997dc-c17c-4b0c-b4d0-8b6ac9f54549',NULL,23,'','114','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2187.9813210037205, \"y\": 1421.1920818412568}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"ec2d8788-5f34-43b5-bd6f-f7675bdb0408\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"114-A1\", \"capacity\": 1, \"position\": {\"x\": 2237.9813210037205, \"y\": 1346.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:59.251Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.217Z\", \"price_tier_id\": 126}, {\"id\": \"f2458b9c-6ecd-4c3e-90f9-6c03a86eac7f\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"114-A2\", \"capacity\": 1, \"position\": {\"x\": 2237.9813210037205, \"y\": 1371.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:59.251Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.217Z\", \"price_tier_id\": 126}, {\"id\": \"ecb68fa1-f3ec-4966-97e4-e984a465b17c\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"114-A3\", \"capacity\": 1, \"position\": {\"x\": 2237.9813210037205, \"y\": 1396.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:59.251Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.217Z\", \"price_tier_id\": 126}, {\"id\": \"77215a15-9b96-4715-b05f-7cfd83008b3d\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"114-A4\", \"capacity\": 1, \"position\": {\"x\": 2237.9813210037205, \"y\": 1421.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:59.251Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.217Z\", \"price_tier_id\": 126}, {\"id\": \"789fafc7-6b2b-468f-a39b-ae131e8ebb98\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"114-A5\", \"capacity\": 1, \"position\": {\"x\": 2237.9813210037205, \"y\": 1446.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:59.251Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.217Z\", \"price_tier_id\": 126}, {\"id\": \"3983eab1-e963-46e7-947f-a7331b7f6d2d\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"114-A6\", \"capacity\": 1, \"position\": {\"x\": 2237.9813210037205, \"y\": 1471.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:59.251Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.217Z\", \"price_tier_id\": 126}, {\"id\": \"02122b19-67cd-44d7-8637-af9b975e74b3\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"114-A7\", \"capacity\": 1, \"position\": {\"x\": 2237.9813210037205, \"y\": 1496.1920818412568}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:59.251Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.217Z\", \"price_tier_id\": 126}, {\"id\": \"5e2adcc7-e121-43e4-816a-93990db909c5\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"114-B1\", \"capacity\": 1, \"position\": {\"x\": 2137.9813210037205, \"y\": 1346.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:59.251Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.217Z\", \"price_tier_id\": 126}, {\"id\": \"148af9b7-39ff-4d3d-a5af-882d3ac33f02\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"114-B2\", \"capacity\": 1, \"position\": {\"x\": 2137.9813210037205, \"y\": 1371.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:59.251Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.217Z\", \"price_tier_id\": 126}, {\"id\": \"e00ed2b9-0676-4c9a-8e0f-ef411e4f613f\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"114-B3\", \"capacity\": 1, \"position\": {\"x\": 2137.9813210037205, \"y\": 1396.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:59.251Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.217Z\", \"price_tier_id\": 126}, {\"id\": \"642678fb-a0b9-4827-8c1c-19b8fba7462a\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"114-B4\", \"capacity\": 1, \"position\": {\"x\": 2137.9813210037205, \"y\": 1421.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:59.251Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.217Z\", \"price_tier_id\": 126}, {\"id\": \"5a51dd19-fd5e-4dfb-a0e2-c8f808f12ad4\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"114-B5\", \"capacity\": 1, \"position\": {\"x\": 2137.9813210037205, \"y\": 1446.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:59.251Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.217Z\", \"price_tier_id\": 126}, {\"id\": \"0a241e6f-53e7-4e75-b16f-ae2b22bf6e7e\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"114-B6\", \"capacity\": 1, \"position\": {\"x\": 2137.9813210037205, \"y\": 1471.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:59.251Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.217Z\", \"price_tier_id\": 126}, {\"id\": \"c811a853-8211-4c45-8f9a-6b2f4fcf1c37\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"114-B7\", \"capacity\": 1, \"position\": {\"x\": 2137.9813210037205, \"y\": 1496.1920818412568}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:32:59.251Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.217Z\", \"price_tier_id\": 126}]','{\"x\": 2187.9813210037205, \"y\": 1421.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(235,'ec2d8788-5f34-43b5-bd6f-f7675bdb0408','f32997dc-c17c-4b0c-b4d0-8b6ac9f54549',23,'','114-A1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2237.9813210037205, \"y\": 1346.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(236,'f2458b9c-6ecd-4c3e-90f9-6c03a86eac7f','f32997dc-c17c-4b0c-b4d0-8b6ac9f54549',23,'','114-A2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2237.9813210037205, \"y\": 1371.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(237,'ecb68fa1-f3ec-4966-97e4-e984a465b17c','f32997dc-c17c-4b0c-b4d0-8b6ac9f54549',23,'','114-A3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2237.9813210037205, \"y\": 1396.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(238,'77215a15-9b96-4715-b05f-7cfd83008b3d','f32997dc-c17c-4b0c-b4d0-8b6ac9f54549',23,'','114-A4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2237.9813210037205, \"y\": 1421.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(239,'789fafc7-6b2b-468f-a39b-ae131e8ebb98','f32997dc-c17c-4b0c-b4d0-8b6ac9f54549',23,'','114-A5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2237.9813210037205, \"y\": 1446.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(240,'3983eab1-e963-46e7-947f-a7331b7f6d2d','f32997dc-c17c-4b0c-b4d0-8b6ac9f54549',23,'','114-A6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2237.9813210037205, \"y\": 1471.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(241,'02122b19-67cd-44d7-8637-af9b975e74b3','f32997dc-c17c-4b0c-b4d0-8b6ac9f54549',23,'','114-A7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2237.9813210037205, \"y\": 1496.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(242,'5e2adcc7-e121-43e4-816a-93990db909c5','f32997dc-c17c-4b0c-b4d0-8b6ac9f54549',23,'','114-B1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2137.9813210037205, \"y\": 1346.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(243,'148af9b7-39ff-4d3d-a5af-882d3ac33f02','f32997dc-c17c-4b0c-b4d0-8b6ac9f54549',23,'','114-B2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2137.9813210037205, \"y\": 1371.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(244,'e00ed2b9-0676-4c9a-8e0f-ef411e4f613f','f32997dc-c17c-4b0c-b4d0-8b6ac9f54549',23,'','114-B3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2137.9813210037205, \"y\": 1396.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(245,'642678fb-a0b9-4827-8c1c-19b8fba7462a','f32997dc-c17c-4b0c-b4d0-8b6ac9f54549',23,'','114-B4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2137.9813210037205, \"y\": 1421.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(246,'5a51dd19-fd5e-4dfb-a0e2-c8f808f12ad4','f32997dc-c17c-4b0c-b4d0-8b6ac9f54549',23,'','114-B5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2137.9813210037205, \"y\": 1446.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(247,'0a241e6f-53e7-4e75-b16f-ae2b22bf6e7e','f32997dc-c17c-4b0c-b4d0-8b6ac9f54549',23,'','114-B6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2137.9813210037205, \"y\": 1471.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(248,'c811a853-8211-4c45-8f9a-6b2f4fcf1c37','f32997dc-c17c-4b0c-b4d0-8b6ac9f54549',23,'','114-B7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2137.9813210037205, \"y\": 1496.1920818412568}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(249,'aebf53ed-368d-4b10-8d90-cf50670faa87',NULL,23,'','115','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1376.3478773950628, \"y\": 1708.9720222713545}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"5c44ea2b-7715-4c00-b72e-41532e13cba7\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"115-A1\", \"capacity\": 1, \"position\": {\"x\": 1426.3478773950628, \"y\": 1633.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.133Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.219Z\", \"price_tier_id\": 128}, {\"id\": \"bf67f9a5-e9d5-41d2-a6a3-afb63d0890a1\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"115-A2\", \"capacity\": 1, \"position\": {\"x\": 1426.3478773950628, \"y\": 1658.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.133Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.219Z\", \"price_tier_id\": 128}, {\"id\": \"50c04d4a-d95a-4e43-8a2a-16cf09b6db95\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"115-A3\", \"capacity\": 1, \"position\": {\"x\": 1426.3478773950628, \"y\": 1683.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.133Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.219Z\", \"price_tier_id\": 128}, {\"id\": \"8fa432b0-76a8-4317-bae9-286f8e1acd01\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"115-A4\", \"capacity\": 1, \"position\": {\"x\": 1426.3478773950628, \"y\": 1708.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.133Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.219Z\", \"price_tier_id\": 128}, {\"id\": \"50d62f6f-13d3-45b9-b8f5-e89aad459d1e\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"115-A5\", \"capacity\": 1, \"position\": {\"x\": 1426.3478773950628, \"y\": 1733.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.133Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.219Z\", \"price_tier_id\": 128}, {\"id\": \"f2adde95-215d-4e84-bc94-8438d27f01e2\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"115-A6\", \"capacity\": 1, \"position\": {\"x\": 1426.3478773950628, \"y\": 1758.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.133Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.219Z\", \"price_tier_id\": 128}, {\"id\": \"5e56505a-92ac-4074-b365-69689708c967\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"115-A7\", \"capacity\": 1, \"position\": {\"x\": 1426.3478773950628, \"y\": 1783.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.133Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.219Z\", \"price_tier_id\": 128}, {\"id\": \"5094e349-8a75-4675-92e4-3a2183050333\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"115-B1\", \"capacity\": 1, \"position\": {\"x\": 1326.3478773950628, \"y\": 1633.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.133Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.219Z\", \"price_tier_id\": 128}, {\"id\": \"ee96b5db-698c-48a4-b765-aa8ca06ae2ba\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"115-B2\", \"capacity\": 1, \"position\": {\"x\": 1326.3478773950628, \"y\": 1658.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.133Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.219Z\", \"price_tier_id\": 128}, {\"id\": \"2fd9948f-248e-46c3-a129-e4b378864cff\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"115-B3\", \"capacity\": 1, \"position\": {\"x\": 1326.3478773950628, \"y\": 1683.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.133Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.219Z\", \"price_tier_id\": 128}, {\"id\": \"36e7b046-1735-49eb-a439-ac38f7a15261\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"115-B4\", \"capacity\": 1, \"position\": {\"x\": 1326.3478773950628, \"y\": 1708.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.133Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.219Z\", \"price_tier_id\": 128}, {\"id\": \"883aebfb-34e5-4a2f-addc-7eea2397a53c\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"115-B5\", \"capacity\": 1, \"position\": {\"x\": 1326.3478773950628, \"y\": 1733.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.133Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.219Z\", \"price_tier_id\": 128}, {\"id\": \"3bca8bfa-c43e-4ab9-9d2f-fba98822c260\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"115-B6\", \"capacity\": 1, \"position\": {\"x\": 1326.3478773950628, \"y\": 1758.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.133Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.219Z\", \"price_tier_id\": 128}, {\"id\": \"7eebf46c-08c4-41a0-88ac-a945d4eac9f0\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"115-B7\", \"capacity\": 1, \"position\": {\"x\": 1326.3478773950628, \"y\": 1783.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.133Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.219Z\", \"price_tier_id\": 128}]','{\"x\": 1376.3478773950628, \"y\": 1708.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(250,'5c44ea2b-7715-4c00-b72e-41532e13cba7','aebf53ed-368d-4b10-8d90-cf50670faa87',23,'','115-A1','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1426.3478773950628, \"y\": 1633.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(251,'bf67f9a5-e9d5-41d2-a6a3-afb63d0890a1','aebf53ed-368d-4b10-8d90-cf50670faa87',23,'','115-A2','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1426.3478773950628, \"y\": 1658.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(252,'50c04d4a-d95a-4e43-8a2a-16cf09b6db95','aebf53ed-368d-4b10-8d90-cf50670faa87',23,'','115-A3','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1426.3478773950628, \"y\": 1683.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(253,'8fa432b0-76a8-4317-bae9-286f8e1acd01','aebf53ed-368d-4b10-8d90-cf50670faa87',23,'','115-A4','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1426.3478773950628, \"y\": 1708.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(254,'50d62f6f-13d3-45b9-b8f5-e89aad459d1e','aebf53ed-368d-4b10-8d90-cf50670faa87',23,'','115-A5','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1426.3478773950628, \"y\": 1733.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(255,'f2adde95-215d-4e84-bc94-8438d27f01e2','aebf53ed-368d-4b10-8d90-cf50670faa87',23,'','115-A6','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1426.3478773950628, \"y\": 1758.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(256,'5e56505a-92ac-4074-b365-69689708c967','aebf53ed-368d-4b10-8d90-cf50670faa87',23,'','115-A7','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1426.3478773950628, \"y\": 1783.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(257,'5094e349-8a75-4675-92e4-3a2183050333','aebf53ed-368d-4b10-8d90-cf50670faa87',23,'','115-B1','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1326.3478773950628, \"y\": 1633.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(258,'ee96b5db-698c-48a4-b765-aa8ca06ae2ba','aebf53ed-368d-4b10-8d90-cf50670faa87',23,'','115-B2','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1326.3478773950628, \"y\": 1658.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(259,'2fd9948f-248e-46c3-a129-e4b378864cff','aebf53ed-368d-4b10-8d90-cf50670faa87',23,'','115-B3','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1326.3478773950628, \"y\": 1683.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(260,'36e7b046-1735-49eb-a439-ac38f7a15261','aebf53ed-368d-4b10-8d90-cf50670faa87',23,'','115-B4','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1326.3478773950628, \"y\": 1708.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(261,'883aebfb-34e5-4a2f-addc-7eea2397a53c','aebf53ed-368d-4b10-8d90-cf50670faa87',23,'','115-B5','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1326.3478773950628, \"y\": 1733.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(262,'3bca8bfa-c43e-4ab9-9d2f-fba98822c260','aebf53ed-368d-4b10-8d90-cf50670faa87',23,'','115-B6','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1326.3478773950628, \"y\": 1758.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(263,'7eebf46c-08c4-41a0-88ac-a945d4eac9f0','aebf53ed-368d-4b10-8d90-cf50670faa87',23,'','115-B7','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1326.3478773950628, \"y\": 1783.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(264,'5857929a-49e9-47f7-982e-7f2ce6cc9cc8',NULL,23,'','116','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1511.6201179965058, \"y\": 1708.9720222713545}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"e0142434-52b0-430f-910b-27ceffde72f4\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"116-A1\", \"capacity\": 1, \"position\": {\"x\": 1561.6201179965058, \"y\": 1633.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.644Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.221Z\", \"price_tier_id\": 128}, {\"id\": \"3c7cad8e-9ed5-47d1-881e-47202bba2376\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"116-A2\", \"capacity\": 1, \"position\": {\"x\": 1561.6201179965058, \"y\": 1658.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.644Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.221Z\", \"price_tier_id\": 128}, {\"id\": \"a84a42c0-af8f-465e-953a-b77a3a53511a\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"116-A3\", \"capacity\": 1, \"position\": {\"x\": 1561.6201179965058, \"y\": 1683.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.644Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.221Z\", \"price_tier_id\": 128}, {\"id\": \"dd052a29-4cc4-4daa-a8ec-322470b5d70c\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"116-A4\", \"capacity\": 1, \"position\": {\"x\": 1561.6201179965058, \"y\": 1708.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.644Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.221Z\", \"price_tier_id\": 128}, {\"id\": \"9bcbd6e2-8918-44cf-8136-554e9528085e\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"116-A5\", \"capacity\": 1, \"position\": {\"x\": 1561.6201179965058, \"y\": 1733.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.644Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.221Z\", \"price_tier_id\": 128}, {\"id\": \"3611e117-c6a9-4422-91bf-996545c42e18\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"116-A6\", \"capacity\": 1, \"position\": {\"x\": 1561.6201179965058, \"y\": 1758.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.644Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.221Z\", \"price_tier_id\": 128}, {\"id\": \"f2d18e3f-5b1c-4eac-9cdd-d0d76da01bb1\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"116-A7\", \"capacity\": 1, \"position\": {\"x\": 1561.6201179965058, \"y\": 1783.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.644Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.221Z\", \"price_tier_id\": 128}, {\"id\": \"5fd176c5-1d94-4f93-9d10-57f5e200d336\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"116-B1\", \"capacity\": 1, \"position\": {\"x\": 1461.6201179965058, \"y\": 1633.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.644Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.221Z\", \"price_tier_id\": 128}, {\"id\": \"2b603349-dc3b-4550-af67-3e88685d3454\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"116-B2\", \"capacity\": 1, \"position\": {\"x\": 1461.6201179965058, \"y\": 1658.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.644Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.221Z\", \"price_tier_id\": 128}, {\"id\": \"25538fa4-5762-4388-ac3c-d7a7d13e617b\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"116-B3\", \"capacity\": 1, \"position\": {\"x\": 1461.6201179965058, \"y\": 1683.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.644Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.221Z\", \"price_tier_id\": 128}, {\"id\": \"e0275ef1-db37-4872-835e-7a861c938e2f\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"116-B4\", \"capacity\": 1, \"position\": {\"x\": 1461.6201179965058, \"y\": 1708.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.644Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.221Z\", \"price_tier_id\": 128}, {\"id\": \"27675e18-e1b5-4e02-9a7e-a7e7790d2d56\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"116-B5\", \"capacity\": 1, \"position\": {\"x\": 1461.6201179965058, \"y\": 1733.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.644Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.221Z\", \"price_tier_id\": 128}, {\"id\": \"3149efa3-e02c-4271-b875-d929a6cfe0bd\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"116-B6\", \"capacity\": 1, \"position\": {\"x\": 1461.6201179965058, \"y\": 1758.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.644Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.221Z\", \"price_tier_id\": 128}, {\"id\": \"283d3ef0-98a2-4ef1-9008-2879c336d757\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"116-B7\", \"capacity\": 1, \"position\": {\"x\": 1461.6201179965058, \"y\": 1783.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:00.644Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.221Z\", \"price_tier_id\": 128}]','{\"x\": 1511.6201179965058, \"y\": 1708.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(265,'e0142434-52b0-430f-910b-27ceffde72f4','5857929a-49e9-47f7-982e-7f2ce6cc9cc8',23,'','116-A1','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1561.6201179965058, \"y\": 1633.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(266,'3c7cad8e-9ed5-47d1-881e-47202bba2376','5857929a-49e9-47f7-982e-7f2ce6cc9cc8',23,'','116-A2','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1561.6201179965058, \"y\": 1658.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(267,'a84a42c0-af8f-465e-953a-b77a3a53511a','5857929a-49e9-47f7-982e-7f2ce6cc9cc8',23,'','116-A3','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1561.6201179965058, \"y\": 1683.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(268,'dd052a29-4cc4-4daa-a8ec-322470b5d70c','5857929a-49e9-47f7-982e-7f2ce6cc9cc8',23,'','116-A4','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1561.6201179965058, \"y\": 1708.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(269,'9bcbd6e2-8918-44cf-8136-554e9528085e','5857929a-49e9-47f7-982e-7f2ce6cc9cc8',23,'','116-A5','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1561.6201179965058, \"y\": 1733.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(270,'3611e117-c6a9-4422-91bf-996545c42e18','5857929a-49e9-47f7-982e-7f2ce6cc9cc8',23,'','116-A6','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1561.6201179965058, \"y\": 1758.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(271,'f2d18e3f-5b1c-4eac-9cdd-d0d76da01bb1','5857929a-49e9-47f7-982e-7f2ce6cc9cc8',23,'','116-A7','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1561.6201179965058, \"y\": 1783.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(272,'5fd176c5-1d94-4f93-9d10-57f5e200d336','5857929a-49e9-47f7-982e-7f2ce6cc9cc8',23,'','116-B1','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1461.6201179965058, \"y\": 1633.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(273,'2b603349-dc3b-4550-af67-3e88685d3454','5857929a-49e9-47f7-982e-7f2ce6cc9cc8',23,'','116-B2','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1461.6201179965058, \"y\": 1658.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(274,'25538fa4-5762-4388-ac3c-d7a7d13e617b','5857929a-49e9-47f7-982e-7f2ce6cc9cc8',23,'','116-B3','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1461.6201179965058, \"y\": 1683.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(275,'e0275ef1-db37-4872-835e-7a861c938e2f','5857929a-49e9-47f7-982e-7f2ce6cc9cc8',23,'','116-B4','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1461.6201179965058, \"y\": 1708.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(276,'27675e18-e1b5-4e02-9a7e-a7e7790d2d56','5857929a-49e9-47f7-982e-7f2ce6cc9cc8',23,'','116-B5','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1461.6201179965058, \"y\": 1733.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(277,'3149efa3-e02c-4271-b875-d929a6cfe0bd','5857929a-49e9-47f7-982e-7f2ce6cc9cc8',23,'','116-B6','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1461.6201179965058, \"y\": 1758.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(278,'283d3ef0-98a2-4ef1-9008-2879c336d757','5857929a-49e9-47f7-982e-7f2ce6cc9cc8',23,'','116-B7','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1461.6201179965058, \"y\": 1783.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(279,'eedefbde-cd3a-4a20-bbfe-ac0a4a791c3b',NULL,23,'','117','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1646.8923585979487, \"y\": 1708.9720222713545}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"44461f79-9772-4f19-a46c-267e9f606a70\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"117-A1\", \"capacity\": 1, \"position\": {\"x\": 1696.8923585979487, \"y\": 1633.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.080Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.223Z\", \"price_tier_id\": 128}, {\"id\": \"a48ba97e-0fa6-41e9-bd64-ebcd7174d923\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"117-A2\", \"capacity\": 1, \"position\": {\"x\": 1696.8923585979487, \"y\": 1658.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.080Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.223Z\", \"price_tier_id\": 128}, {\"id\": \"7ce8581f-5c99-456c-8ea5-6842b06a8f32\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"117-A3\", \"capacity\": 1, \"position\": {\"x\": 1696.8923585979487, \"y\": 1683.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.080Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.223Z\", \"price_tier_id\": 128}, {\"id\": \"298764ef-f1f9-49b8-a81d-4f70f6c8ca87\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"117-A4\", \"capacity\": 1, \"position\": {\"x\": 1696.8923585979487, \"y\": 1708.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.080Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.223Z\", \"price_tier_id\": 128}, {\"id\": \"51495b85-a682-4661-b50f-0bb0f21a12fc\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"117-A5\", \"capacity\": 1, \"position\": {\"x\": 1696.8923585979487, \"y\": 1733.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.080Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.223Z\", \"price_tier_id\": 128}, {\"id\": \"1b44efbd-4e57-4977-8153-53e99d61a71b\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"117-A6\", \"capacity\": 1, \"position\": {\"x\": 1696.8923585979487, \"y\": 1758.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.080Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.223Z\", \"price_tier_id\": 128}, {\"id\": \"b059f66a-ce76-49a0-a1ba-900eade07e75\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"117-A7\", \"capacity\": 1, \"position\": {\"x\": 1696.8923585979487, \"y\": 1783.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.080Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.223Z\", \"price_tier_id\": 128}, {\"id\": \"2a83ed8a-84bb-4c06-be54-d812697f0cf0\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"117-B1\", \"capacity\": 1, \"position\": {\"x\": 1596.8923585979487, \"y\": 1633.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.080Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.223Z\", \"price_tier_id\": 128}, {\"id\": \"3e9db65f-2bb4-4356-9efb-bc335dae6d84\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"117-B2\", \"capacity\": 1, \"position\": {\"x\": 1596.8923585979487, \"y\": 1658.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.080Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.223Z\", \"price_tier_id\": 128}, {\"id\": \"d753f6e2-60f6-4861-8ada-5bcc0d78ee08\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"117-B3\", \"capacity\": 1, \"position\": {\"x\": 1596.8923585979487, \"y\": 1683.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.080Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.223Z\", \"price_tier_id\": 128}, {\"id\": \"c56e76c7-dcb3-4cf1-90b0-665aa91ff8ad\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"117-B4\", \"capacity\": 1, \"position\": {\"x\": 1596.8923585979487, \"y\": 1708.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.080Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.223Z\", \"price_tier_id\": 128}, {\"id\": \"925a2520-3235-4535-b6f1-538e13b976df\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"117-B5\", \"capacity\": 1, \"position\": {\"x\": 1596.8923585979487, \"y\": 1733.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.080Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.223Z\", \"price_tier_id\": 128}, {\"id\": \"2f23e9ba-ca98-440f-837e-727c144349b8\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"117-B6\", \"capacity\": 1, \"position\": {\"x\": 1596.8923585979487, \"y\": 1758.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.080Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.223Z\", \"price_tier_id\": 128}, {\"id\": \"71d77f66-f66b-45d7-afd2-0cae68376647\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"117-B7\", \"capacity\": 1, \"position\": {\"x\": 1596.8923585979487, \"y\": 1783.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.080Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.223Z\", \"price_tier_id\": 128}]','{\"x\": 1646.8923585979487, \"y\": 1708.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(280,'44461f79-9772-4f19-a46c-267e9f606a70','eedefbde-cd3a-4a20-bbfe-ac0a4a791c3b',23,'','117-A1','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1696.8923585979487, \"y\": 1633.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(281,'a48ba97e-0fa6-41e9-bd64-ebcd7174d923','eedefbde-cd3a-4a20-bbfe-ac0a4a791c3b',23,'','117-A2','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1696.8923585979487, \"y\": 1658.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(282,'7ce8581f-5c99-456c-8ea5-6842b06a8f32','eedefbde-cd3a-4a20-bbfe-ac0a4a791c3b',23,'','117-A3','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1696.8923585979487, \"y\": 1683.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(283,'298764ef-f1f9-49b8-a81d-4f70f6c8ca87','eedefbde-cd3a-4a20-bbfe-ac0a4a791c3b',23,'','117-A4','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1696.8923585979487, \"y\": 1708.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(284,'51495b85-a682-4661-b50f-0bb0f21a12fc','eedefbde-cd3a-4a20-bbfe-ac0a4a791c3b',23,'','117-A5','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1696.8923585979487, \"y\": 1733.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(285,'1b44efbd-4e57-4977-8153-53e99d61a71b','eedefbde-cd3a-4a20-bbfe-ac0a4a791c3b',23,'','117-A6','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1696.8923585979487, \"y\": 1758.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(286,'b059f66a-ce76-49a0-a1ba-900eade07e75','eedefbde-cd3a-4a20-bbfe-ac0a4a791c3b',23,'','117-A7','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1696.8923585979487, \"y\": 1783.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(287,'2a83ed8a-84bb-4c06-be54-d812697f0cf0','eedefbde-cd3a-4a20-bbfe-ac0a4a791c3b',23,'','117-B1','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1596.8923585979487, \"y\": 1633.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(288,'3e9db65f-2bb4-4356-9efb-bc335dae6d84','eedefbde-cd3a-4a20-bbfe-ac0a4a791c3b',23,'','117-B2','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1596.8923585979487, \"y\": 1658.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(289,'d753f6e2-60f6-4861-8ada-5bcc0d78ee08','eedefbde-cd3a-4a20-bbfe-ac0a4a791c3b',23,'','117-B3','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1596.8923585979487, \"y\": 1683.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(290,'c56e76c7-dcb3-4cf1-90b0-665aa91ff8ad','eedefbde-cd3a-4a20-bbfe-ac0a4a791c3b',23,'','117-B4','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1596.8923585979487, \"y\": 1708.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(291,'925a2520-3235-4535-b6f1-538e13b976df','eedefbde-cd3a-4a20-bbfe-ac0a4a791c3b',23,'','117-B5','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1596.8923585979487, \"y\": 1733.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(292,'2f23e9ba-ca98-440f-837e-727c144349b8','eedefbde-cd3a-4a20-bbfe-ac0a4a791c3b',23,'','117-B6','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1596.8923585979487, \"y\": 1758.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(293,'71d77f66-f66b-45d7-afd2-0cae68376647','eedefbde-cd3a-4a20-bbfe-ac0a4a791c3b',23,'','117-B7','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1596.8923585979487, \"y\": 1783.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(294,'67c96ea1-486a-46a4-8e08-029074d3393f',NULL,23,'','118','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1782.1645991993917, \"y\": 1708.9720222713545}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"cfedb9eb-1938-434b-ba78-e944382ab00e\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"118-A1\", \"capacity\": 1, \"position\": {\"x\": 1832.1645991993917, \"y\": 1633.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.629Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.225Z\", \"price_tier_id\": 127}, {\"id\": \"592f16a1-e4fa-4f8b-a68f-c1adf108f9a7\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"118-A2\", \"capacity\": 1, \"position\": {\"x\": 1832.1645991993917, \"y\": 1658.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.629Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.225Z\", \"price_tier_id\": 127}, {\"id\": \"671a3a70-8ec3-49f7-8ceb-8124bffe9e3f\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"118-A3\", \"capacity\": 1, \"position\": {\"x\": 1832.1645991993917, \"y\": 1683.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.629Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.225Z\", \"price_tier_id\": 127}, {\"id\": \"4f827e78-8da0-420b-a1d7-30ac345efa5e\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"118-A4\", \"capacity\": 1, \"position\": {\"x\": 1832.1645991993917, \"y\": 1708.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.629Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.225Z\", \"price_tier_id\": 127}, {\"id\": \"08334c45-27b4-4ec0-9fde-5cd758f90a62\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"118-A5\", \"capacity\": 1, \"position\": {\"x\": 1832.1645991993917, \"y\": 1733.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.629Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.225Z\", \"price_tier_id\": 127}, {\"id\": \"3a011f14-4ee6-4137-b6a5-2a6f34b9869f\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"118-A6\", \"capacity\": 1, \"position\": {\"x\": 1832.1645991993917, \"y\": 1758.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.629Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.225Z\", \"price_tier_id\": 127}, {\"id\": \"e1eb4988-8f08-4f04-a809-daae7feb7ccf\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"118-A7\", \"capacity\": 1, \"position\": {\"x\": 1832.1645991993917, \"y\": 1783.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.629Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.225Z\", \"price_tier_id\": 127}, {\"id\": \"de4292ce-a573-4033-af94-bac249924b57\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"118-B1\", \"capacity\": 1, \"position\": {\"x\": 1732.1645991993917, \"y\": 1633.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.629Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.225Z\", \"price_tier_id\": 127}, {\"id\": \"9a9af4e0-8819-4642-9462-61d2defb5569\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"118-B2\", \"capacity\": 1, \"position\": {\"x\": 1732.1645991993917, \"y\": 1658.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.629Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.225Z\", \"price_tier_id\": 127}, {\"id\": \"93c3bfbf-9120-4bc8-9087-cedb0e4654a5\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"118-B3\", \"capacity\": 1, \"position\": {\"x\": 1732.1645991993917, \"y\": 1683.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.629Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.225Z\", \"price_tier_id\": 127}, {\"id\": \"3561f850-414b-42d4-97ec-75ea3de64fe8\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"118-B4\", \"capacity\": 1, \"position\": {\"x\": 1732.1645991993917, \"y\": 1708.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.629Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.225Z\", \"price_tier_id\": 127}, {\"id\": \"895ca2d3-598d-4401-9d9b-1b6dcb879e57\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"118-B5\", \"capacity\": 1, \"position\": {\"x\": 1732.1645991993917, \"y\": 1733.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.629Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.225Z\", \"price_tier_id\": 127}, {\"id\": \"2bf40d9b-96d5-459f-9bb9-d99b888edf7d\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"118-B6\", \"capacity\": 1, \"position\": {\"x\": 1732.1645991993917, \"y\": 1758.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.629Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.225Z\", \"price_tier_id\": 127}, {\"id\": \"e6d543fb-f87d-4316-813a-88ffba0973aa\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"118-B7\", \"capacity\": 1, \"position\": {\"x\": 1732.1645991993917, \"y\": 1783.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:01.629Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.225Z\", \"price_tier_id\": 127}]','{\"x\": 1782.1645991993917, \"y\": 1708.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(295,'cfedb9eb-1938-434b-ba78-e944382ab00e','67c96ea1-486a-46a4-8e08-029074d3393f',23,'','118-A1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1832.1645991993917, \"y\": 1633.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(296,'592f16a1-e4fa-4f8b-a68f-c1adf108f9a7','67c96ea1-486a-46a4-8e08-029074d3393f',23,'','118-A2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1832.1645991993917, \"y\": 1658.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(297,'671a3a70-8ec3-49f7-8ceb-8124bffe9e3f','67c96ea1-486a-46a4-8e08-029074d3393f',23,'','118-A3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1832.1645991993917, \"y\": 1683.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(298,'4f827e78-8da0-420b-a1d7-30ac345efa5e','67c96ea1-486a-46a4-8e08-029074d3393f',23,'','118-A4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1832.1645991993917, \"y\": 1708.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(299,'08334c45-27b4-4ec0-9fde-5cd758f90a62','67c96ea1-486a-46a4-8e08-029074d3393f',23,'','118-A5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1832.1645991993917, \"y\": 1733.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(300,'3a011f14-4ee6-4137-b6a5-2a6f34b9869f','67c96ea1-486a-46a4-8e08-029074d3393f',23,'','118-A6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1832.1645991993917, \"y\": 1758.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(301,'e1eb4988-8f08-4f04-a809-daae7feb7ccf','67c96ea1-486a-46a4-8e08-029074d3393f',23,'','118-A7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1832.1645991993917, \"y\": 1783.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(302,'de4292ce-a573-4033-af94-bac249924b57','67c96ea1-486a-46a4-8e08-029074d3393f',23,'','118-B1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1732.1645991993917, \"y\": 1633.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(303,'9a9af4e0-8819-4642-9462-61d2defb5569','67c96ea1-486a-46a4-8e08-029074d3393f',23,'','118-B2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1732.1645991993917, \"y\": 1658.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(304,'93c3bfbf-9120-4bc8-9087-cedb0e4654a5','67c96ea1-486a-46a4-8e08-029074d3393f',23,'','118-B3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1732.1645991993917, \"y\": 1683.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(305,'3561f850-414b-42d4-97ec-75ea3de64fe8','67c96ea1-486a-46a4-8e08-029074d3393f',23,'','118-B4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1732.1645991993917, \"y\": 1708.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(306,'895ca2d3-598d-4401-9d9b-1b6dcb879e57','67c96ea1-486a-46a4-8e08-029074d3393f',23,'','118-B5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1732.1645991993917, \"y\": 1733.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(307,'2bf40d9b-96d5-459f-9bb9-d99b888edf7d','67c96ea1-486a-46a4-8e08-029074d3393f',23,'','118-B6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1732.1645991993917, \"y\": 1758.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(308,'e6d543fb-f87d-4316-813a-88ffba0973aa','67c96ea1-486a-46a4-8e08-029074d3393f',23,'','118-B7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1732.1645991993917, \"y\": 1783.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(309,'495e6ef8-fa95-4cc0-96e1-d2b7d7d3db09',NULL,23,'','119','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1917.4368398008344, \"y\": 1708.9720222713545}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"2d9a7040-2306-4407-92a4-b6b9dfb8241c\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"119-A1\", \"capacity\": 1, \"position\": {\"x\": 1967.4368398008344, \"y\": 1633.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.395Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.226Z\", \"price_tier_id\": 127}, {\"id\": \"ef95ffa3-483b-482f-8c28-dc9f67c21ed3\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"119-A2\", \"capacity\": 1, \"position\": {\"x\": 1967.4368398008344, \"y\": 1658.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.395Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.226Z\", \"price_tier_id\": 127}, {\"id\": \"d160e725-794c-4e82-b04d-ef49777e96d8\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"119-A3\", \"capacity\": 1, \"position\": {\"x\": 1967.4368398008344, \"y\": 1683.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.395Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.226Z\", \"price_tier_id\": 127}, {\"id\": \"7a3a51c1-f5de-4b2e-9cad-67ceeda31f50\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"119-A4\", \"capacity\": 1, \"position\": {\"x\": 1967.4368398008344, \"y\": 1708.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.395Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.226Z\", \"price_tier_id\": 127}, {\"id\": \"a1d329fb-1f75-4a1e-bb6d-f1af589f292e\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"119-A5\", \"capacity\": 1, \"position\": {\"x\": 1967.4368398008344, \"y\": 1733.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.395Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.226Z\", \"price_tier_id\": 127}, {\"id\": \"a23e3de1-a8cc-480c-a209-cd715f3aa949\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"119-A6\", \"capacity\": 1, \"position\": {\"x\": 1967.4368398008344, \"y\": 1758.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.395Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.226Z\", \"price_tier_id\": 127}, {\"id\": \"6481af92-32ae-47c5-b298-0a01d5f31b01\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"119-A7\", \"capacity\": 1, \"position\": {\"x\": 1967.4368398008344, \"y\": 1783.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.395Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.226Z\", \"price_tier_id\": 127}, {\"id\": \"b3af9737-e4ee-4b06-a55d-aaec544fb7e7\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"119-B1\", \"capacity\": 1, \"position\": {\"x\": 1867.4368398008344, \"y\": 1633.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.395Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.226Z\", \"price_tier_id\": 127}, {\"id\": \"03c9e0b7-9a9f-4fd2-a4bf-76fd0fba996d\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"119-B2\", \"capacity\": 1, \"position\": {\"x\": 1867.4368398008344, \"y\": 1658.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.395Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.226Z\", \"price_tier_id\": 127}, {\"id\": \"94c501d4-7751-4a8b-8e2b-1cd469e323b6\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"119-B3\", \"capacity\": 1, \"position\": {\"x\": 1867.4368398008344, \"y\": 1683.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.395Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.226Z\", \"price_tier_id\": 127}, {\"id\": \"f6ec0092-23fd-4ea2-9abf-83232b71069b\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"119-B4\", \"capacity\": 1, \"position\": {\"x\": 1867.4368398008344, \"y\": 1708.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.395Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.226Z\", \"price_tier_id\": 127}, {\"id\": \"7aa3baa0-1ebd-437c-a292-7a906d48852c\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"119-B5\", \"capacity\": 1, \"position\": {\"x\": 1867.4368398008344, \"y\": 1733.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.395Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.226Z\", \"price_tier_id\": 127}, {\"id\": \"fe39fe67-ed52-4b19-818f-067aecf3e37f\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"119-B6\", \"capacity\": 1, \"position\": {\"x\": 1867.4368398008344, \"y\": 1758.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.395Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.226Z\", \"price_tier_id\": 127}, {\"id\": \"c012581f-d958-477d-8eb6-49b17c27761c\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"119-B7\", \"capacity\": 1, \"position\": {\"x\": 1867.4368398008344, \"y\": 1783.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.395Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.226Z\", \"price_tier_id\": 127}]','{\"x\": 1917.4368398008344, \"y\": 1708.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(310,'2d9a7040-2306-4407-92a4-b6b9dfb8241c','495e6ef8-fa95-4cc0-96e1-d2b7d7d3db09',23,'','119-A1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1967.4368398008344, \"y\": 1633.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(311,'ef95ffa3-483b-482f-8c28-dc9f67c21ed3','495e6ef8-fa95-4cc0-96e1-d2b7d7d3db09',23,'','119-A2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1967.4368398008344, \"y\": 1658.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(312,'d160e725-794c-4e82-b04d-ef49777e96d8','495e6ef8-fa95-4cc0-96e1-d2b7d7d3db09',23,'','119-A3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1967.4368398008344, \"y\": 1683.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(313,'7a3a51c1-f5de-4b2e-9cad-67ceeda31f50','495e6ef8-fa95-4cc0-96e1-d2b7d7d3db09',23,'','119-A4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1967.4368398008344, \"y\": 1708.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(314,'a1d329fb-1f75-4a1e-bb6d-f1af589f292e','495e6ef8-fa95-4cc0-96e1-d2b7d7d3db09',23,'','119-A5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1967.4368398008344, \"y\": 1733.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(315,'a23e3de1-a8cc-480c-a209-cd715f3aa949','495e6ef8-fa95-4cc0-96e1-d2b7d7d3db09',23,'','119-A6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1967.4368398008344, \"y\": 1758.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(316,'6481af92-32ae-47c5-b298-0a01d5f31b01','495e6ef8-fa95-4cc0-96e1-d2b7d7d3db09',23,'','119-A7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1967.4368398008344, \"y\": 1783.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(317,'b3af9737-e4ee-4b06-a55d-aaec544fb7e7','495e6ef8-fa95-4cc0-96e1-d2b7d7d3db09',23,'','119-B1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1867.4368398008344, \"y\": 1633.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(318,'03c9e0b7-9a9f-4fd2-a4bf-76fd0fba996d','495e6ef8-fa95-4cc0-96e1-d2b7d7d3db09',23,'','119-B2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1867.4368398008344, \"y\": 1658.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(319,'94c501d4-7751-4a8b-8e2b-1cd469e323b6','495e6ef8-fa95-4cc0-96e1-d2b7d7d3db09',23,'','119-B3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1867.4368398008344, \"y\": 1683.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(320,'f6ec0092-23fd-4ea2-9abf-83232b71069b','495e6ef8-fa95-4cc0-96e1-d2b7d7d3db09',23,'','119-B4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1867.4368398008344, \"y\": 1708.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(321,'7aa3baa0-1ebd-437c-a292-7a906d48852c','495e6ef8-fa95-4cc0-96e1-d2b7d7d3db09',23,'','119-B5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1867.4368398008344, \"y\": 1733.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(322,'fe39fe67-ed52-4b19-818f-067aecf3e37f','495e6ef8-fa95-4cc0-96e1-d2b7d7d3db09',23,'','119-B6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1867.4368398008344, \"y\": 1758.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(323,'c012581f-d958-477d-8eb6-49b17c27761c','495e6ef8-fa95-4cc0-96e1-d2b7d7d3db09',23,'','119-B7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 1867.4368398008344, \"y\": 1783.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(324,'974947ed-bfb2-4305-aa41-bf9e3bcffde0',NULL,23,'','120','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2052.7090804022773, \"y\": 1708.9720222713545}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"5fa9a9d1-5b1b-4b1a-aa08-09b372e67ddb\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"120-A1\", \"capacity\": 1, \"position\": {\"x\": 2102.7090804022773, \"y\": 1633.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.861Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.228Z\", \"price_tier_id\": 127}, {\"id\": \"be5d08c7-9f45-4957-8c43-66011d1f5e82\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"120-A2\", \"capacity\": 1, \"position\": {\"x\": 2102.7090804022773, \"y\": 1658.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.861Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.228Z\", \"price_tier_id\": 127}, {\"id\": \"c29c2d44-9fdf-4125-b7c8-0de43530f047\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"120-A3\", \"capacity\": 1, \"position\": {\"x\": 2102.7090804022773, \"y\": 1683.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.861Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.228Z\", \"price_tier_id\": 127}, {\"id\": \"21b703b0-f302-4690-a6fd-9a4f3a1f77eb\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"120-A4\", \"capacity\": 1, \"position\": {\"x\": 2102.7090804022773, \"y\": 1708.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.861Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.228Z\", \"price_tier_id\": 127}, {\"id\": \"b17121e6-99e1-4029-b1c8-68160a774370\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"120-A5\", \"capacity\": 1, \"position\": {\"x\": 2102.7090804022773, \"y\": 1733.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.861Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.228Z\", \"price_tier_id\": 127}, {\"id\": \"78cc37e7-9b74-4299-906e-008a9a214356\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"120-A6\", \"capacity\": 1, \"position\": {\"x\": 2102.7090804022773, \"y\": 1758.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.861Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.228Z\", \"price_tier_id\": 127}, {\"id\": \"e3be47da-c28b-4da4-8996-b06e70ea515c\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"120-A7\", \"capacity\": 1, \"position\": {\"x\": 2102.7090804022773, \"y\": 1783.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.861Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.228Z\", \"price_tier_id\": 127}, {\"id\": \"6980ca50-50fa-459b-a014-0f6ba61307bc\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"120-B1\", \"capacity\": 1, \"position\": {\"x\": 2002.709080402277, \"y\": 1633.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.861Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.228Z\", \"price_tier_id\": 127}, {\"id\": \"0bb0d5a8-88a5-4475-b7d5-07c7d2d15108\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"120-B2\", \"capacity\": 1, \"position\": {\"x\": 2002.709080402277, \"y\": 1658.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.861Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.228Z\", \"price_tier_id\": 127}, {\"id\": \"9ad7ab26-0252-4d86-a9fc-31292e9ebd2f\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"120-B3\", \"capacity\": 1, \"position\": {\"x\": 2002.709080402277, \"y\": 1683.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.861Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.228Z\", \"price_tier_id\": 127}, {\"id\": \"345f261c-3a25-4736-959a-e2e1e89693d7\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"120-B4\", \"capacity\": 1, \"position\": {\"x\": 2002.709080402277, \"y\": 1708.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.861Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.228Z\", \"price_tier_id\": 127}, {\"id\": \"4776866c-aa16-4da1-bd7b-394253948ca2\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"120-B5\", \"capacity\": 1, \"position\": {\"x\": 2002.709080402277, \"y\": 1733.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.861Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.228Z\", \"price_tier_id\": 127}, {\"id\": \"433a4e56-aabe-440c-8002-d6aedf16bf32\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"120-B6\", \"capacity\": 1, \"position\": {\"x\": 2002.709080402277, \"y\": 1758.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.861Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.228Z\", \"price_tier_id\": 127}, {\"id\": \"d158f270-cfa6-4e3f-b24f-f1ec7264dfa4\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"120-B7\", \"capacity\": 1, \"position\": {\"x\": 2002.709080402277, \"y\": 1783.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:02.861Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.228Z\", \"price_tier_id\": 127}]','{\"x\": 2052.7090804022773, \"y\": 1708.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(325,'5fa9a9d1-5b1b-4b1a-aa08-09b372e67ddb','974947ed-bfb2-4305-aa41-bf9e3bcffde0',23,'','120-A1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2102.7090804022773, \"y\": 1633.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(326,'be5d08c7-9f45-4957-8c43-66011d1f5e82','974947ed-bfb2-4305-aa41-bf9e3bcffde0',23,'','120-A2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2102.7090804022773, \"y\": 1658.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(327,'c29c2d44-9fdf-4125-b7c8-0de43530f047','974947ed-bfb2-4305-aa41-bf9e3bcffde0',23,'','120-A3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2102.7090804022773, \"y\": 1683.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(328,'21b703b0-f302-4690-a6fd-9a4f3a1f77eb','974947ed-bfb2-4305-aa41-bf9e3bcffde0',23,'','120-A4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2102.7090804022773, \"y\": 1708.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(329,'b17121e6-99e1-4029-b1c8-68160a774370','974947ed-bfb2-4305-aa41-bf9e3bcffde0',23,'','120-A5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2102.7090804022773, \"y\": 1733.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(330,'78cc37e7-9b74-4299-906e-008a9a214356','974947ed-bfb2-4305-aa41-bf9e3bcffde0',23,'','120-A6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2102.7090804022773, \"y\": 1758.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(331,'e3be47da-c28b-4da4-8996-b06e70ea515c','974947ed-bfb2-4305-aa41-bf9e3bcffde0',23,'','120-A7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2102.7090804022773, \"y\": 1783.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(332,'6980ca50-50fa-459b-a014-0f6ba61307bc','974947ed-bfb2-4305-aa41-bf9e3bcffde0',23,'','120-B1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2002.709080402277, \"y\": 1633.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(333,'0bb0d5a8-88a5-4475-b7d5-07c7d2d15108','974947ed-bfb2-4305-aa41-bf9e3bcffde0',23,'','120-B2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2002.709080402277, \"y\": 1658.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(334,'9ad7ab26-0252-4d86-a9fc-31292e9ebd2f','974947ed-bfb2-4305-aa41-bf9e3bcffde0',23,'','120-B3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2002.709080402277, \"y\": 1683.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(335,'345f261c-3a25-4736-959a-e2e1e89693d7','974947ed-bfb2-4305-aa41-bf9e3bcffde0',23,'','120-B4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2002.709080402277, \"y\": 1708.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(336,'4776866c-aa16-4da1-bd7b-394253948ca2','974947ed-bfb2-4305-aa41-bf9e3bcffde0',23,'','120-B5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2002.709080402277, \"y\": 1733.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(337,'433a4e56-aabe-440c-8002-d6aedf16bf32','974947ed-bfb2-4305-aa41-bf9e3bcffde0',23,'','120-B6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2002.709080402277, \"y\": 1758.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(338,'d158f270-cfa6-4e3f-b24f-f1ec7264dfa4','974947ed-bfb2-4305-aa41-bf9e3bcffde0',23,'','120-B7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2002.709080402277, \"y\": 1783.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(339,'fff5438d-ef63-4207-aee4-cddb317fe787',NULL,23,'','121','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2187.9813210037205, \"y\": 1708.9720222713545}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"a6d408a0-3e6b-4507-bebe-852710827be2\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"121-A1\", \"capacity\": 1, \"position\": {\"x\": 2237.9813210037205, \"y\": 1633.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:03.359Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.230Z\", \"price_tier_id\": 127}, {\"id\": \"07171ce2-c555-4206-bcc7-9a9b42881a87\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"121-A2\", \"capacity\": 1, \"position\": {\"x\": 2237.9813210037205, \"y\": 1658.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:03.359Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.230Z\", \"price_tier_id\": 127}, {\"id\": \"e5561824-6a55-43d7-ab52-208402b64b9c\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"121-A3\", \"capacity\": 1, \"position\": {\"x\": 2237.9813210037205, \"y\": 1683.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:03.359Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.230Z\", \"price_tier_id\": 127}, {\"id\": \"7e16a190-83e5-4986-a299-503b633691fd\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"121-A4\", \"capacity\": 1, \"position\": {\"x\": 2237.9813210037205, \"y\": 1708.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:03.359Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.230Z\", \"price_tier_id\": 127}, {\"id\": \"1c7ca7d3-5f6e-4c6b-8e6a-61074f17844a\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"121-A5\", \"capacity\": 1, \"position\": {\"x\": 2237.9813210037205, \"y\": 1733.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:03.359Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.230Z\", \"price_tier_id\": 127}, {\"id\": \"2eeefc8d-8338-4a23-8e12-9ee3f8f74883\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"121-A6\", \"capacity\": 1, \"position\": {\"x\": 2237.9813210037205, \"y\": 1758.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:03.359Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.230Z\", \"price_tier_id\": 127}, {\"id\": \"d847d60f-ea9d-4499-9102-ed6eb1549a77\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"121-A7\", \"capacity\": 1, \"position\": {\"x\": 2237.9813210037205, \"y\": 1783.9720222713545}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:03.359Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.230Z\", \"price_tier_id\": 127}, {\"id\": \"c8e43c14-7dde-4fa4-a092-99d20ca820cf\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"121-B1\", \"capacity\": 1, \"position\": {\"x\": 2137.9813210037205, \"y\": 1633.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:03.359Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.230Z\", \"price_tier_id\": 127}, {\"id\": \"fb7aeb56-0476-4a1c-ac66-61a093967df8\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"121-B2\", \"capacity\": 1, \"position\": {\"x\": 2137.9813210037205, \"y\": 1658.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:03.359Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.230Z\", \"price_tier_id\": 127}, {\"id\": \"440fa3d3-93dc-4ea0-a0fa-05724f381f79\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"121-B3\", \"capacity\": 1, \"position\": {\"x\": 2137.9813210037205, \"y\": 1683.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:03.359Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.230Z\", \"price_tier_id\": 127}, {\"id\": \"24f955f3-2c0b-4e15-954c-303025344b3b\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"121-B4\", \"capacity\": 1, \"position\": {\"x\": 2137.9813210037205, \"y\": 1708.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:03.359Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.230Z\", \"price_tier_id\": 127}, {\"id\": \"8deb69b4-7eca-459e-9501-4d6cbc1b2119\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"121-B5\", \"capacity\": 1, \"position\": {\"x\": 2137.9813210037205, \"y\": 1733.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:03.359Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.230Z\", \"price_tier_id\": 127}, {\"id\": \"ffdd3a1f-cbdc-4bb0-92bd-e8c90fec39c0\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"121-B6\", \"capacity\": 1, \"position\": {\"x\": 2137.9813210037205, \"y\": 1758.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:03.359Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.230Z\", \"price_tier_id\": 127}, {\"id\": \"29b1a254-b8ba-4720-ab6d-9a613d581a9b\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"121-B7\", \"capacity\": 1, \"position\": {\"x\": 2137.9813210037205, \"y\": 1783.9720222713545}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:33:03.359Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"14262280-ad2a-45d6-b6a6-702dc0479d81\", \"updated_at\": \"2025-11-05T10:33:37.230Z\", \"price_tier_id\": 127}]','{\"x\": 2187.9813210037205, \"y\": 1708.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(340,'a6d408a0-3e6b-4507-bebe-852710827be2','fff5438d-ef63-4207-aee4-cddb317fe787',23,'','121-A1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2237.9813210037205, \"y\": 1633.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(341,'07171ce2-c555-4206-bcc7-9a9b42881a87','fff5438d-ef63-4207-aee4-cddb317fe787',23,'','121-A2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2237.9813210037205, \"y\": 1658.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(342,'e5561824-6a55-43d7-ab52-208402b64b9c','fff5438d-ef63-4207-aee4-cddb317fe787',23,'','121-A3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2237.9813210037205, \"y\": 1683.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(343,'7e16a190-83e5-4986-a299-503b633691fd','fff5438d-ef63-4207-aee4-cddb317fe787',23,'','121-A4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2237.9813210037205, \"y\": 1708.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(344,'1c7ca7d3-5f6e-4c6b-8e6a-61074f17844a','fff5438d-ef63-4207-aee4-cddb317fe787',23,'','121-A5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2237.9813210037205, \"y\": 1733.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(345,'2eeefc8d-8338-4a23-8e12-9ee3f8f74883','fff5438d-ef63-4207-aee4-cddb317fe787',23,'','121-A6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2237.9813210037205, \"y\": 1758.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(346,'d847d60f-ea9d-4499-9102-ed6eb1549a77','fff5438d-ef63-4207-aee4-cddb317fe787',23,'','121-A7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2237.9813210037205, \"y\": 1783.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(347,'c8e43c14-7dde-4fa4-a092-99d20ca820cf','fff5438d-ef63-4207-aee4-cddb317fe787',23,'','121-B1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2137.9813210037205, \"y\": 1633.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(348,'fb7aeb56-0476-4a1c-ac66-61a093967df8','fff5438d-ef63-4207-aee4-cddb317fe787',23,'','121-B2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2137.9813210037205, \"y\": 1658.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(349,'440fa3d3-93dc-4ea0-a0fa-05724f381f79','fff5438d-ef63-4207-aee4-cddb317fe787',23,'','121-B3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2137.9813210037205, \"y\": 1683.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(350,'24f955f3-2c0b-4e15-954c-303025344b3b','fff5438d-ef63-4207-aee4-cddb317fe787',23,'','121-B4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2137.9813210037205, \"y\": 1708.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(351,'8deb69b4-7eca-459e-9501-4d6cbc1b2119','fff5438d-ef63-4207-aee4-cddb317fe787',23,'','121-B5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2137.9813210037205, \"y\": 1733.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(352,'ffdd3a1f-cbdc-4bb0-92bd-e8c90fec39c0','fff5438d-ef63-4207-aee4-cddb317fe787',23,'','121-B6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2137.9813210037205, \"y\": 1758.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(353,'29b1a254-b8ba-4720-ab6d-9a613d581a9b','fff5438d-ef63-4207-aee4-cddb317fe787',23,'','121-B7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2137.9813210037205, \"y\": 1783.9720222713545}','14262280-ad2a-45d6-b6a6-702dc0479d81',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(354,'5b72ed8f-2c70-439f-94c4-1a84c027e051',NULL,23,'','201','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2380.6413187264407, \"y\": 1136.5729704814491}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"cc9bc057-a2aa-42a1-b551-504de8a16a95\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"201-A1\", \"capacity\": 1, \"position\": {\"x\": 2330.6413187264407, \"y\": 1211.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.461Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"56b8372b-77ab-4ec7-b911-1d414febb899\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"201-A2\", \"capacity\": 1, \"position\": {\"x\": 2330.6413187264407, \"y\": 1186.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.461Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"a67cef5c-0657-46a1-a1ae-7dd1024030b9\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"201-A3\", \"capacity\": 1, \"position\": {\"x\": 2330.6413187264407, \"y\": 1161.5729704814491}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.461Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"f0ca55c9-3ecf-4254-9ebd-1c58f1e26086\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"201-A4\", \"capacity\": 1, \"position\": {\"x\": 2330.6413187264407, \"y\": 1136.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.461Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"e144427b-44db-4c1d-9ee8-f707a62921d5\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"201-A5\", \"capacity\": 1, \"position\": {\"x\": 2330.64131872644, \"y\": 1111.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.461Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"1ebfa491-7a88-4de0-8b88-ce92cb2564f7\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"201-A6\", \"capacity\": 1, \"position\": {\"x\": 2330.6413187264407, \"y\": 1086.5729704814491}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.461Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"fecf300e-de51-4d47-9949-dd26446b617b\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"201-A7\", \"capacity\": 1, \"position\": {\"x\": 2330.6413187264407, \"y\": 1061.5729704814491}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.461Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"5b0c2b23-6e8b-4a76-8bfa-e3ae6b1a6043\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"201-B1\", \"capacity\": 1, \"position\": {\"x\": 2430.6413187264407, \"y\": 1211.5729704814491}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.461Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"b4d760c4-fa43-42d7-8c30-a044a59e11f7\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"201-B2\", \"capacity\": 1, \"position\": {\"x\": 2430.6413187264407, \"y\": 1186.5729704814491}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.461Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"5b9a08c1-f29c-41a2-80c3-510f7f8aa507\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"201-B3\", \"capacity\": 1, \"position\": {\"x\": 2430.641318726441, \"y\": 1161.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.461Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"41263b5f-c02d-4bc0-b65f-16ef2934375c\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"201-B4\", \"capacity\": 1, \"position\": {\"x\": 2430.6413187264407, \"y\": 1136.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.461Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"7d26a11d-966f-44b7-86ae-3f79a6a35686\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"201-B5\", \"capacity\": 1, \"position\": {\"x\": 2430.6413187264407, \"y\": 1111.5729704814491}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.461Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"8050804f-120d-42dc-9a29-0058399cf8a8\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"201-B6\", \"capacity\": 1, \"position\": {\"x\": 2430.6413187264407, \"y\": 1086.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.461Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"2ba3dfe4-bf5a-4bcd-a710-3d6394252ac8\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"201-B7\", \"capacity\": 1, \"position\": {\"x\": 2430.6413187264407, \"y\": 1061.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.461Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}]','{\"x\": 2370.6413187264407, \"y\": 1136.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(355,'cc9bc057-a2aa-42a1-b551-504de8a16a95','5b72ed8f-2c70-439f-94c4-1a84c027e051',23,'','201-A1','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2330.6413187264407, \"y\": 1211.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(356,'56b8372b-77ab-4ec7-b911-1d414febb899','5b72ed8f-2c70-439f-94c4-1a84c027e051',23,'','201-A2','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2330.6413187264407, \"y\": 1186.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(357,'a67cef5c-0657-46a1-a1ae-7dd1024030b9','5b72ed8f-2c70-439f-94c4-1a84c027e051',23,'','201-A3','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2330.6413187264407, \"y\": 1161.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(358,'f0ca55c9-3ecf-4254-9ebd-1c58f1e26086','5b72ed8f-2c70-439f-94c4-1a84c027e051',23,'','201-A4','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2330.6413187264407, \"y\": 1136.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(359,'e144427b-44db-4c1d-9ee8-f707a62921d5','5b72ed8f-2c70-439f-94c4-1a84c027e051',23,'','201-A5','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2330.64131872644, \"y\": 1111.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(360,'1ebfa491-7a88-4de0-8b88-ce92cb2564f7','5b72ed8f-2c70-439f-94c4-1a84c027e051',23,'','201-A6','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2330.6413187264407, \"y\": 1086.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(361,'fecf300e-de51-4d47-9949-dd26446b617b','5b72ed8f-2c70-439f-94c4-1a84c027e051',23,'','201-A7','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2330.6413187264407, \"y\": 1061.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(362,'5b0c2b23-6e8b-4a76-8bfa-e3ae6b1a6043','5b72ed8f-2c70-439f-94c4-1a84c027e051',23,'','201-B1','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2430.6413187264407, \"y\": 1211.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(363,'b4d760c4-fa43-42d7-8c30-a044a59e11f7','5b72ed8f-2c70-439f-94c4-1a84c027e051',23,'','201-B2','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2430.6413187264407, \"y\": 1186.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(364,'5b9a08c1-f29c-41a2-80c3-510f7f8aa507','5b72ed8f-2c70-439f-94c4-1a84c027e051',23,'','201-B3','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2430.641318726441, \"y\": 1161.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(365,'41263b5f-c02d-4bc0-b65f-16ef2934375c','5b72ed8f-2c70-439f-94c4-1a84c027e051',23,'','201-B4','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2430.6413187264407, \"y\": 1136.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(366,'7d26a11d-966f-44b7-86ae-3f79a6a35686','5b72ed8f-2c70-439f-94c4-1a84c027e051',23,'','201-B5','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2430.6413187264407, \"y\": 1111.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(367,'8050804f-120d-42dc-9a29-0058399cf8a8','5b72ed8f-2c70-439f-94c4-1a84c027e051',23,'','201-B6','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2430.6413187264407, \"y\": 1086.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(368,'2ba3dfe4-bf5a-4bcd-a710-3d6394252ac8','5b72ed8f-2c70-439f-94c4-1a84c027e051',23,'','201-B7','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2430.6413187264407, \"y\": 1061.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(369,'c3a159a8-d81d-48dd-9f5d-beb7a073aa46',NULL,23,'','202','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2518.1905658778724, \"y\": 1136.5729704814491}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"7110167c-6f4b-4b1c-9c9d-367e2febf328\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"202-A1\", \"capacity\": 1, \"position\": {\"x\": 2468.1905658778724, \"y\": 1211.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"2743c18f-f1d1-4ff7-9aa8-4ec4cfb56d75\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"202-A2\", \"capacity\": 1, \"position\": {\"x\": 2468.1905658778724, \"y\": 1186.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"80596cbc-e255-454f-94d4-1202d539db5a\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"202-A3\", \"capacity\": 1, \"position\": {\"x\": 2468.1905658778724, \"y\": 1161.5729704814491}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"7c14a666-5b3c-4c63-b37a-274cd8b86cde\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"202-A4\", \"capacity\": 1, \"position\": {\"x\": 2468.1905658778724, \"y\": 1136.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"b6c3857c-926c-484d-a133-6b17a7663e7d\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"202-A5\", \"capacity\": 1, \"position\": {\"x\": 2468.190565877872, \"y\": 1111.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"39ccb69c-a19e-4af7-b31e-426aa3b218b1\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"202-A6\", \"capacity\": 1, \"position\": {\"x\": 2468.1905658778724, \"y\": 1086.5729704814491}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"52806e47-e5f8-4569-9f3a-687cfa34fc70\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"202-A7\", \"capacity\": 1, \"position\": {\"x\": 2468.1905658778724, \"y\": 1061.5729704814491}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"8d821601-efae-4893-8910-47aeb8fa2fc3\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"202-B1\", \"capacity\": 1, \"position\": {\"x\": 2568.1905658778724, \"y\": 1211.5729704814491}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"44b4d159-5d61-4b16-9536-5e793970dbf0\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"202-B2\", \"capacity\": 1, \"position\": {\"x\": 2568.1905658778724, \"y\": 1186.5729704814491}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"dd3b928f-b8bc-47f2-9b61-9e1574015376\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"202-B3\", \"capacity\": 1, \"position\": {\"x\": 2568.190565877873, \"y\": 1161.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"065aca35-5a80-45ae-8203-6db3f469d5ae\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"202-B4\", \"capacity\": 1, \"position\": {\"x\": 2568.1905658778724, \"y\": 1136.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"c5515698-54d5-48ad-bc0e-aba076724959\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"202-B5\", \"capacity\": 1, \"position\": {\"x\": 2568.1905658778724, \"y\": 1111.5729704814491}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"9c03569e-4285-49e6-8591-ff210a0ef059\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"202-B6\", \"capacity\": 1, \"position\": {\"x\": 2568.1905658778724, \"y\": 1086.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}, {\"id\": \"accbe97e-55bb-4c22-9f43-c9293e59825e\", \"type\": \"seat\", \"price\": 1000, \"seat_id\": \"202-B7\", \"capacity\": 1, \"position\": {\"x\": 2568.1905658778724, \"y\": 1061.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:38.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 125}]','{\"x\": 2508.1905658778724, \"y\": 1136.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(370,'7110167c-6f4b-4b1c-9c9d-367e2febf328','c3a159a8-d81d-48dd-9f5d-beb7a073aa46',23,'','202-A1','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2468.1905658778724, \"y\": 1211.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(371,'2743c18f-f1d1-4ff7-9aa8-4ec4cfb56d75','c3a159a8-d81d-48dd-9f5d-beb7a073aa46',23,'','202-A2','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2468.1905658778724, \"y\": 1186.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(372,'80596cbc-e255-454f-94d4-1202d539db5a','c3a159a8-d81d-48dd-9f5d-beb7a073aa46',23,'','202-A3','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2468.1905658778724, \"y\": 1161.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(373,'7c14a666-5b3c-4c63-b37a-274cd8b86cde','c3a159a8-d81d-48dd-9f5d-beb7a073aa46',23,'','202-A4','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2468.1905658778724, \"y\": 1136.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(374,'b6c3857c-926c-484d-a133-6b17a7663e7d','c3a159a8-d81d-48dd-9f5d-beb7a073aa46',23,'','202-A5','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2468.190565877872, \"y\": 1111.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(375,'39ccb69c-a19e-4af7-b31e-426aa3b218b1','c3a159a8-d81d-48dd-9f5d-beb7a073aa46',23,'','202-A6','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2468.1905658778724, \"y\": 1086.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(376,'52806e47-e5f8-4569-9f3a-687cfa34fc70','c3a159a8-d81d-48dd-9f5d-beb7a073aa46',23,'','202-A7','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2468.1905658778724, \"y\": 1061.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(377,'8d821601-efae-4893-8910-47aeb8fa2fc3','c3a159a8-d81d-48dd-9f5d-beb7a073aa46',23,'','202-B1','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2568.1905658778724, \"y\": 1211.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(378,'44b4d159-5d61-4b16-9536-5e793970dbf0','c3a159a8-d81d-48dd-9f5d-beb7a073aa46',23,'','202-B2','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2568.1905658778724, \"y\": 1186.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(379,'dd3b928f-b8bc-47f2-9b61-9e1574015376','c3a159a8-d81d-48dd-9f5d-beb7a073aa46',23,'','202-B3','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2568.190565877873, \"y\": 1161.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(380,'065aca35-5a80-45ae-8203-6db3f469d5ae','c3a159a8-d81d-48dd-9f5d-beb7a073aa46',23,'','202-B4','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2568.1905658778724, \"y\": 1136.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(381,'c5515698-54d5-48ad-bc0e-aba076724959','c3a159a8-d81d-48dd-9f5d-beb7a073aa46',23,'','202-B5','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2568.1905658778724, \"y\": 1111.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(382,'9c03569e-4285-49e6-8591-ff210a0ef059','c3a159a8-d81d-48dd-9f5d-beb7a073aa46',23,'','202-B6','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2568.1905658778724, \"y\": 1086.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(383,'accbe97e-55bb-4c22-9f43-c9293e59825e','c3a159a8-d81d-48dd-9f5d-beb7a073aa46',23,'','202-B7','table_child',1000.00,1,NULL,'general',NULL,NULL,'{\"x\": 2568.1905658778724, \"y\": 1061.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(384,'fc90d7f0-d045-4671-bc1f-a24339c681d9',NULL,23,'','203','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2655.739813029304, \"y\": 1136.5729704814491}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"9dbe954b-d977-466f-8bb1-bb55cc0bd2ba\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"203-A1\", \"capacity\": 1, \"position\": {\"x\": 2605.739813029304, \"y\": 1211.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.379Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"93159638-638c-47fc-84c1-97dee28cf0bf\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"203-A2\", \"capacity\": 1, \"position\": {\"x\": 2605.739813029304, \"y\": 1186.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.379Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"092eecf1-6159-4177-a4dd-ada0000b5e02\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"203-A3\", \"capacity\": 1, \"position\": {\"x\": 2605.739813029304, \"y\": 1161.5729704814491}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.379Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"7afa3811-bbb8-4377-ada7-f979f91600be\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"203-A4\", \"capacity\": 1, \"position\": {\"x\": 2605.739813029304, \"y\": 1136.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.379Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"2ae950ee-a0b3-47c6-88ed-8810ab60db8f\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"203-A5\", \"capacity\": 1, \"position\": {\"x\": 2605.7398130293036, \"y\": 1111.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.379Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"e3911693-a730-4786-97f7-2f02530649d6\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"203-A6\", \"capacity\": 1, \"position\": {\"x\": 2605.739813029304, \"y\": 1086.5729704814491}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.379Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"9fd1fbf5-2f09-47cb-8d25-ac6acf261891\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"203-A7\", \"capacity\": 1, \"position\": {\"x\": 2605.739813029304, \"y\": 1061.5729704814491}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.379Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"f1f2d0b6-ba82-4902-9394-eaf9a12a2d8b\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"203-B1\", \"capacity\": 1, \"position\": {\"x\": 2705.739813029304, \"y\": 1211.5729704814491}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.379Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"e56f1e4f-4e67-4d0d-bd26-a5ae7e6fcbc5\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"203-B2\", \"capacity\": 1, \"position\": {\"x\": 2705.739813029304, \"y\": 1186.5729704814491}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.379Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"fb8cda91-9ad4-4699-beef-80f60655f463\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"203-B3\", \"capacity\": 1, \"position\": {\"x\": 2705.7398130293045, \"y\": 1161.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.379Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"d749c478-96d0-4858-8f3a-e7135ff8ef6e\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"203-B4\", \"capacity\": 1, \"position\": {\"x\": 2705.739813029304, \"y\": 1136.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.379Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"8d3ed8d2-1683-4246-b0e3-1c9bdc62389d\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"203-B5\", \"capacity\": 1, \"position\": {\"x\": 2705.739813029304, \"y\": 1111.5729704814491}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.379Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"c822baf0-f226-4162-8e4e-6665e202b1b9\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"203-B6\", \"capacity\": 1, \"position\": {\"x\": 2705.739813029304, \"y\": 1086.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.379Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"63072583-9ded-4874-85c4-4b3e84728fea\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"203-B7\", \"capacity\": 1, \"position\": {\"x\": 2705.739813029304, \"y\": 1061.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.379Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}]','{\"x\": 2645.739813029304, \"y\": 1136.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(385,'9dbe954b-d977-466f-8bb1-bb55cc0bd2ba','fc90d7f0-d045-4671-bc1f-a24339c681d9',23,'','203-A1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2605.739813029304, \"y\": 1211.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(386,'93159638-638c-47fc-84c1-97dee28cf0bf','fc90d7f0-d045-4671-bc1f-a24339c681d9',23,'','203-A2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2605.739813029304, \"y\": 1186.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(387,'092eecf1-6159-4177-a4dd-ada0000b5e02','fc90d7f0-d045-4671-bc1f-a24339c681d9',23,'','203-A3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2605.739813029304, \"y\": 1161.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(388,'7afa3811-bbb8-4377-ada7-f979f91600be','fc90d7f0-d045-4671-bc1f-a24339c681d9',23,'','203-A4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2605.739813029304, \"y\": 1136.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(389,'2ae950ee-a0b3-47c6-88ed-8810ab60db8f','fc90d7f0-d045-4671-bc1f-a24339c681d9',23,'','203-A5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2605.7398130293036, \"y\": 1111.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(390,'e3911693-a730-4786-97f7-2f02530649d6','fc90d7f0-d045-4671-bc1f-a24339c681d9',23,'','203-A6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2605.739813029304, \"y\": 1086.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(391,'9fd1fbf5-2f09-47cb-8d25-ac6acf261891','fc90d7f0-d045-4671-bc1f-a24339c681d9',23,'','203-A7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2605.739813029304, \"y\": 1061.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(392,'f1f2d0b6-ba82-4902-9394-eaf9a12a2d8b','fc90d7f0-d045-4671-bc1f-a24339c681d9',23,'','203-B1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2705.739813029304, \"y\": 1211.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(393,'e56f1e4f-4e67-4d0d-bd26-a5ae7e6fcbc5','fc90d7f0-d045-4671-bc1f-a24339c681d9',23,'','203-B2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2705.739813029304, \"y\": 1186.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(394,'fb8cda91-9ad4-4699-beef-80f60655f463','fc90d7f0-d045-4671-bc1f-a24339c681d9',23,'','203-B3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2705.7398130293045, \"y\": 1161.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(395,'d749c478-96d0-4858-8f3a-e7135ff8ef6e','fc90d7f0-d045-4671-bc1f-a24339c681d9',23,'','203-B4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2705.739813029304, \"y\": 1136.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(396,'8d3ed8d2-1683-4246-b0e3-1c9bdc62389d','fc90d7f0-d045-4671-bc1f-a24339c681d9',23,'','203-B5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2705.739813029304, \"y\": 1111.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(397,'c822baf0-f226-4162-8e4e-6665e202b1b9','fc90d7f0-d045-4671-bc1f-a24339c681d9',23,'','203-B6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2705.739813029304, \"y\": 1086.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(398,'63072583-9ded-4874-85c4-4b3e84728fea','fc90d7f0-d045-4671-bc1f-a24339c681d9',23,'','203-B7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2705.739813029304, \"y\": 1061.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(399,'37696cc2-e06d-4350-82a6-e8515ed53393',NULL,23,'','204','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2793.289060180736, \"y\": 1136.5729704814491}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"11143757-e879-4695-a86b-c72f40b21cc8\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"204-A1\", \"capacity\": 1, \"position\": {\"x\": 2743.289060180736, \"y\": 1211.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.803Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"f8c53bab-fc41-4006-95b9-e2d140075ae4\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"204-A2\", \"capacity\": 1, \"position\": {\"x\": 2743.289060180736, \"y\": 1186.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.803Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"5f2476fa-d59f-408c-b023-1651f37abf38\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"204-A3\", \"capacity\": 1, \"position\": {\"x\": 2743.289060180736, \"y\": 1161.5729704814491}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.803Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"b42b973a-450e-4a6b-bb8e-b3df21d995ca\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"204-A4\", \"capacity\": 1, \"position\": {\"x\": 2743.289060180736, \"y\": 1136.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.803Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"10c65633-af58-404b-adc2-c9f9d2c6f872\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"204-A5\", \"capacity\": 1, \"position\": {\"x\": 2743.2890601807353, \"y\": 1111.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.803Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"705cc0a7-eec5-41bf-94df-7bca9a85fa32\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"204-A6\", \"capacity\": 1, \"position\": {\"x\": 2743.289060180736, \"y\": 1086.5729704814491}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.803Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"ba3c95d4-2ec7-4622-a710-f39210e5f458\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"204-A7\", \"capacity\": 1, \"position\": {\"x\": 2743.289060180736, \"y\": 1061.5729704814491}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.803Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"4ec0a0b1-34de-4e78-8787-71f37334dcf4\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"204-B1\", \"capacity\": 1, \"position\": {\"x\": 2843.289060180736, \"y\": 1211.5729704814491}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.803Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"4da7a943-3a6d-4296-bec2-a0e7d5b1778d\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"204-B2\", \"capacity\": 1, \"position\": {\"x\": 2843.289060180736, \"y\": 1186.5729704814491}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.803Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"91d0e290-a86b-407d-a2c2-8ef90206a598\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"204-B3\", \"capacity\": 1, \"position\": {\"x\": 2843.289060180736, \"y\": 1161.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.803Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"a2c2ca27-dcfd-4916-97d6-7b76052c5c9c\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"204-B4\", \"capacity\": 1, \"position\": {\"x\": 2843.289060180736, \"y\": 1136.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.803Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"1ee1fa98-af54-4c31-bd21-5285710838e3\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"204-B5\", \"capacity\": 1, \"position\": {\"x\": 2843.289060180736, \"y\": 1111.5729704814491}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.803Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"ccd909a4-c69d-4880-a9be-0377435b2f05\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"204-B6\", \"capacity\": 1, \"position\": {\"x\": 2843.289060180736, \"y\": 1086.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.803Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"4660c03c-c4b4-48bb-9ee2-9ddfe91a86ed\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"204-B7\", \"capacity\": 1, \"position\": {\"x\": 2843.289060180736, \"y\": 1061.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:39.803Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}]','{\"x\": 2783.289060180736, \"y\": 1136.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(400,'11143757-e879-4695-a86b-c72f40b21cc8','37696cc2-e06d-4350-82a6-e8515ed53393',23,'','204-A1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2743.289060180736, \"y\": 1211.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(401,'f8c53bab-fc41-4006-95b9-e2d140075ae4','37696cc2-e06d-4350-82a6-e8515ed53393',23,'','204-A2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2743.289060180736, \"y\": 1186.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(402,'5f2476fa-d59f-408c-b023-1651f37abf38','37696cc2-e06d-4350-82a6-e8515ed53393',23,'','204-A3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2743.289060180736, \"y\": 1161.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(403,'b42b973a-450e-4a6b-bb8e-b3df21d995ca','37696cc2-e06d-4350-82a6-e8515ed53393',23,'','204-A4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2743.289060180736, \"y\": 1136.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(404,'10c65633-af58-404b-adc2-c9f9d2c6f872','37696cc2-e06d-4350-82a6-e8515ed53393',23,'','204-A5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2743.2890601807353, \"y\": 1111.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(405,'705cc0a7-eec5-41bf-94df-7bca9a85fa32','37696cc2-e06d-4350-82a6-e8515ed53393',23,'','204-A6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2743.289060180736, \"y\": 1086.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(406,'ba3c95d4-2ec7-4622-a710-f39210e5f458','37696cc2-e06d-4350-82a6-e8515ed53393',23,'','204-A7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2743.289060180736, \"y\": 1061.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(407,'4ec0a0b1-34de-4e78-8787-71f37334dcf4','37696cc2-e06d-4350-82a6-e8515ed53393',23,'','204-B1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2843.289060180736, \"y\": 1211.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(408,'4da7a943-3a6d-4296-bec2-a0e7d5b1778d','37696cc2-e06d-4350-82a6-e8515ed53393',23,'','204-B2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2843.289060180736, \"y\": 1186.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(409,'91d0e290-a86b-407d-a2c2-8ef90206a598','37696cc2-e06d-4350-82a6-e8515ed53393',23,'','204-B3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2843.289060180736, \"y\": 1161.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(410,'a2c2ca27-dcfd-4916-97d6-7b76052c5c9c','37696cc2-e06d-4350-82a6-e8515ed53393',23,'','204-B4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2843.289060180736, \"y\": 1136.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(411,'1ee1fa98-af54-4c31-bd21-5285710838e3','37696cc2-e06d-4350-82a6-e8515ed53393',23,'','204-B5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2843.289060180736, \"y\": 1111.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(412,'ccd909a4-c69d-4880-a9be-0377435b2f05','37696cc2-e06d-4350-82a6-e8515ed53393',23,'','204-B6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2843.289060180736, \"y\": 1086.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(413,'4660c03c-c4b4-48bb-9ee2-9ddfe91a86ed','37696cc2-e06d-4350-82a6-e8515ed53393',23,'','204-B7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2843.289060180736, \"y\": 1061.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(414,'e1481d4f-5955-49af-9b5c-ee763dc45f66',NULL,23,'','205','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2930.8383073321675, \"y\": 1136.5729704814491}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"5772b347-489c-4818-a795-0b292109a66b\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"205-A1\", \"capacity\": 1, \"position\": {\"x\": 2880.8383073321675, \"y\": 1211.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:40.562Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"02941662-bd2f-4745-9aaa-04fc8141be4b\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"205-A2\", \"capacity\": 1, \"position\": {\"x\": 2880.8383073321675, \"y\": 1186.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:40.562Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"4442ae1c-e228-4077-be25-60f978eb00bf\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"205-A3\", \"capacity\": 1, \"position\": {\"x\": 2880.8383073321675, \"y\": 1161.5729704814491}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:40.562Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"25d82267-5d98-4f1f-8672-c72ba5b569e0\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"205-A4\", \"capacity\": 1, \"position\": {\"x\": 2880.8383073321675, \"y\": 1136.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:40.562Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"71b9aeb5-f445-42fa-97a4-35afd73c877c\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"205-A5\", \"capacity\": 1, \"position\": {\"x\": 2880.838307332167, \"y\": 1111.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:40.562Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"fa1731fe-dbd6-4c88-909c-c731bc4dd3c6\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"205-A6\", \"capacity\": 1, \"position\": {\"x\": 2880.8383073321675, \"y\": 1086.5729704814491}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:40.562Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"972d7708-c2ff-4f13-9123-ecb845d99d76\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"205-A7\", \"capacity\": 1, \"position\": {\"x\": 2880.8383073321675, \"y\": 1061.5729704814491}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:40.562Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"6bded733-47f5-438b-a52e-78d4fab8a5a8\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"205-B1\", \"capacity\": 1, \"position\": {\"x\": 2980.8383073321675, \"y\": 1211.5729704814491}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:40.562Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"bc36e6ac-c6e3-4b5c-8821-7c79104e1f2f\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"205-B2\", \"capacity\": 1, \"position\": {\"x\": 2980.8383073321675, \"y\": 1186.5729704814491}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:40.562Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"2dfcf6c5-06e0-4e96-9a2a-9c9d3fb9063e\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"205-B3\", \"capacity\": 1, \"position\": {\"x\": 2980.838307332168, \"y\": 1161.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:40.562Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"1b8b26fc-8c13-4b8c-a729-c503a9547588\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"205-B4\", \"capacity\": 1, \"position\": {\"x\": 2980.8383073321675, \"y\": 1136.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:40.562Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"f0bf2767-726f-4cac-bb12-cf1c39f1e898\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"205-B5\", \"capacity\": 1, \"position\": {\"x\": 2980.8383073321675, \"y\": 1111.5729704814491}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:40.562Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"75a87c9c-e359-4e4f-8f38-33480770c03c\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"205-B6\", \"capacity\": 1, \"position\": {\"x\": 2980.8383073321675, \"y\": 1086.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:40.562Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"d1a8a79d-e8ee-4fdb-8034-8a60b5de69c6\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"205-B7\", \"capacity\": 1, \"position\": {\"x\": 2980.8383073321675, \"y\": 1061.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:40.562Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}]','{\"x\": 2920.8383073321675, \"y\": 1136.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(415,'5772b347-489c-4818-a795-0b292109a66b','e1481d4f-5955-49af-9b5c-ee763dc45f66',23,'','205-A1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2880.8383073321675, \"y\": 1211.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(416,'02941662-bd2f-4745-9aaa-04fc8141be4b','e1481d4f-5955-49af-9b5c-ee763dc45f66',23,'','205-A2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2880.8383073321675, \"y\": 1186.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(417,'4442ae1c-e228-4077-be25-60f978eb00bf','e1481d4f-5955-49af-9b5c-ee763dc45f66',23,'','205-A3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2880.8383073321675, \"y\": 1161.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(418,'25d82267-5d98-4f1f-8672-c72ba5b569e0','e1481d4f-5955-49af-9b5c-ee763dc45f66',23,'','205-A4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2880.8383073321675, \"y\": 1136.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(419,'71b9aeb5-f445-42fa-97a4-35afd73c877c','e1481d4f-5955-49af-9b5c-ee763dc45f66',23,'','205-A5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2880.838307332167, \"y\": 1111.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(420,'fa1731fe-dbd6-4c88-909c-c731bc4dd3c6','e1481d4f-5955-49af-9b5c-ee763dc45f66',23,'','205-A6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2880.8383073321675, \"y\": 1086.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(421,'972d7708-c2ff-4f13-9123-ecb845d99d76','e1481d4f-5955-49af-9b5c-ee763dc45f66',23,'','205-A7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2880.8383073321675, \"y\": 1061.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(422,'6bded733-47f5-438b-a52e-78d4fab8a5a8','e1481d4f-5955-49af-9b5c-ee763dc45f66',23,'','205-B1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2980.8383073321675, \"y\": 1211.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(423,'bc36e6ac-c6e3-4b5c-8821-7c79104e1f2f','e1481d4f-5955-49af-9b5c-ee763dc45f66',23,'','205-B2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2980.8383073321675, \"y\": 1186.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(424,'2dfcf6c5-06e0-4e96-9a2a-9c9d3fb9063e','e1481d4f-5955-49af-9b5c-ee763dc45f66',23,'','205-B3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2980.838307332168, \"y\": 1161.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(425,'1b8b26fc-8c13-4b8c-a729-c503a9547588','e1481d4f-5955-49af-9b5c-ee763dc45f66',23,'','205-B4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2980.8383073321675, \"y\": 1136.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(426,'f0bf2767-726f-4cac-bb12-cf1c39f1e898','e1481d4f-5955-49af-9b5c-ee763dc45f66',23,'','205-B5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2980.8383073321675, \"y\": 1111.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(427,'75a87c9c-e359-4e4f-8f38-33480770c03c','e1481d4f-5955-49af-9b5c-ee763dc45f66',23,'','205-B6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2980.8383073321675, \"y\": 1086.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(428,'d1a8a79d-e8ee-4fdb-8034-8a60b5de69c6','e1481d4f-5955-49af-9b5c-ee763dc45f66',23,'','205-B7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2980.8383073321675, \"y\": 1061.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(429,'eebba5cd-df2c-44f4-b900-905d5051eca9',NULL,23,'','206','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 3068.387554483599, \"y\": 1136.5729704814491}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"2bc32131-b916-40d4-b395-33963247dbf0\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"206-A1\", \"capacity\": 1, \"position\": {\"x\": 3018.387554483599, \"y\": 1211.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:41.211Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"4e39126d-13ab-4869-a8a5-373da1ded88f\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"206-A2\", \"capacity\": 1, \"position\": {\"x\": 3018.387554483599, \"y\": 1186.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:41.211Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"9ae19ef4-5e8c-4330-9edd-e2b643d57dc2\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"206-A3\", \"capacity\": 1, \"position\": {\"x\": 3018.387554483599, \"y\": 1161.5729704814491}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:41.211Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"7e57bfdc-d546-4385-b7d3-9cb9d2aeaca2\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"206-A4\", \"capacity\": 1, \"position\": {\"x\": 3018.387554483599, \"y\": 1136.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:41.211Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"7eb0d1ac-014f-48c4-863f-9b92bb1ca0dc\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"206-A5\", \"capacity\": 1, \"position\": {\"x\": 3018.3875544835987, \"y\": 1111.5729704814494}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:41.211Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"8dae6426-e1d5-479b-b5bb-953a72c369be\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"206-A6\", \"capacity\": 1, \"position\": {\"x\": 3018.387554483599, \"y\": 1086.5729704814491}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:41.211Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"5a6a8978-1631-4f36-b2de-804cced38abe\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"206-A7\", \"capacity\": 1, \"position\": {\"x\": 3018.387554483599, \"y\": 1061.5729704814491}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:41.211Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"4469674a-c3ff-4b77-9016-4f842ba8b375\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"206-B1\", \"capacity\": 1, \"position\": {\"x\": 3118.387554483599, \"y\": 1211.5729704814491}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:41.211Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"4895065a-d4cc-4e31-9544-3bca162a45cb\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"206-B2\", \"capacity\": 1, \"position\": {\"x\": 3118.387554483599, \"y\": 1186.5729704814491}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:41.211Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"9e746884-143c-42c4-8286-861e61480eaf\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"206-B3\", \"capacity\": 1, \"position\": {\"x\": 3118.3875544835996, \"y\": 1161.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:41.211Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"631cea4a-f81a-4bff-bd55-89a5249b5bdb\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"206-B4\", \"capacity\": 1, \"position\": {\"x\": 3118.387554483599, \"y\": 1136.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:41.211Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"98977dec-fd78-467b-8782-b7535fcf5be2\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"206-B5\", \"capacity\": 1, \"position\": {\"x\": 3118.387554483599, \"y\": 1111.5729704814491}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:41.211Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"1f109324-85fa-491d-9387-8ab0da6fd324\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"206-B6\", \"capacity\": 1, \"position\": {\"x\": 3118.387554483599, \"y\": 1086.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:41.211Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"48667106-2758-4312-86cc-56d68cf1b89c\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"206-B7\", \"capacity\": 1, \"position\": {\"x\": 3118.387554483599, \"y\": 1061.572970481449}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:41.211Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}]','{\"x\": 3058.387554483599, \"y\": 1136.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(430,'2bc32131-b916-40d4-b395-33963247dbf0','eebba5cd-df2c-44f4-b900-905d5051eca9',23,'','206-A1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 3018.387554483599, \"y\": 1211.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(431,'4e39126d-13ab-4869-a8a5-373da1ded88f','eebba5cd-df2c-44f4-b900-905d5051eca9',23,'','206-A2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 3018.387554483599, \"y\": 1186.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(432,'9ae19ef4-5e8c-4330-9edd-e2b643d57dc2','eebba5cd-df2c-44f4-b900-905d5051eca9',23,'','206-A3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 3018.387554483599, \"y\": 1161.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(433,'7e57bfdc-d546-4385-b7d3-9cb9d2aeaca2','eebba5cd-df2c-44f4-b900-905d5051eca9',23,'','206-A4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 3018.387554483599, \"y\": 1136.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(434,'7eb0d1ac-014f-48c4-863f-9b92bb1ca0dc','eebba5cd-df2c-44f4-b900-905d5051eca9',23,'','206-A5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 3018.3875544835987, \"y\": 1111.5729704814494}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(435,'8dae6426-e1d5-479b-b5bb-953a72c369be','eebba5cd-df2c-44f4-b900-905d5051eca9',23,'','206-A6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 3018.387554483599, \"y\": 1086.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(436,'5a6a8978-1631-4f36-b2de-804cced38abe','eebba5cd-df2c-44f4-b900-905d5051eca9',23,'','206-A7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 3018.387554483599, \"y\": 1061.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(437,'4469674a-c3ff-4b77-9016-4f842ba8b375','eebba5cd-df2c-44f4-b900-905d5051eca9',23,'','206-B1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 3118.387554483599, \"y\": 1211.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(438,'4895065a-d4cc-4e31-9544-3bca162a45cb','eebba5cd-df2c-44f4-b900-905d5051eca9',23,'','206-B2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 3118.387554483599, \"y\": 1186.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(439,'9e746884-143c-42c4-8286-861e61480eaf','eebba5cd-df2c-44f4-b900-905d5051eca9',23,'','206-B3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 3118.3875544835996, \"y\": 1161.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(440,'631cea4a-f81a-4bff-bd55-89a5249b5bdb','eebba5cd-df2c-44f4-b900-905d5051eca9',23,'','206-B4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 3118.387554483599, \"y\": 1136.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(441,'98977dec-fd78-467b-8782-b7535fcf5be2','eebba5cd-df2c-44f4-b900-905d5051eca9',23,'','206-B5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 3118.387554483599, \"y\": 1111.5729704814491}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(442,'1f109324-85fa-491d-9387-8ab0da6fd324','eebba5cd-df2c-44f4-b900-905d5051eca9',23,'','206-B6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 3118.387554483599, \"y\": 1086.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(443,'48667106-2758-4312-86cc-56d68cf1b89c','eebba5cd-df2c-44f4-b900-905d5051eca9',23,'','206-B7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 3118.387554483599, \"y\": 1061.572970481449}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(444,'4b625bdc-ba50-4ed6-9514-29dd14e97f1b',NULL,23,'','207','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2380.6413187264407, \"y\": 1425.426389499457}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"95078c33-5355-46cc-9acb-b6caf977834f\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"207-A1\", \"capacity\": 1, \"position\": {\"x\": 2330.6413187264407, \"y\": 1500.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.132Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"86367e99-fd05-4ed3-870a-458ed4292e56\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"207-A2\", \"capacity\": 1, \"position\": {\"x\": 2330.6413187264407, \"y\": 1475.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.132Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"1a617c61-e7de-4ccb-9b71-d7f46c7b13de\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"207-A3\", \"capacity\": 1, \"position\": {\"x\": 2330.6413187264407, \"y\": 1450.426389499457}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.132Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"05938e37-2601-4e0b-b12b-f47bec6c430c\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"207-A4\", \"capacity\": 1, \"position\": {\"x\": 2330.6413187264407, \"y\": 1425.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.132Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"8e612059-3d16-4da9-9b6c-2d1cdc93cdad\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"207-A5\", \"capacity\": 1, \"position\": {\"x\": 2330.64131872644, \"y\": 1400.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.132Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"f65066cf-56d4-46aa-bd45-e9a833c85a63\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"207-A6\", \"capacity\": 1, \"position\": {\"x\": 2330.6413187264407, \"y\": 1375.426389499457}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.132Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"7a5cc317-0776-49b3-ac8e-16d0f6350d85\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"207-A7\", \"capacity\": 1, \"position\": {\"x\": 2330.6413187264407, \"y\": 1350.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.132Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"ccca4059-bcc3-4f47-9d71-3d4c8ac13cc1\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"207-B1\", \"capacity\": 1, \"position\": {\"x\": 2430.6413187264407, \"y\": 1500.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.132Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"a88fe772-2172-4280-878c-6fbd59e0ffb4\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"207-B2\", \"capacity\": 1, \"position\": {\"x\": 2430.6413187264407, \"y\": 1475.426389499457}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.132Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"0f3057b4-8b7d-490d-aaeb-34b7758c44d8\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"207-B3\", \"capacity\": 1, \"position\": {\"x\": 2430.641318726441, \"y\": 1450.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.132Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"5b30b457-3069-4fe3-9515-5e4009b3699f\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"207-B4\", \"capacity\": 1, \"position\": {\"x\": 2430.6413187264407, \"y\": 1425.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.132Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"3772607f-fe58-4fd9-b029-89a268cbefe3\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"207-B5\", \"capacity\": 1, \"position\": {\"x\": 2430.6413187264407, \"y\": 1400.426389499457}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.132Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"ee2496bd-a2ea-4aa9-9326-9efb9e30d4a2\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"207-B6\", \"capacity\": 1, \"position\": {\"x\": 2430.6413187264407, \"y\": 1375.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.132Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"e70bc5f9-67c8-4abc-a27d-59a85fa9b23e\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"207-B7\", \"capacity\": 1, \"position\": {\"x\": 2430.6413187264407, \"y\": 1350.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.132Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}]','{\"x\": 2370.6413187264407, \"y\": 1425.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(445,'95078c33-5355-46cc-9acb-b6caf977834f','4b625bdc-ba50-4ed6-9514-29dd14e97f1b',23,'','207-A1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2330.6413187264407, \"y\": 1500.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(446,'86367e99-fd05-4ed3-870a-458ed4292e56','4b625bdc-ba50-4ed6-9514-29dd14e97f1b',23,'','207-A2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2330.6413187264407, \"y\": 1475.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(447,'1a617c61-e7de-4ccb-9b71-d7f46c7b13de','4b625bdc-ba50-4ed6-9514-29dd14e97f1b',23,'','207-A3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2330.6413187264407, \"y\": 1450.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(448,'05938e37-2601-4e0b-b12b-f47bec6c430c','4b625bdc-ba50-4ed6-9514-29dd14e97f1b',23,'','207-A4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2330.6413187264407, \"y\": 1425.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(449,'8e612059-3d16-4da9-9b6c-2d1cdc93cdad','4b625bdc-ba50-4ed6-9514-29dd14e97f1b',23,'','207-A5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2330.64131872644, \"y\": 1400.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(450,'f65066cf-56d4-46aa-bd45-e9a833c85a63','4b625bdc-ba50-4ed6-9514-29dd14e97f1b',23,'','207-A6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2330.6413187264407, \"y\": 1375.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(451,'7a5cc317-0776-49b3-ac8e-16d0f6350d85','4b625bdc-ba50-4ed6-9514-29dd14e97f1b',23,'','207-A7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2330.6413187264407, \"y\": 1350.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(452,'ccca4059-bcc3-4f47-9d71-3d4c8ac13cc1','4b625bdc-ba50-4ed6-9514-29dd14e97f1b',23,'','207-B1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2430.6413187264407, \"y\": 1500.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(453,'a88fe772-2172-4280-878c-6fbd59e0ffb4','4b625bdc-ba50-4ed6-9514-29dd14e97f1b',23,'','207-B2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2430.6413187264407, \"y\": 1475.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(454,'0f3057b4-8b7d-490d-aaeb-34b7758c44d8','4b625bdc-ba50-4ed6-9514-29dd14e97f1b',23,'','207-B3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2430.641318726441, \"y\": 1450.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(455,'5b30b457-3069-4fe3-9515-5e4009b3699f','4b625bdc-ba50-4ed6-9514-29dd14e97f1b',23,'','207-B4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2430.6413187264407, \"y\": 1425.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(456,'3772607f-fe58-4fd9-b029-89a268cbefe3','4b625bdc-ba50-4ed6-9514-29dd14e97f1b',23,'','207-B5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2430.6413187264407, \"y\": 1400.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(457,'ee2496bd-a2ea-4aa9-9326-9efb9e30d4a2','4b625bdc-ba50-4ed6-9514-29dd14e97f1b',23,'','207-B6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2430.6413187264407, \"y\": 1375.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(458,'e70bc5f9-67c8-4abc-a27d-59a85fa9b23e','4b625bdc-ba50-4ed6-9514-29dd14e97f1b',23,'','207-B7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2430.6413187264407, \"y\": 1350.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(459,'d69c003c-946e-4a6c-be70-4b7c8ad5b3f4',NULL,23,'','208','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2518.1905658778724, \"y\": 1425.426389499457}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"6700182c-8f7a-4f1c-bc9b-218cfa788a1e\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"208-A1\", \"capacity\": 1, \"position\": {\"x\": 2468.1905658778724, \"y\": 1500.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.746Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"162ef53f-3d5d-4dc1-8165-5b1832b8c8ba\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"208-A2\", \"capacity\": 1, \"position\": {\"x\": 2468.1905658778724, \"y\": 1475.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.746Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"02e27dd7-76cc-4b2d-bc4e-aeb3f06956a1\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"208-A3\", \"capacity\": 1, \"position\": {\"x\": 2468.1905658778724, \"y\": 1450.426389499457}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.746Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"6a3bbd69-86e5-4235-a7ec-502a7ca120a7\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"208-A4\", \"capacity\": 1, \"position\": {\"x\": 2468.1905658778724, \"y\": 1425.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.746Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"36cf7ea4-5327-401a-b0d9-030aa7578c55\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"208-A5\", \"capacity\": 1, \"position\": {\"x\": 2468.190565877872, \"y\": 1400.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.746Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"8852d09a-2c43-475a-aa37-850917534acd\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"208-A6\", \"capacity\": 1, \"position\": {\"x\": 2468.1905658778724, \"y\": 1375.426389499457}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.746Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"33b3279c-086a-439f-8860-681d26aad952\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"208-A7\", \"capacity\": 1, \"position\": {\"x\": 2468.1905658778724, \"y\": 1350.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.746Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"edd4fde7-7c90-4fc6-b607-f76844ba7ea9\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"208-B1\", \"capacity\": 1, \"position\": {\"x\": 2568.1905658778724, \"y\": 1500.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.746Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"2ea5fb82-d033-4012-a308-068f7174bbbc\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"208-B2\", \"capacity\": 1, \"position\": {\"x\": 2568.1905658778724, \"y\": 1475.426389499457}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.746Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"227a55ce-c164-4d5a-b5ee-727f23dffe7c\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"208-B3\", \"capacity\": 1, \"position\": {\"x\": 2568.190565877873, \"y\": 1450.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.746Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"fb96e621-f2eb-48f9-a197-fb81c8641d5a\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"208-B4\", \"capacity\": 1, \"position\": {\"x\": 2568.1905658778724, \"y\": 1425.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.746Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"a449af61-e683-42c3-bb44-733a3d1d1ad8\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"208-B5\", \"capacity\": 1, \"position\": {\"x\": 2568.1905658778724, \"y\": 1400.426389499457}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.746Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"981b0ad4-d795-4c40-9811-11a410d8e514\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"208-B6\", \"capacity\": 1, \"position\": {\"x\": 2568.1905658778724, \"y\": 1375.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.746Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}, {\"id\": \"75acdd25-fc57-425f-ac44-aedd30b4efeb\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"208-B7\", \"capacity\": 1, \"position\": {\"x\": 2568.1905658778724, \"y\": 1350.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:42.746Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 126}]','{\"x\": 2508.1905658778724, \"y\": 1425.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(460,'6700182c-8f7a-4f1c-bc9b-218cfa788a1e','d69c003c-946e-4a6c-be70-4b7c8ad5b3f4',23,'','208-A1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2468.1905658778724, \"y\": 1500.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(461,'162ef53f-3d5d-4dc1-8165-5b1832b8c8ba','d69c003c-946e-4a6c-be70-4b7c8ad5b3f4',23,'','208-A2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2468.1905658778724, \"y\": 1475.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(462,'02e27dd7-76cc-4b2d-bc4e-aeb3f06956a1','d69c003c-946e-4a6c-be70-4b7c8ad5b3f4',23,'','208-A3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2468.1905658778724, \"y\": 1450.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(463,'6a3bbd69-86e5-4235-a7ec-502a7ca120a7','d69c003c-946e-4a6c-be70-4b7c8ad5b3f4',23,'','208-A4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2468.1905658778724, \"y\": 1425.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(464,'36cf7ea4-5327-401a-b0d9-030aa7578c55','d69c003c-946e-4a6c-be70-4b7c8ad5b3f4',23,'','208-A5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2468.190565877872, \"y\": 1400.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(465,'8852d09a-2c43-475a-aa37-850917534acd','d69c003c-946e-4a6c-be70-4b7c8ad5b3f4',23,'','208-A6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2468.1905658778724, \"y\": 1375.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(466,'33b3279c-086a-439f-8860-681d26aad952','d69c003c-946e-4a6c-be70-4b7c8ad5b3f4',23,'','208-A7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2468.1905658778724, \"y\": 1350.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(467,'edd4fde7-7c90-4fc6-b607-f76844ba7ea9','d69c003c-946e-4a6c-be70-4b7c8ad5b3f4',23,'','208-B1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2568.1905658778724, \"y\": 1500.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(468,'2ea5fb82-d033-4012-a308-068f7174bbbc','d69c003c-946e-4a6c-be70-4b7c8ad5b3f4',23,'','208-B2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2568.1905658778724, \"y\": 1475.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(469,'227a55ce-c164-4d5a-b5ee-727f23dffe7c','d69c003c-946e-4a6c-be70-4b7c8ad5b3f4',23,'','208-B3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2568.190565877873, \"y\": 1450.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(470,'fb96e621-f2eb-48f9-a197-fb81c8641d5a','d69c003c-946e-4a6c-be70-4b7c8ad5b3f4',23,'','208-B4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2568.1905658778724, \"y\": 1425.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(471,'a449af61-e683-42c3-bb44-733a3d1d1ad8','d69c003c-946e-4a6c-be70-4b7c8ad5b3f4',23,'','208-B5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2568.1905658778724, \"y\": 1400.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(472,'981b0ad4-d795-4c40-9811-11a410d8e514','d69c003c-946e-4a6c-be70-4b7c8ad5b3f4',23,'','208-B6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2568.1905658778724, \"y\": 1375.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(473,'75acdd25-fc57-425f-ac44-aedd30b4efeb','d69c003c-946e-4a6c-be70-4b7c8ad5b3f4',23,'','208-B7','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 2568.1905658778724, \"y\": 1350.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(474,'c62c4e5a-3d35-443a-9ee9-ccf305637c22',NULL,23,'','209','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2655.739813029304, \"y\": 1425.426389499457}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"c5333f40-6c73-4705-a57c-8340c6fcad81\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"209-A1\", \"capacity\": 1, \"position\": {\"x\": 2605.739813029304, \"y\": 1500.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.277Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"980fef0d-31cc-4957-a91e-ebee634c1b69\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"209-A2\", \"capacity\": 1, \"position\": {\"x\": 2605.739813029304, \"y\": 1475.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.277Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"52e53ec1-8487-42fe-a523-9de4aedc67aa\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"209-A3\", \"capacity\": 1, \"position\": {\"x\": 2605.739813029304, \"y\": 1450.426389499457}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.277Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"bf5a55ef-ae29-444d-a639-cadddf7693d9\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"209-A4\", \"capacity\": 1, \"position\": {\"x\": 2605.739813029304, \"y\": 1425.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.277Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"136d0a23-ae9c-4205-a3a8-bab60c43cce1\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"209-A5\", \"capacity\": 1, \"position\": {\"x\": 2605.7398130293036, \"y\": 1400.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.277Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"9ae95b24-385c-4f34-8468-a8d8c246f1cb\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"209-A6\", \"capacity\": 1, \"position\": {\"x\": 2605.739813029304, \"y\": 1375.426389499457}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.277Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"5a8f6676-5696-45ca-a659-af3a9508376f\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"209-A7\", \"capacity\": 1, \"position\": {\"x\": 2605.739813029304, \"y\": 1350.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.277Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"db406fb0-59c0-4e64-9a82-f6a7daef140c\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"209-B1\", \"capacity\": 1, \"position\": {\"x\": 2705.739813029304, \"y\": 1500.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.277Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"36046274-67bb-4c16-8d59-47a54913792e\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"209-B2\", \"capacity\": 1, \"position\": {\"x\": 2705.739813029304, \"y\": 1475.426389499457}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.277Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"5c1869e1-a50d-42af-9fd5-77a781fa1de0\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"209-B3\", \"capacity\": 1, \"position\": {\"x\": 2705.7398130293045, \"y\": 1450.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.277Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"7b634e95-83f3-4593-97b6-8b6059e806ef\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"209-B4\", \"capacity\": 1, \"position\": {\"x\": 2705.739813029304, \"y\": 1425.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.277Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"40ad4f97-e453-41b7-9a29-2fe701e7b1f1\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"209-B5\", \"capacity\": 1, \"position\": {\"x\": 2705.739813029304, \"y\": 1400.426389499457}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.277Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"2ba01b19-8248-425f-b361-7bb699326f11\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"209-B6\", \"capacity\": 1, \"position\": {\"x\": 2705.739813029304, \"y\": 1375.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.277Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"bc9ad0c3-e26f-417f-9c81-b51e48424b02\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"209-B7\", \"capacity\": 1, \"position\": {\"x\": 2705.739813029304, \"y\": 1350.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.277Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}]','{\"x\": 2645.739813029304, \"y\": 1425.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(475,'c5333f40-6c73-4705-a57c-8340c6fcad81','c62c4e5a-3d35-443a-9ee9-ccf305637c22',23,'','209-A1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2605.739813029304, \"y\": 1500.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(476,'980fef0d-31cc-4957-a91e-ebee634c1b69','c62c4e5a-3d35-443a-9ee9-ccf305637c22',23,'','209-A2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2605.739813029304, \"y\": 1475.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(477,'52e53ec1-8487-42fe-a523-9de4aedc67aa','c62c4e5a-3d35-443a-9ee9-ccf305637c22',23,'','209-A3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2605.739813029304, \"y\": 1450.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(478,'bf5a55ef-ae29-444d-a639-cadddf7693d9','c62c4e5a-3d35-443a-9ee9-ccf305637c22',23,'','209-A4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2605.739813029304, \"y\": 1425.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(479,'136d0a23-ae9c-4205-a3a8-bab60c43cce1','c62c4e5a-3d35-443a-9ee9-ccf305637c22',23,'','209-A5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2605.7398130293036, \"y\": 1400.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(480,'9ae95b24-385c-4f34-8468-a8d8c246f1cb','c62c4e5a-3d35-443a-9ee9-ccf305637c22',23,'','209-A6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2605.739813029304, \"y\": 1375.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(481,'5a8f6676-5696-45ca-a659-af3a9508376f','c62c4e5a-3d35-443a-9ee9-ccf305637c22',23,'','209-A7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2605.739813029304, \"y\": 1350.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(482,'db406fb0-59c0-4e64-9a82-f6a7daef140c','c62c4e5a-3d35-443a-9ee9-ccf305637c22',23,'','209-B1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2705.739813029304, \"y\": 1500.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(483,'36046274-67bb-4c16-8d59-47a54913792e','c62c4e5a-3d35-443a-9ee9-ccf305637c22',23,'','209-B2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2705.739813029304, \"y\": 1475.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(484,'5c1869e1-a50d-42af-9fd5-77a781fa1de0','c62c4e5a-3d35-443a-9ee9-ccf305637c22',23,'','209-B3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2705.7398130293045, \"y\": 1450.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(485,'7b634e95-83f3-4593-97b6-8b6059e806ef','c62c4e5a-3d35-443a-9ee9-ccf305637c22',23,'','209-B4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2705.739813029304, \"y\": 1425.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(486,'40ad4f97-e453-41b7-9a29-2fe701e7b1f1','c62c4e5a-3d35-443a-9ee9-ccf305637c22',23,'','209-B5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2705.739813029304, \"y\": 1400.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(487,'2ba01b19-8248-425f-b361-7bb699326f11','c62c4e5a-3d35-443a-9ee9-ccf305637c22',23,'','209-B6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2705.739813029304, \"y\": 1375.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(488,'bc9ad0c3-e26f-417f-9c81-b51e48424b02','c62c4e5a-3d35-443a-9ee9-ccf305637c22',23,'','209-B7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2705.739813029304, \"y\": 1350.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(489,'ae77ce59-5695-4102-b438-2032381bdd7d',NULL,23,'','210','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2793.289060180736, \"y\": 1425.426389499457}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"f25688e5-5432-4314-87e9-ed99a03b9058\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"210-A1\", \"capacity\": 1, \"position\": {\"x\": 2743.289060180736, \"y\": 1500.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.711Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"37e00f7e-894a-45a3-9ef5-05490bbe81bd\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"210-A2\", \"capacity\": 1, \"position\": {\"x\": 2743.289060180736, \"y\": 1475.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.711Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"b2c12c46-027f-495f-9e5c-0fd74a0d8c1a\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"210-A3\", \"capacity\": 1, \"position\": {\"x\": 2743.289060180736, \"y\": 1450.426389499457}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.711Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"d1d6b0a5-d9a9-4431-a38e-505470771575\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"210-A4\", \"capacity\": 1, \"position\": {\"x\": 2743.289060180736, \"y\": 1425.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.711Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"6d7ae1ff-503e-4619-b2d1-a086b71a78a4\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"210-A5\", \"capacity\": 1, \"position\": {\"x\": 2743.2890601807353, \"y\": 1400.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.711Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"cf7b3348-40b2-4f9e-9179-07cf73c334e6\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"210-A6\", \"capacity\": 1, \"position\": {\"x\": 2743.289060180736, \"y\": 1375.426389499457}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.711Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"c0a57109-31cb-4e52-893e-1aacdd4f6557\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"210-A7\", \"capacity\": 1, \"position\": {\"x\": 2743.289060180736, \"y\": 1350.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.711Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"f4a79862-a285-4fa0-a355-c9bfc00c81ea\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"210-B1\", \"capacity\": 1, \"position\": {\"x\": 2843.289060180736, \"y\": 1500.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.711Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"54f0d592-b3ad-4168-8631-b17d159a8b82\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"210-B2\", \"capacity\": 1, \"position\": {\"x\": 2843.289060180736, \"y\": 1475.426389499457}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.711Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"4ab863ee-1b2d-410b-9071-0fb602e7c309\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"210-B3\", \"capacity\": 1, \"position\": {\"x\": 2843.289060180736, \"y\": 1450.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.711Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"67d91fbd-7598-493b-9857-d1d3aceba887\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"210-B4\", \"capacity\": 1, \"position\": {\"x\": 2843.289060180736, \"y\": 1425.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.711Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"e2a6451c-4bb2-4fd3-bd3c-e41e505af979\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"210-B5\", \"capacity\": 1, \"position\": {\"x\": 2843.289060180736, \"y\": 1400.426389499457}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.711Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"17a05643-a9d3-45bd-a031-446120165292\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"210-B6\", \"capacity\": 1, \"position\": {\"x\": 2843.289060180736, \"y\": 1375.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.711Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"35d84554-78e9-4bcd-969e-294cae7d5496\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"210-B7\", \"capacity\": 1, \"position\": {\"x\": 2843.289060180736, \"y\": 1350.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:43.711Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}]','{\"x\": 2783.289060180736, \"y\": 1425.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(490,'f25688e5-5432-4314-87e9-ed99a03b9058','ae77ce59-5695-4102-b438-2032381bdd7d',23,'','210-A1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2743.289060180736, \"y\": 1500.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(491,'37e00f7e-894a-45a3-9ef5-05490bbe81bd','ae77ce59-5695-4102-b438-2032381bdd7d',23,'','210-A2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2743.289060180736, \"y\": 1475.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(492,'b2c12c46-027f-495f-9e5c-0fd74a0d8c1a','ae77ce59-5695-4102-b438-2032381bdd7d',23,'','210-A3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2743.289060180736, \"y\": 1450.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(493,'d1d6b0a5-d9a9-4431-a38e-505470771575','ae77ce59-5695-4102-b438-2032381bdd7d',23,'','210-A4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2743.289060180736, \"y\": 1425.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(494,'6d7ae1ff-503e-4619-b2d1-a086b71a78a4','ae77ce59-5695-4102-b438-2032381bdd7d',23,'','210-A5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2743.2890601807353, \"y\": 1400.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(495,'cf7b3348-40b2-4f9e-9179-07cf73c334e6','ae77ce59-5695-4102-b438-2032381bdd7d',23,'','210-A6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2743.289060180736, \"y\": 1375.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(496,'c0a57109-31cb-4e52-893e-1aacdd4f6557','ae77ce59-5695-4102-b438-2032381bdd7d',23,'','210-A7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2743.289060180736, \"y\": 1350.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(497,'f4a79862-a285-4fa0-a355-c9bfc00c81ea','ae77ce59-5695-4102-b438-2032381bdd7d',23,'','210-B1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2843.289060180736, \"y\": 1500.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(498,'54f0d592-b3ad-4168-8631-b17d159a8b82','ae77ce59-5695-4102-b438-2032381bdd7d',23,'','210-B2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2843.289060180736, \"y\": 1475.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(499,'4ab863ee-1b2d-410b-9071-0fb602e7c309','ae77ce59-5695-4102-b438-2032381bdd7d',23,'','210-B3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2843.289060180736, \"y\": 1450.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(500,'67d91fbd-7598-493b-9857-d1d3aceba887','ae77ce59-5695-4102-b438-2032381bdd7d',23,'','210-B4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2843.289060180736, \"y\": 1425.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(501,'e2a6451c-4bb2-4fd3-bd3c-e41e505af979','ae77ce59-5695-4102-b438-2032381bdd7d',23,'','210-B5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2843.289060180736, \"y\": 1400.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(502,'17a05643-a9d3-45bd-a031-446120165292','ae77ce59-5695-4102-b438-2032381bdd7d',23,'','210-B6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2843.289060180736, \"y\": 1375.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(503,'35d84554-78e9-4bcd-969e-294cae7d5496','ae77ce59-5695-4102-b438-2032381bdd7d',23,'','210-B7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2843.289060180736, \"y\": 1350.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(504,'83f18620-c6b2-4e23-9371-27a51d649a3f',NULL,23,'','211','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2930.8383073321675, \"y\": 1425.426389499457}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"dc113827-cfd9-443a-8246-395ceccb1bdc\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"211-A1\", \"capacity\": 1, \"position\": {\"x\": 2880.8383073321675, \"y\": 1500.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.328Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"a28722d8-f248-4b00-8e76-f05c0009980e\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"211-A2\", \"capacity\": 1, \"position\": {\"x\": 2880.8383073321675, \"y\": 1475.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.328Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"4533e075-1b3d-4bb2-925f-8c60ec33ac81\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"211-A3\", \"capacity\": 1, \"position\": {\"x\": 2880.8383073321675, \"y\": 1450.426389499457}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.328Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"7a43a000-dd68-4925-983f-602ef5d8a6e1\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"211-A4\", \"capacity\": 1, \"position\": {\"x\": 2880.8383073321675, \"y\": 1425.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.328Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"138493af-1ae8-4031-8b99-65302e5ba14d\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"211-A5\", \"capacity\": 1, \"position\": {\"x\": 2880.838307332167, \"y\": 1400.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.328Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"b876de4f-0d88-4f0b-836f-2b490a6f0eb3\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"211-A6\", \"capacity\": 1, \"position\": {\"x\": 2880.8383073321675, \"y\": 1375.426389499457}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.328Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"c824ab8c-cccc-4aa6-aba1-7dee474af7b7\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"211-A7\", \"capacity\": 1, \"position\": {\"x\": 2880.8383073321675, \"y\": 1350.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.328Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"e79131ca-0ab5-4f25-b307-06ab8eabce92\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"211-B1\", \"capacity\": 1, \"position\": {\"x\": 2980.8383073321675, \"y\": 1500.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.328Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"3f71cc26-c7b2-4dfa-919e-6ef0a151fb00\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"211-B2\", \"capacity\": 1, \"position\": {\"x\": 2980.8383073321675, \"y\": 1475.426389499457}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.328Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"5b419300-aec7-4f7c-a08b-a3b660413065\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"211-B3\", \"capacity\": 1, \"position\": {\"x\": 2980.838307332168, \"y\": 1450.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.328Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"9bda0038-38e4-4a28-ad1d-e65bbe0db6ae\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"211-B4\", \"capacity\": 1, \"position\": {\"x\": 2980.8383073321675, \"y\": 1425.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.328Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"5a20980a-0032-472a-9702-d62ed1c08ff9\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"211-B5\", \"capacity\": 1, \"position\": {\"x\": 2980.8383073321675, \"y\": 1400.426389499457}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.328Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"5e82e7d1-128f-46c4-9ebf-54abd8e6f44c\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"211-B6\", \"capacity\": 1, \"position\": {\"x\": 2980.8383073321675, \"y\": 1375.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.328Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"6ee8f3b4-d8c1-4884-938c-281a67ad69ff\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"211-B7\", \"capacity\": 1, \"position\": {\"x\": 2980.8383073321675, \"y\": 1350.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.328Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}]','{\"x\": 2920.8383073321675, \"y\": 1425.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(505,'dc113827-cfd9-443a-8246-395ceccb1bdc','83f18620-c6b2-4e23-9371-27a51d649a3f',23,'','211-A1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2880.8383073321675, \"y\": 1500.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(506,'a28722d8-f248-4b00-8e76-f05c0009980e','83f18620-c6b2-4e23-9371-27a51d649a3f',23,'','211-A2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2880.8383073321675, \"y\": 1475.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(507,'4533e075-1b3d-4bb2-925f-8c60ec33ac81','83f18620-c6b2-4e23-9371-27a51d649a3f',23,'','211-A3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2880.8383073321675, \"y\": 1450.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(508,'7a43a000-dd68-4925-983f-602ef5d8a6e1','83f18620-c6b2-4e23-9371-27a51d649a3f',23,'','211-A4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2880.8383073321675, \"y\": 1425.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(509,'138493af-1ae8-4031-8b99-65302e5ba14d','83f18620-c6b2-4e23-9371-27a51d649a3f',23,'','211-A5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2880.838307332167, \"y\": 1400.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(510,'b876de4f-0d88-4f0b-836f-2b490a6f0eb3','83f18620-c6b2-4e23-9371-27a51d649a3f',23,'','211-A6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2880.8383073321675, \"y\": 1375.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(511,'c824ab8c-cccc-4aa6-aba1-7dee474af7b7','83f18620-c6b2-4e23-9371-27a51d649a3f',23,'','211-A7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2880.8383073321675, \"y\": 1350.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(512,'e79131ca-0ab5-4f25-b307-06ab8eabce92','83f18620-c6b2-4e23-9371-27a51d649a3f',23,'','211-B1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2980.8383073321675, \"y\": 1500.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(513,'3f71cc26-c7b2-4dfa-919e-6ef0a151fb00','83f18620-c6b2-4e23-9371-27a51d649a3f',23,'','211-B2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2980.8383073321675, \"y\": 1475.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(514,'5b419300-aec7-4f7c-a08b-a3b660413065','83f18620-c6b2-4e23-9371-27a51d649a3f',23,'','211-B3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2980.838307332168, \"y\": 1450.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(515,'9bda0038-38e4-4a28-ad1d-e65bbe0db6ae','83f18620-c6b2-4e23-9371-27a51d649a3f',23,'','211-B4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2980.8383073321675, \"y\": 1425.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(516,'5a20980a-0032-472a-9702-d62ed1c08ff9','83f18620-c6b2-4e23-9371-27a51d649a3f',23,'','211-B5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2980.8383073321675, \"y\": 1400.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(517,'5e82e7d1-128f-46c4-9ebf-54abd8e6f44c','83f18620-c6b2-4e23-9371-27a51d649a3f',23,'','211-B6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2980.8383073321675, \"y\": 1375.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(518,'6ee8f3b4-d8c1-4884-938c-281a67ad69ff','83f18620-c6b2-4e23-9371-27a51d649a3f',23,'','211-B7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2980.8383073321675, \"y\": 1350.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(519,'04319a1f-03a7-46cc-9e49-b35cb8201f87',NULL,23,'','212','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 3068.387554483599, \"y\": 1425.426389499457}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"b71e3e34-ae2e-45bf-bc85-3e00352d70bb\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"212-A1\", \"capacity\": 1, \"position\": {\"x\": 3018.387554483599, \"y\": 1500.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.796Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"d9b59892-6fb7-4bd2-9fb1-9ea32e2d8970\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"212-A2\", \"capacity\": 1, \"position\": {\"x\": 3018.387554483599, \"y\": 1475.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.796Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"7fd570e7-e441-49e4-9bcb-1c8ef696442e\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"212-A3\", \"capacity\": 1, \"position\": {\"x\": 3018.387554483599, \"y\": 1450.426389499457}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.796Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"a2e5ee92-3784-4da4-b8bf-787974a8f40b\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"212-A4\", \"capacity\": 1, \"position\": {\"x\": 3018.387554483599, \"y\": 1425.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.796Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"24d5833a-388e-462b-8fe3-9ed591bfd7ad\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"212-A5\", \"capacity\": 1, \"position\": {\"x\": 3018.3875544835987, \"y\": 1400.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.796Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"de0e99c8-450e-4945-9606-5f1d6ffcbc43\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"212-A6\", \"capacity\": 1, \"position\": {\"x\": 3018.387554483599, \"y\": 1375.426389499457}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.796Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"4cd1da23-6eea-4076-bd3e-f92f9b9342ea\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"212-A7\", \"capacity\": 1, \"position\": {\"x\": 3018.387554483599, \"y\": 1350.4263894994572}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.796Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"613742d1-cd0b-4c3b-ae32-454979102385\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"212-B1\", \"capacity\": 1, \"position\": {\"x\": 3118.387554483599, \"y\": 1500.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.796Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"d9f5fd1f-8baa-4297-afad-e1fc0099787f\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"212-B2\", \"capacity\": 1, \"position\": {\"x\": 3118.387554483599, \"y\": 1475.426389499457}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.796Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"e3392a88-4aa1-4d42-ba43-0c81c0deeb2b\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"212-B3\", \"capacity\": 1, \"position\": {\"x\": 3118.3875544835996, \"y\": 1450.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.796Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"104cd4a4-452e-4acd-9964-33747036b819\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"212-B4\", \"capacity\": 1, \"position\": {\"x\": 3118.387554483599, \"y\": 1425.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.796Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"088225a8-f1ff-4bf0-ac60-fcdf3e9e5417\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"212-B5\", \"capacity\": 1, \"position\": {\"x\": 3118.387554483599, \"y\": 1400.426389499457}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.796Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"4f7d3c86-cf84-4154-8fef-712d66f8597a\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"212-B6\", \"capacity\": 1, \"position\": {\"x\": 3118.387554483599, \"y\": 1375.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.796Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"97fc6298-b05e-44ab-997c-b4849a6880ea\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"212-B7\", \"capacity\": 1, \"position\": {\"x\": 3118.387554483599, \"y\": 1350.4263894994567}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:44.796Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}]','{\"x\": 3058.387554483599, \"y\": 1425.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(520,'b71e3e34-ae2e-45bf-bc85-3e00352d70bb','04319a1f-03a7-46cc-9e49-b35cb8201f87',23,'','212-A1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 3018.387554483599, \"y\": 1500.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(521,'d9b59892-6fb7-4bd2-9fb1-9ea32e2d8970','04319a1f-03a7-46cc-9e49-b35cb8201f87',23,'','212-A2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 3018.387554483599, \"y\": 1475.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(522,'7fd570e7-e441-49e4-9bcb-1c8ef696442e','04319a1f-03a7-46cc-9e49-b35cb8201f87',23,'','212-A3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 3018.387554483599, \"y\": 1450.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(523,'a2e5ee92-3784-4da4-b8bf-787974a8f40b','04319a1f-03a7-46cc-9e49-b35cb8201f87',23,'','212-A4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 3018.387554483599, \"y\": 1425.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(524,'24d5833a-388e-462b-8fe3-9ed591bfd7ad','04319a1f-03a7-46cc-9e49-b35cb8201f87',23,'','212-A5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 3018.3875544835987, \"y\": 1400.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(525,'de0e99c8-450e-4945-9606-5f1d6ffcbc43','04319a1f-03a7-46cc-9e49-b35cb8201f87',23,'','212-A6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 3018.387554483599, \"y\": 1375.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(526,'4cd1da23-6eea-4076-bd3e-f92f9b9342ea','04319a1f-03a7-46cc-9e49-b35cb8201f87',23,'','212-A7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 3018.387554483599, \"y\": 1350.4263894994572}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(527,'613742d1-cd0b-4c3b-ae32-454979102385','04319a1f-03a7-46cc-9e49-b35cb8201f87',23,'','212-B1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 3118.387554483599, \"y\": 1500.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(528,'d9f5fd1f-8baa-4297-afad-e1fc0099787f','04319a1f-03a7-46cc-9e49-b35cb8201f87',23,'','212-B2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 3118.387554483599, \"y\": 1475.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(529,'e3392a88-4aa1-4d42-ba43-0c81c0deeb2b','04319a1f-03a7-46cc-9e49-b35cb8201f87',23,'','212-B3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 3118.3875544835996, \"y\": 1450.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(530,'104cd4a4-452e-4acd-9964-33747036b819','04319a1f-03a7-46cc-9e49-b35cb8201f87',23,'','212-B4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 3118.387554483599, \"y\": 1425.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(531,'088225a8-f1ff-4bf0-ac60-fcdf3e9e5417','04319a1f-03a7-46cc-9e49-b35cb8201f87',23,'','212-B5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 3118.387554483599, \"y\": 1400.426389499457}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(532,'4f7d3c86-cf84-4154-8fef-712d66f8597a','04319a1f-03a7-46cc-9e49-b35cb8201f87',23,'','212-B6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 3118.387554483599, \"y\": 1375.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(533,'97fc6298-b05e-44ab-997c-b4849a6880ea','04319a1f-03a7-46cc-9e49-b35cb8201f87',23,'','212-B7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 3118.387554483599, \"y\": 1350.4263894994567}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(534,'35a77aa9-5d6d-4d28-b55f-c6488d1ab3ad',NULL,23,'','213','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2380.6413187264407, \"y\": 1714.2798085174647}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"a8855ff2-8278-483b-ba57-a26c14f2d9ab\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"213-A1\", \"capacity\": 1, \"position\": {\"x\": 2330.6413187264407, \"y\": 1789.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.498Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"513b9c72-5e73-4cd5-8f9b-b372b31d59d4\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"213-A2\", \"capacity\": 1, \"position\": {\"x\": 2330.6413187264407, \"y\": 1764.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.498Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"1cb45e11-da27-4a8a-923d-04ef8b493dc7\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"213-A3\", \"capacity\": 1, \"position\": {\"x\": 2330.6413187264407, \"y\": 1739.2798085174647}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.498Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"885b8b72-b545-40bf-9cbc-1d07c10a5bd2\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"213-A4\", \"capacity\": 1, \"position\": {\"x\": 2330.6413187264407, \"y\": 1714.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.498Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"2c299e44-b4a2-4a39-b27c-06f960f1b093\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"213-A5\", \"capacity\": 1, \"position\": {\"x\": 2330.64131872644, \"y\": 1689.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.498Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"0be91286-da59-4d12-bab7-6be968a2ac47\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"213-A6\", \"capacity\": 1, \"position\": {\"x\": 2330.6413187264407, \"y\": 1664.2798085174647}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.498Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"4ceda199-f90f-413f-8354-cd4f86d82c57\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"213-A7\", \"capacity\": 1, \"position\": {\"x\": 2330.6413187264407, \"y\": 1639.2798085174647}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.498Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"2ed42c96-695e-46c6-9b80-8ac89927be1c\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"213-B1\", \"capacity\": 1, \"position\": {\"x\": 2430.6413187264407, \"y\": 1789.2798085174647}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.498Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"f13bd282-7fcc-40d7-ae3e-12dea4a8cc9b\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"213-B2\", \"capacity\": 1, \"position\": {\"x\": 2430.6413187264407, \"y\": 1764.2798085174647}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.498Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"acc22fef-ee6c-4157-8c84-4225b1132c10\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"213-B3\", \"capacity\": 1, \"position\": {\"x\": 2430.641318726441, \"y\": 1739.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.498Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"b22b8d08-3d19-4c12-ac1e-354a95ca9aa9\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"213-B4\", \"capacity\": 1, \"position\": {\"x\": 2430.6413187264407, \"y\": 1714.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.498Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"4c8bdc43-a5c3-4e60-9312-ac1d3709a0b0\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"213-B5\", \"capacity\": 1, \"position\": {\"x\": 2430.6413187264407, \"y\": 1689.2798085174647}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.498Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"95131758-0f00-411b-80b6-613050b1489b\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"213-B6\", \"capacity\": 1, \"position\": {\"x\": 2430.6413187264407, \"y\": 1664.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.498Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"265eac1e-d8d9-4067-848a-71f563e9d69e\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"213-B7\", \"capacity\": 1, \"position\": {\"x\": 2430.6413187264407, \"y\": 1639.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.498Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}]','{\"x\": 2370.6413187264407, \"y\": 1714.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(535,'a8855ff2-8278-483b-ba57-a26c14f2d9ab','35a77aa9-5d6d-4d28-b55f-c6488d1ab3ad',23,'','213-A1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2330.6413187264407, \"y\": 1789.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(536,'513b9c72-5e73-4cd5-8f9b-b372b31d59d4','35a77aa9-5d6d-4d28-b55f-c6488d1ab3ad',23,'','213-A2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2330.6413187264407, \"y\": 1764.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(537,'1cb45e11-da27-4a8a-923d-04ef8b493dc7','35a77aa9-5d6d-4d28-b55f-c6488d1ab3ad',23,'','213-A3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2330.6413187264407, \"y\": 1739.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(538,'885b8b72-b545-40bf-9cbc-1d07c10a5bd2','35a77aa9-5d6d-4d28-b55f-c6488d1ab3ad',23,'','213-A4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2330.6413187264407, \"y\": 1714.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(539,'2c299e44-b4a2-4a39-b27c-06f960f1b093','35a77aa9-5d6d-4d28-b55f-c6488d1ab3ad',23,'','213-A5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2330.64131872644, \"y\": 1689.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(540,'0be91286-da59-4d12-bab7-6be968a2ac47','35a77aa9-5d6d-4d28-b55f-c6488d1ab3ad',23,'','213-A6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2330.6413187264407, \"y\": 1664.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(541,'4ceda199-f90f-413f-8354-cd4f86d82c57','35a77aa9-5d6d-4d28-b55f-c6488d1ab3ad',23,'','213-A7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2330.6413187264407, \"y\": 1639.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(542,'2ed42c96-695e-46c6-9b80-8ac89927be1c','35a77aa9-5d6d-4d28-b55f-c6488d1ab3ad',23,'','213-B1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2430.6413187264407, \"y\": 1789.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(543,'f13bd282-7fcc-40d7-ae3e-12dea4a8cc9b','35a77aa9-5d6d-4d28-b55f-c6488d1ab3ad',23,'','213-B2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2430.6413187264407, \"y\": 1764.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(544,'acc22fef-ee6c-4157-8c84-4225b1132c10','35a77aa9-5d6d-4d28-b55f-c6488d1ab3ad',23,'','213-B3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2430.641318726441, \"y\": 1739.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(545,'b22b8d08-3d19-4c12-ac1e-354a95ca9aa9','35a77aa9-5d6d-4d28-b55f-c6488d1ab3ad',23,'','213-B4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2430.6413187264407, \"y\": 1714.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(546,'4c8bdc43-a5c3-4e60-9312-ac1d3709a0b0','35a77aa9-5d6d-4d28-b55f-c6488d1ab3ad',23,'','213-B5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2430.6413187264407, \"y\": 1689.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(547,'95131758-0f00-411b-80b6-613050b1489b','35a77aa9-5d6d-4d28-b55f-c6488d1ab3ad',23,'','213-B6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2430.6413187264407, \"y\": 1664.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(548,'265eac1e-d8d9-4067-848a-71f563e9d69e','35a77aa9-5d6d-4d28-b55f-c6488d1ab3ad',23,'','213-B7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2430.6413187264407, \"y\": 1639.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(549,'d8cc62f7-5607-4fdd-978a-6cadec9c7cc0',NULL,23,'','214','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2518.1905658778724, \"y\": 1714.2798085174647}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"93a5b536-403a-42df-8850-992c020261a2\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"214-A1\", \"capacity\": 1, \"position\": {\"x\": 2468.1905658778724, \"y\": 1789.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"1795d5d0-5de8-47a1-ab65-bc75ca09b5bc\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"214-A2\", \"capacity\": 1, \"position\": {\"x\": 2468.1905658778724, \"y\": 1764.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"02672cae-9d18-4f83-92df-dd1e9136bdf6\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"214-A3\", \"capacity\": 1, \"position\": {\"x\": 2468.1905658778724, \"y\": 1739.2798085174647}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"6331e7a3-7c55-4cb9-96ad-556f69624e67\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"214-A4\", \"capacity\": 1, \"position\": {\"x\": 2468.1905658778724, \"y\": 1714.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"ca782908-2360-4c08-9eaa-2f6db7d62c51\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"214-A5\", \"capacity\": 1, \"position\": {\"x\": 2468.190565877872, \"y\": 1689.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"3ea810df-bb8d-4698-9ac4-26846e4194bb\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"214-A6\", \"capacity\": 1, \"position\": {\"x\": 2468.1905658778724, \"y\": 1664.2798085174647}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"9b2ec240-a85d-4082-95a3-dd1926668d69\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"214-A7\", \"capacity\": 1, \"position\": {\"x\": 2468.1905658778724, \"y\": 1639.2798085174647}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"70f1bc7d-b5e3-49f0-968f-7a4d393d59d1\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"214-B1\", \"capacity\": 1, \"position\": {\"x\": 2568.1905658778724, \"y\": 1789.2798085174647}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"54fce0f6-d2f1-4625-b4b2-2fc5cb5668ef\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"214-B2\", \"capacity\": 1, \"position\": {\"x\": 2568.1905658778724, \"y\": 1764.2798085174647}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"d5063128-412e-4f10-a856-f21c54d0aeaf\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"214-B3\", \"capacity\": 1, \"position\": {\"x\": 2568.190565877873, \"y\": 1739.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"70328aee-6d77-4edc-be72-49d1315a832d\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"214-B4\", \"capacity\": 1, \"position\": {\"x\": 2568.1905658778724, \"y\": 1714.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"1ff673ad-dc27-4588-a616-d1cf209f4457\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"214-B5\", \"capacity\": 1, \"position\": {\"x\": 2568.1905658778724, \"y\": 1689.2798085174647}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"8e4bec5a-5f3e-4195-b88c-4db074549966\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"214-B6\", \"capacity\": 1, \"position\": {\"x\": 2568.1905658778724, \"y\": 1664.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"330a8ac7-3fa7-4bd5-b5f6-b5cb533d329d\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"214-B7\", \"capacity\": 1, \"position\": {\"x\": 2568.1905658778724, \"y\": 1639.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:45.979Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}]','{\"x\": 2508.1905658778724, \"y\": 1714.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(550,'93a5b536-403a-42df-8850-992c020261a2','d8cc62f7-5607-4fdd-978a-6cadec9c7cc0',23,'','214-A1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2468.1905658778724, \"y\": 1789.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(551,'1795d5d0-5de8-47a1-ab65-bc75ca09b5bc','d8cc62f7-5607-4fdd-978a-6cadec9c7cc0',23,'','214-A2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2468.1905658778724, \"y\": 1764.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(552,'02672cae-9d18-4f83-92df-dd1e9136bdf6','d8cc62f7-5607-4fdd-978a-6cadec9c7cc0',23,'','214-A3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2468.1905658778724, \"y\": 1739.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(553,'6331e7a3-7c55-4cb9-96ad-556f69624e67','d8cc62f7-5607-4fdd-978a-6cadec9c7cc0',23,'','214-A4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2468.1905658778724, \"y\": 1714.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(554,'ca782908-2360-4c08-9eaa-2f6db7d62c51','d8cc62f7-5607-4fdd-978a-6cadec9c7cc0',23,'','214-A5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2468.190565877872, \"y\": 1689.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(555,'3ea810df-bb8d-4698-9ac4-26846e4194bb','d8cc62f7-5607-4fdd-978a-6cadec9c7cc0',23,'','214-A6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2468.1905658778724, \"y\": 1664.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(556,'9b2ec240-a85d-4082-95a3-dd1926668d69','d8cc62f7-5607-4fdd-978a-6cadec9c7cc0',23,'','214-A7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2468.1905658778724, \"y\": 1639.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(557,'70f1bc7d-b5e3-49f0-968f-7a4d393d59d1','d8cc62f7-5607-4fdd-978a-6cadec9c7cc0',23,'','214-B1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2568.1905658778724, \"y\": 1789.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(558,'54fce0f6-d2f1-4625-b4b2-2fc5cb5668ef','d8cc62f7-5607-4fdd-978a-6cadec9c7cc0',23,'','214-B2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2568.1905658778724, \"y\": 1764.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(559,'d5063128-412e-4f10-a856-f21c54d0aeaf','d8cc62f7-5607-4fdd-978a-6cadec9c7cc0',23,'','214-B3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2568.190565877873, \"y\": 1739.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(560,'70328aee-6d77-4edc-be72-49d1315a832d','d8cc62f7-5607-4fdd-978a-6cadec9c7cc0',23,'','214-B4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2568.1905658778724, \"y\": 1714.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(561,'1ff673ad-dc27-4588-a616-d1cf209f4457','d8cc62f7-5607-4fdd-978a-6cadec9c7cc0',23,'','214-B5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2568.1905658778724, \"y\": 1689.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(562,'8e4bec5a-5f3e-4195-b88c-4db074549966','d8cc62f7-5607-4fdd-978a-6cadec9c7cc0',23,'','214-B6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2568.1905658778724, \"y\": 1664.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(563,'330a8ac7-3fa7-4bd5-b5f6-b5cb533d329d','d8cc62f7-5607-4fdd-978a-6cadec9c7cc0',23,'','214-B7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2568.1905658778724, \"y\": 1639.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(564,'bab67230-929d-4b4b-b02a-b3a773c4d106',NULL,23,'','215','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2655.739813029304, \"y\": 1714.2798085174647}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"692c665e-2ce7-455c-8e10-99076cfe3705\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"215-A1\", \"capacity\": 1, \"position\": {\"x\": 2605.739813029304, \"y\": 1789.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.428Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"7d337772-6da0-44e4-8bba-01fe02872054\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"215-A2\", \"capacity\": 1, \"position\": {\"x\": 2605.739813029304, \"y\": 1764.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.428Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"8592da93-4bb4-42bf-a2b3-4612d2eb3822\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"215-A3\", \"capacity\": 1, \"position\": {\"x\": 2605.739813029304, \"y\": 1739.2798085174647}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.428Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"a4dd9f84-0e76-4bd7-a073-dfa408d811b3\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"215-A4\", \"capacity\": 1, \"position\": {\"x\": 2605.739813029304, \"y\": 1714.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.428Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"ae1fc4dd-aa21-478b-bf84-2f40f8cdb91a\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"215-A5\", \"capacity\": 1, \"position\": {\"x\": 2605.7398130293036, \"y\": 1689.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.428Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"a183bb67-461c-4ba5-93f1-000e9a0bf2b9\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"215-A6\", \"capacity\": 1, \"position\": {\"x\": 2605.739813029304, \"y\": 1664.2798085174647}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.428Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"08bd26e0-fe44-4d1a-ad5c-4148e70d7256\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"215-A7\", \"capacity\": 1, \"position\": {\"x\": 2605.739813029304, \"y\": 1639.2798085174647}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.428Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"91bf0ec2-7543-4173-9057-56c304c65d09\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"215-B1\", \"capacity\": 1, \"position\": {\"x\": 2705.739813029304, \"y\": 1789.2798085174647}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.428Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"4a77f083-c1c0-4cb3-a92c-6f39c99f7ad1\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"215-B2\", \"capacity\": 1, \"position\": {\"x\": 2705.739813029304, \"y\": 1764.2798085174647}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.428Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"bca977ea-09f0-4513-a9e8-29c631e1d6b8\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"215-B3\", \"capacity\": 1, \"position\": {\"x\": 2705.7398130293045, \"y\": 1739.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.428Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"73cb6e54-1ec7-4ba7-b90c-723b8f676c27\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"215-B4\", \"capacity\": 1, \"position\": {\"x\": 2705.739813029304, \"y\": 1714.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.428Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"df405ced-cd98-4e09-b0d0-706a8606b180\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"215-B5\", \"capacity\": 1, \"position\": {\"x\": 2705.739813029304, \"y\": 1689.2798085174647}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.428Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"aceb4467-ef00-48c7-9a0f-b55e450ae33c\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"215-B6\", \"capacity\": 1, \"position\": {\"x\": 2705.739813029304, \"y\": 1664.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.428Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}, {\"id\": \"32aca151-4fcb-4009-a78c-a26ee6c69d01\", \"type\": \"seat\", \"price\": 400, \"seat_id\": \"215-B7\", \"capacity\": 1, \"position\": {\"x\": 2705.739813029304, \"y\": 1639.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.428Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 127}]','{\"x\": 2645.739813029304, \"y\": 1714.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(565,'692c665e-2ce7-455c-8e10-99076cfe3705','bab67230-929d-4b4b-b02a-b3a773c4d106',23,'','215-A1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2605.739813029304, \"y\": 1789.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(566,'7d337772-6da0-44e4-8bba-01fe02872054','bab67230-929d-4b4b-b02a-b3a773c4d106',23,'','215-A2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2605.739813029304, \"y\": 1764.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(567,'8592da93-4bb4-42bf-a2b3-4612d2eb3822','bab67230-929d-4b4b-b02a-b3a773c4d106',23,'','215-A3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2605.739813029304, \"y\": 1739.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(568,'a4dd9f84-0e76-4bd7-a073-dfa408d811b3','bab67230-929d-4b4b-b02a-b3a773c4d106',23,'','215-A4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2605.739813029304, \"y\": 1714.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(569,'ae1fc4dd-aa21-478b-bf84-2f40f8cdb91a','bab67230-929d-4b4b-b02a-b3a773c4d106',23,'','215-A5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2605.7398130293036, \"y\": 1689.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(570,'a183bb67-461c-4ba5-93f1-000e9a0bf2b9','bab67230-929d-4b4b-b02a-b3a773c4d106',23,'','215-A6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2605.739813029304, \"y\": 1664.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(571,'08bd26e0-fe44-4d1a-ad5c-4148e70d7256','bab67230-929d-4b4b-b02a-b3a773c4d106',23,'','215-A7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2605.739813029304, \"y\": 1639.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(572,'91bf0ec2-7543-4173-9057-56c304c65d09','bab67230-929d-4b4b-b02a-b3a773c4d106',23,'','215-B1','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2705.739813029304, \"y\": 1789.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(573,'4a77f083-c1c0-4cb3-a92c-6f39c99f7ad1','bab67230-929d-4b4b-b02a-b3a773c4d106',23,'','215-B2','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2705.739813029304, \"y\": 1764.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(574,'bca977ea-09f0-4513-a9e8-29c631e1d6b8','bab67230-929d-4b4b-b02a-b3a773c4d106',23,'','215-B3','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2705.7398130293045, \"y\": 1739.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(575,'73cb6e54-1ec7-4ba7-b90c-723b8f676c27','bab67230-929d-4b4b-b02a-b3a773c4d106',23,'','215-B4','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2705.739813029304, \"y\": 1714.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(576,'df405ced-cd98-4e09-b0d0-706a8606b180','bab67230-929d-4b4b-b02a-b3a773c4d106',23,'','215-B5','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2705.739813029304, \"y\": 1689.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(577,'aceb4467-ef00-48c7-9a0f-b55e450ae33c','bab67230-929d-4b4b-b02a-b3a773c4d106',23,'','215-B6','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2705.739813029304, \"y\": 1664.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(578,'32aca151-4fcb-4009-a78c-a26ee6c69d01','bab67230-929d-4b4b-b02a-b3a773c4d106',23,'','215-B7','table_child',400.00,1,NULL,'general',NULL,NULL,'{\"x\": 2705.739813029304, \"y\": 1639.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(579,'6cc18dfc-ed7b-4cca-8acf-e8e7946512d2',NULL,23,'','216','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2793.289060180736, \"y\": 1714.2798085174647}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"fa8d7e12-fe1d-48a1-bdd1-103cffd1b6a0\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"216-A1\", \"capacity\": 1, \"position\": {\"x\": 2743.289060180736, \"y\": 1789.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.898Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"ac8b476b-8012-4af6-b8fc-00bf36260cd3\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"216-A2\", \"capacity\": 1, \"position\": {\"x\": 2743.289060180736, \"y\": 1764.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.898Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"288facf6-0b5b-4eb8-8ddc-32b6ce6d6729\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"216-A3\", \"capacity\": 1, \"position\": {\"x\": 2743.289060180736, \"y\": 1739.2798085174647}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.898Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"0ee7f806-87f4-414b-82a0-8c52262eb902\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"216-A4\", \"capacity\": 1, \"position\": {\"x\": 2743.289060180736, \"y\": 1714.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.898Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"b4a8a312-db5e-471b-9bee-776e87c43f07\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"216-A5\", \"capacity\": 1, \"position\": {\"x\": 2743.2890601807353, \"y\": 1689.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.898Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"3ff9634d-9f74-429a-885e-2d4616cd21e4\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"216-A6\", \"capacity\": 1, \"position\": {\"x\": 2743.289060180736, \"y\": 1664.2798085174647}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.898Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"50487ef4-0efa-4ef6-a232-e35ecbfb02b4\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"216-A7\", \"capacity\": 1, \"position\": {\"x\": 2743.289060180736, \"y\": 1639.2798085174647}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.898Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"a89f0df0-ff35-4d7d-9469-5d268ef25c79\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"216-B1\", \"capacity\": 1, \"position\": {\"x\": 2843.289060180736, \"y\": 1789.2798085174647}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.898Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"4a383d97-a2f5-453f-93e3-b2c83960ddfc\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"216-B2\", \"capacity\": 1, \"position\": {\"x\": 2843.289060180736, \"y\": 1764.2798085174647}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.898Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"30318249-1d37-47cf-8e6f-e4403f4e9c86\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"216-B3\", \"capacity\": 1, \"position\": {\"x\": 2843.289060180736, \"y\": 1739.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.898Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"4003a18e-43a3-492b-8f75-fa448fbed8ad\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"216-B4\", \"capacity\": 1, \"position\": {\"x\": 2843.289060180736, \"y\": 1714.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.898Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"70f7b9ac-4089-41bb-b565-a483ce504d18\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"216-B5\", \"capacity\": 1, \"position\": {\"x\": 2843.289060180736, \"y\": 1689.2798085174647}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.898Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"d8c9964f-404d-4869-8bd8-e724601ccdad\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"216-B6\", \"capacity\": 1, \"position\": {\"x\": 2843.289060180736, \"y\": 1664.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.898Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"c358ac2c-e5de-471e-8818-88e86f00152f\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"216-B7\", \"capacity\": 1, \"position\": {\"x\": 2843.289060180736, \"y\": 1639.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:46.898Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}]','{\"x\": 2783.289060180736, \"y\": 1714.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(580,'fa8d7e12-fe1d-48a1-bdd1-103cffd1b6a0','6cc18dfc-ed7b-4cca-8acf-e8e7946512d2',23,'','216-A1','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2743.289060180736, \"y\": 1789.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(581,'ac8b476b-8012-4af6-b8fc-00bf36260cd3','6cc18dfc-ed7b-4cca-8acf-e8e7946512d2',23,'','216-A2','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2743.289060180736, \"y\": 1764.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(582,'288facf6-0b5b-4eb8-8ddc-32b6ce6d6729','6cc18dfc-ed7b-4cca-8acf-e8e7946512d2',23,'','216-A3','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2743.289060180736, \"y\": 1739.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(583,'0ee7f806-87f4-414b-82a0-8c52262eb902','6cc18dfc-ed7b-4cca-8acf-e8e7946512d2',23,'','216-A4','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2743.289060180736, \"y\": 1714.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(584,'b4a8a312-db5e-471b-9bee-776e87c43f07','6cc18dfc-ed7b-4cca-8acf-e8e7946512d2',23,'','216-A5','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2743.2890601807353, \"y\": 1689.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(585,'3ff9634d-9f74-429a-885e-2d4616cd21e4','6cc18dfc-ed7b-4cca-8acf-e8e7946512d2',23,'','216-A6','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2743.289060180736, \"y\": 1664.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(586,'50487ef4-0efa-4ef6-a232-e35ecbfb02b4','6cc18dfc-ed7b-4cca-8acf-e8e7946512d2',23,'','216-A7','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2743.289060180736, \"y\": 1639.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(587,'a89f0df0-ff35-4d7d-9469-5d268ef25c79','6cc18dfc-ed7b-4cca-8acf-e8e7946512d2',23,'','216-B1','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2843.289060180736, \"y\": 1789.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(588,'4a383d97-a2f5-453f-93e3-b2c83960ddfc','6cc18dfc-ed7b-4cca-8acf-e8e7946512d2',23,'','216-B2','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2843.289060180736, \"y\": 1764.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(589,'30318249-1d37-47cf-8e6f-e4403f4e9c86','6cc18dfc-ed7b-4cca-8acf-e8e7946512d2',23,'','216-B3','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2843.289060180736, \"y\": 1739.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(590,'4003a18e-43a3-492b-8f75-fa448fbed8ad','6cc18dfc-ed7b-4cca-8acf-e8e7946512d2',23,'','216-B4','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2843.289060180736, \"y\": 1714.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(591,'70f7b9ac-4089-41bb-b565-a483ce504d18','6cc18dfc-ed7b-4cca-8acf-e8e7946512d2',23,'','216-B5','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2843.289060180736, \"y\": 1689.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(592,'d8c9964f-404d-4869-8bd8-e724601ccdad','6cc18dfc-ed7b-4cca-8acf-e8e7946512d2',23,'','216-B6','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2843.289060180736, \"y\": 1664.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(593,'c358ac2c-e5de-471e-8818-88e86f00152f','6cc18dfc-ed7b-4cca-8acf-e8e7946512d2',23,'','216-B7','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2843.289060180736, \"y\": 1639.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(594,'9535b530-87ee-442a-bbb5-c811d6cb6cfa',NULL,23,'','217','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2930.8383073321675, \"y\": 1714.2798085174647}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"1cf489ad-f460-46f3-9ea9-ca36f7881773\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"217-A1\", \"capacity\": 1, \"position\": {\"x\": 2880.8383073321675, \"y\": 1789.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:47.680Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"266ed2bf-0bd1-4461-ba1a-91546418fece\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"217-A2\", \"capacity\": 1, \"position\": {\"x\": 2880.8383073321675, \"y\": 1764.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:47.680Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"368d25c0-68c1-4127-99e1-c733133371ff\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"217-A3\", \"capacity\": 1, \"position\": {\"x\": 2880.8383073321675, \"y\": 1739.2798085174647}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:47.680Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"4c1e70af-c8f2-44dd-bada-95363297ade0\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"217-A4\", \"capacity\": 1, \"position\": {\"x\": 2880.8383073321675, \"y\": 1714.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:47.680Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"60ec5cac-d917-40a3-b8ce-405816bfcecd\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"217-A5\", \"capacity\": 1, \"position\": {\"x\": 2880.838307332167, \"y\": 1689.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:47.680Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"13f316bd-6479-4e7e-95e2-2008f8a1e1bf\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"217-A6\", \"capacity\": 1, \"position\": {\"x\": 2880.8383073321675, \"y\": 1664.2798085174647}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:47.680Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"494f7589-7416-41af-97fb-1177dbcce469\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"217-A7\", \"capacity\": 1, \"position\": {\"x\": 2880.8383073321675, \"y\": 1639.2798085174647}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:47.680Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"2fa4f7d5-0d48-4dfd-b170-0511174e32e8\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"217-B1\", \"capacity\": 1, \"position\": {\"x\": 2980.8383073321675, \"y\": 1789.2798085174647}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:47.680Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"b55faec7-8c75-4a29-a84f-4add9e862724\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"217-B2\", \"capacity\": 1, \"position\": {\"x\": 2980.8383073321675, \"y\": 1764.2798085174647}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:47.680Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"fdca5405-1801-47d7-b484-00ded4088e34\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"217-B3\", \"capacity\": 1, \"position\": {\"x\": 2980.838307332168, \"y\": 1739.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:47.680Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"fa76718e-ba15-4f72-9b48-7d297970a543\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"217-B4\", \"capacity\": 1, \"position\": {\"x\": 2980.8383073321675, \"y\": 1714.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:47.680Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"33d7bb91-c270-478d-8b57-6db44cd3a11c\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"217-B5\", \"capacity\": 1, \"position\": {\"x\": 2980.8383073321675, \"y\": 1689.2798085174647}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:47.680Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"830287f2-cdb7-4658-b6a0-23a960a6f9c0\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"217-B6\", \"capacity\": 1, \"position\": {\"x\": 2980.8383073321675, \"y\": 1664.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:47.680Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"df0219ff-5598-4653-bd2c-2962f7b60bfa\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"217-B7\", \"capacity\": 1, \"position\": {\"x\": 2980.8383073321675, \"y\": 1639.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:47.680Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}]','{\"x\": 2920.8383073321675, \"y\": 1714.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(595,'1cf489ad-f460-46f3-9ea9-ca36f7881773','9535b530-87ee-442a-bbb5-c811d6cb6cfa',23,'','217-A1','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2880.8383073321675, \"y\": 1789.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(596,'266ed2bf-0bd1-4461-ba1a-91546418fece','9535b530-87ee-442a-bbb5-c811d6cb6cfa',23,'','217-A2','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2880.8383073321675, \"y\": 1764.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(597,'368d25c0-68c1-4127-99e1-c733133371ff','9535b530-87ee-442a-bbb5-c811d6cb6cfa',23,'','217-A3','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2880.8383073321675, \"y\": 1739.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(598,'4c1e70af-c8f2-44dd-bada-95363297ade0','9535b530-87ee-442a-bbb5-c811d6cb6cfa',23,'','217-A4','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2880.8383073321675, \"y\": 1714.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(599,'60ec5cac-d917-40a3-b8ce-405816bfcecd','9535b530-87ee-442a-bbb5-c811d6cb6cfa',23,'','217-A5','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2880.838307332167, \"y\": 1689.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(600,'13f316bd-6479-4e7e-95e2-2008f8a1e1bf','9535b530-87ee-442a-bbb5-c811d6cb6cfa',23,'','217-A6','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2880.8383073321675, \"y\": 1664.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(601,'494f7589-7416-41af-97fb-1177dbcce469','9535b530-87ee-442a-bbb5-c811d6cb6cfa',23,'','217-A7','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2880.8383073321675, \"y\": 1639.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(602,'2fa4f7d5-0d48-4dfd-b170-0511174e32e8','9535b530-87ee-442a-bbb5-c811d6cb6cfa',23,'','217-B1','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2980.8383073321675, \"y\": 1789.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(603,'b55faec7-8c75-4a29-a84f-4add9e862724','9535b530-87ee-442a-bbb5-c811d6cb6cfa',23,'','217-B2','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2980.8383073321675, \"y\": 1764.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(604,'fdca5405-1801-47d7-b484-00ded4088e34','9535b530-87ee-442a-bbb5-c811d6cb6cfa',23,'','217-B3','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2980.838307332168, \"y\": 1739.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(605,'fa76718e-ba15-4f72-9b48-7d297970a543','9535b530-87ee-442a-bbb5-c811d6cb6cfa',23,'','217-B4','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2980.8383073321675, \"y\": 1714.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(606,'33d7bb91-c270-478d-8b57-6db44cd3a11c','9535b530-87ee-442a-bbb5-c811d6cb6cfa',23,'','217-B5','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2980.8383073321675, \"y\": 1689.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(607,'830287f2-cdb7-4658-b6a0-23a960a6f9c0','9535b530-87ee-442a-bbb5-c811d6cb6cfa',23,'','217-B6','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2980.8383073321675, \"y\": 1664.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(608,'df0219ff-5598-4653-bd2c-2962f7b60bfa','9535b530-87ee-442a-bbb5-c811d6cb6cfa',23,'','217-B7','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 2980.8383073321675, \"y\": 1639.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(609,'f138a09b-9576-4b0b-93b3-c2134acc5b1f',NULL,23,'','218','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 3068.387554483599, \"y\": 1714.2798085174647}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"b88bc573-accb-4443-afc0-60c4f9d89197\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"218-A1\", \"capacity\": 1, \"position\": {\"x\": 3018.387554483599, \"y\": 1789.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:48.193Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"7b2cc8d9-0a88-4b80-bdee-74286d696de2\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"218-A2\", \"capacity\": 1, \"position\": {\"x\": 3018.387554483599, \"y\": 1764.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:48.193Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"4021869e-1fc1-439b-ad6e-f29e1e008e55\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"218-A3\", \"capacity\": 1, \"position\": {\"x\": 3018.387554483599, \"y\": 1739.2798085174647}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:48.193Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"43e05bbb-75a1-42cf-8fd7-4d148f97ce38\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"218-A4\", \"capacity\": 1, \"position\": {\"x\": 3018.387554483599, \"y\": 1714.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:48.193Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"390b721e-f734-45ea-89ec-8ffe1a1b19ad\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"218-A5\", \"capacity\": 1, \"position\": {\"x\": 3018.3875544835987, \"y\": 1689.279808517465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:48.193Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"f948f4d0-fb20-46eb-8dd6-9692615d42d8\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"218-A6\", \"capacity\": 1, \"position\": {\"x\": 3018.387554483599, \"y\": 1664.2798085174647}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:48.193Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"a99799c3-5395-415f-8bdf-8073abd3d7cb\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"218-A7\", \"capacity\": 1, \"position\": {\"x\": 3018.387554483599, \"y\": 1639.2798085174647}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:48.193Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"a05dfcfd-3ae3-4ac9-876c-900226d98718\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"218-B1\", \"capacity\": 1, \"position\": {\"x\": 3118.387554483599, \"y\": 1789.2798085174647}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:48.193Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"68c4f40b-89e3-4d99-b23c-fbe87c810d52\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"218-B2\", \"capacity\": 1, \"position\": {\"x\": 3118.387554483599, \"y\": 1764.2798085174647}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:48.193Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"251939eb-ba02-404c-958c-3340e0641f60\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"218-B3\", \"capacity\": 1, \"position\": {\"x\": 3118.3875544835996, \"y\": 1739.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:48.193Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"8c17f7ba-770d-46f6-afde-faa024358258\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"218-B4\", \"capacity\": 1, \"position\": {\"x\": 3118.387554483599, \"y\": 1714.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:48.193Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"4b377269-19d9-4d28-a0f1-da790682134d\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"218-B5\", \"capacity\": 1, \"position\": {\"x\": 3118.387554483599, \"y\": 1689.2798085174647}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:48.193Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"e188ab4e-44d3-4732-8e49-d1029cf7d8cb\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"218-B6\", \"capacity\": 1, \"position\": {\"x\": 3118.387554483599, \"y\": 1664.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:48.193Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}, {\"id\": \"bd10ef89-d255-4cf5-bd53-20f3b82b6b99\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"218-B7\", \"capacity\": 1, \"position\": {\"x\": 3118.387554483599, \"y\": 1639.2798085174643}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:36:48.193Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"f9daa268-9cd9-441d-a5be-ec553aa90f74\", \"updated_at\": \"2025-11-05T10:37:35.183Z\", \"price_tier_id\": 128}]','{\"x\": 3058.387554483599, \"y\": 1714.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(610,'b88bc573-accb-4443-afc0-60c4f9d89197','f138a09b-9576-4b0b-93b3-c2134acc5b1f',23,'','218-A1','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 3018.387554483599, \"y\": 1789.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(611,'7b2cc8d9-0a88-4b80-bdee-74286d696de2','f138a09b-9576-4b0b-93b3-c2134acc5b1f',23,'','218-A2','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 3018.387554483599, \"y\": 1764.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(612,'4021869e-1fc1-439b-ad6e-f29e1e008e55','f138a09b-9576-4b0b-93b3-c2134acc5b1f',23,'','218-A3','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 3018.387554483599, \"y\": 1739.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(613,'43e05bbb-75a1-42cf-8fd7-4d148f97ce38','f138a09b-9576-4b0b-93b3-c2134acc5b1f',23,'','218-A4','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 3018.387554483599, \"y\": 1714.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(614,'390b721e-f734-45ea-89ec-8ffe1a1b19ad','f138a09b-9576-4b0b-93b3-c2134acc5b1f',23,'','218-A5','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 3018.3875544835987, \"y\": 1689.279808517465}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(615,'f948f4d0-fb20-46eb-8dd6-9692615d42d8','f138a09b-9576-4b0b-93b3-c2134acc5b1f',23,'','218-A6','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 3018.387554483599, \"y\": 1664.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(616,'a99799c3-5395-415f-8bdf-8073abd3d7cb','f138a09b-9576-4b0b-93b3-c2134acc5b1f',23,'','218-A7','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 3018.387554483599, \"y\": 1639.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(617,'a05dfcfd-3ae3-4ac9-876c-900226d98718','f138a09b-9576-4b0b-93b3-c2134acc5b1f',23,'','218-B1','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 3118.387554483599, \"y\": 1789.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(618,'68c4f40b-89e3-4d99-b23c-fbe87c810d52','f138a09b-9576-4b0b-93b3-c2134acc5b1f',23,'','218-B2','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 3118.387554483599, \"y\": 1764.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(619,'251939eb-ba02-404c-958c-3340e0641f60','f138a09b-9576-4b0b-93b3-c2134acc5b1f',23,'','218-B3','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 3118.3875544835996, \"y\": 1739.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(620,'8c17f7ba-770d-46f6-afde-faa024358258','f138a09b-9576-4b0b-93b3-c2134acc5b1f',23,'','218-B4','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 3118.387554483599, \"y\": 1714.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(621,'4b377269-19d9-4d28-a0f1-da790682134d','f138a09b-9576-4b0b-93b3-c2134acc5b1f',23,'','218-B5','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 3118.387554483599, \"y\": 1689.2798085174647}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(622,'e188ab4e-44d3-4732-8e49-d1029cf7d8cb','f138a09b-9576-4b0b-93b3-c2134acc5b1f',23,'','218-B6','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 3118.387554483599, \"y\": 1664.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(623,'bd10ef89-d255-4cf5-bd53-20f3b82b6b99','f138a09b-9576-4b0b-93b3-c2134acc5b1f',23,'','218-B7','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 3118.387554483599, \"y\": 1639.2798085174643}','f9daa268-9cd9-441d-a5be-ec553aa90f74',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(624,'4523e8be-2480-4cc0-9f86-96faee20bd07',NULL,23,'','301','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1377.122489745334, \"y\": 2029.8766889777469}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"126ba077-e145-4d7c-bc8a-612c65eb4330\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"301-A1\", \"capacity\": 1, \"position\": {\"x\": 1327.122489745334, \"y\": 2104.8766889777467}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:51.165Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.260Z\", \"price_tier_id\": 129}, {\"id\": \"c3b1e6d0-6e60-4281-a70b-e276b230d703\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"301-A2\", \"capacity\": 1, \"position\": {\"x\": 1327.122489745334, \"y\": 2079.8766889777467}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:51.165Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.260Z\", \"price_tier_id\": 129}, {\"id\": \"215c3ebf-d652-4bad-889d-07c1f1a62cf4\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"301-A3\", \"capacity\": 1, \"position\": {\"x\": 1327.122489745334, \"y\": 2054.8766889777467}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:51.165Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.260Z\", \"price_tier_id\": 129}, {\"id\": \"1410754b-4acb-4d4b-a190-b173fdaa5a84\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"301-A4\", \"capacity\": 1, \"position\": {\"x\": 1327.122489745334, \"y\": 2029.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:51.165Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.260Z\", \"price_tier_id\": 129}, {\"id\": \"823551f1-f2c0-4826-b7b3-a862760ceb19\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"301-A5\", \"capacity\": 1, \"position\": {\"x\": 1327.122489745334, \"y\": 2004.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:51.165Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.260Z\", \"price_tier_id\": 129}, {\"id\": \"3f403d52-170c-4d78-bdf8-7a55e2934efc\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"301-A6\", \"capacity\": 1, \"position\": {\"x\": 1327.122489745334, \"y\": 1979.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:51.165Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.260Z\", \"price_tier_id\": 129}, {\"id\": \"b1bcccf2-31b8-4025-bdec-d937ef0fe790\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"301-A7\", \"capacity\": 1, \"position\": {\"x\": 1327.122489745334, \"y\": 1954.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:51.165Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.260Z\", \"price_tier_id\": 129}, {\"id\": \"f6d8b616-c500-4477-88a0-532800fb2348\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"301-B1\", \"capacity\": 1, \"position\": {\"x\": 1427.122489745334, \"y\": 2104.8766889777467}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:51.165Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.260Z\", \"price_tier_id\": 129}, {\"id\": \"f1e744cb-d008-4c42-b5a6-5a2dff3143cf\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"301-B2\", \"capacity\": 1, \"position\": {\"x\": 1427.122489745334, \"y\": 2079.8766889777467}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:51.165Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.260Z\", \"price_tier_id\": 129}, {\"id\": \"bc1aa643-b613-4f3f-aafa-6fcaf7210130\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"301-B3\", \"capacity\": 1, \"position\": {\"x\": 1427.122489745334, \"y\": 2054.8766889777467}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:51.165Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.260Z\", \"price_tier_id\": 129}, {\"id\": \"bd50f995-e6f8-4397-b16d-05b0a64b27a8\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"301-B4\", \"capacity\": 1, \"position\": {\"x\": 1427.122489745334, \"y\": 2029.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:51.165Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.260Z\", \"price_tier_id\": 129}, {\"id\": \"31281b02-1ce4-40b3-b993-e9646837d749\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"301-B5\", \"capacity\": 1, \"position\": {\"x\": 1427.122489745334, \"y\": 2004.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:51.165Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.260Z\", \"price_tier_id\": 129}, {\"id\": \"adfd4f87-e12a-42ad-9bfe-1fafe6a0979e\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"301-B6\", \"capacity\": 1, \"position\": {\"x\": 1427.122489745334, \"y\": 1979.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:51.165Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.260Z\", \"price_tier_id\": 129}, {\"id\": \"ba5227b7-1928-47df-9811-4dd93c592f77\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"301-B7\", \"capacity\": 1, \"position\": {\"x\": 1427.122489745334, \"y\": 1954.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:51.165Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.260Z\", \"price_tier_id\": 129}]','{\"x\": 1377.122489745334, \"y\": 2029.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(625,'126ba077-e145-4d7c-bc8a-612c65eb4330','4523e8be-2480-4cc0-9f86-96faee20bd07',23,'','301-A1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1327.122489745334, \"y\": 2104.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(626,'c3b1e6d0-6e60-4281-a70b-e276b230d703','4523e8be-2480-4cc0-9f86-96faee20bd07',23,'','301-A2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1327.122489745334, \"y\": 2079.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(627,'215c3ebf-d652-4bad-889d-07c1f1a62cf4','4523e8be-2480-4cc0-9f86-96faee20bd07',23,'','301-A3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1327.122489745334, \"y\": 2054.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(628,'1410754b-4acb-4d4b-a190-b173fdaa5a84','4523e8be-2480-4cc0-9f86-96faee20bd07',23,'','301-A4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1327.122489745334, \"y\": 2029.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(629,'823551f1-f2c0-4826-b7b3-a862760ceb19','4523e8be-2480-4cc0-9f86-96faee20bd07',23,'','301-A5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1327.122489745334, \"y\": 2004.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(630,'3f403d52-170c-4d78-bdf8-7a55e2934efc','4523e8be-2480-4cc0-9f86-96faee20bd07',23,'','301-A6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1327.122489745334, \"y\": 1979.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(631,'b1bcccf2-31b8-4025-bdec-d937ef0fe790','4523e8be-2480-4cc0-9f86-96faee20bd07',23,'','301-A7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1327.122489745334, \"y\": 1954.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:21','2025-11-30 20:50:21',NULL,NULL),(632,'f6d8b616-c500-4477-88a0-532800fb2348','4523e8be-2480-4cc0-9f86-96faee20bd07',23,'','301-B1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1427.122489745334, \"y\": 2104.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(633,'f1e744cb-d008-4c42-b5a6-5a2dff3143cf','4523e8be-2480-4cc0-9f86-96faee20bd07',23,'','301-B2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1427.122489745334, \"y\": 2079.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(634,'bc1aa643-b613-4f3f-aafa-6fcaf7210130','4523e8be-2480-4cc0-9f86-96faee20bd07',23,'','301-B3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1427.122489745334, \"y\": 2054.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(635,'bd50f995-e6f8-4397-b16d-05b0a64b27a8','4523e8be-2480-4cc0-9f86-96faee20bd07',23,'','301-B4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1427.122489745334, \"y\": 2029.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(636,'31281b02-1ce4-40b3-b993-e9646837d749','4523e8be-2480-4cc0-9f86-96faee20bd07',23,'','301-B5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1427.122489745334, \"y\": 2004.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(637,'adfd4f87-e12a-42ad-9bfe-1fafe6a0979e','4523e8be-2480-4cc0-9f86-96faee20bd07',23,'','301-B6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1427.122489745334, \"y\": 1979.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(638,'ba5227b7-1928-47df-9811-4dd93c592f77','4523e8be-2480-4cc0-9f86-96faee20bd07',23,'','301-B7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1427.122489745334, \"y\": 1954.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(639,'83623775-3290-44d8-851a-7e48f6e9d340',NULL,23,'','302','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1515.2599232270288, \"y\": 2029.8766889777469}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"b7c9925a-6dda-460b-8fb0-22219e730266\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"302-A1\", \"capacity\": 1, \"position\": {\"x\": 1465.2599232270288, \"y\": 2104.8766889777467}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.141Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.273Z\", \"price_tier_id\": 129}, {\"id\": \"546b3245-89e0-47d9-a3c4-d0d776f8c348\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"302-A2\", \"capacity\": 1, \"position\": {\"x\": 1465.2599232270288, \"y\": 2079.8766889777467}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.141Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.273Z\", \"price_tier_id\": 129}, {\"id\": \"d4233811-b7ef-4d44-8a79-55d2b95e5cdd\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"302-A3\", \"capacity\": 1, \"position\": {\"x\": 1465.2599232270288, \"y\": 2054.8766889777467}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.141Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.273Z\", \"price_tier_id\": 129}, {\"id\": \"88c94856-1b28-450e-b0a9-bdae24734168\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"302-A4\", \"capacity\": 1, \"position\": {\"x\": 1465.2599232270288, \"y\": 2029.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.141Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.273Z\", \"price_tier_id\": 129}, {\"id\": \"1c01acc4-df29-4602-a112-7edbb8d463ec\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"302-A5\", \"capacity\": 1, \"position\": {\"x\": 1465.2599232270288, \"y\": 2004.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.141Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.273Z\", \"price_tier_id\": 129}, {\"id\": \"acd3fe6a-a291-45ea-a753-af082207a8b3\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"302-A6\", \"capacity\": 1, \"position\": {\"x\": 1465.2599232270288, \"y\": 1979.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.141Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.273Z\", \"price_tier_id\": 129}, {\"id\": \"a55b61dc-0846-4096-b63f-18c15c814925\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"302-A7\", \"capacity\": 1, \"position\": {\"x\": 1465.2599232270288, \"y\": 1954.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.141Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.273Z\", \"price_tier_id\": 129}, {\"id\": \"104d9268-c2ad-4e31-84b3-07e59e9a6d71\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"302-B1\", \"capacity\": 1, \"position\": {\"x\": 1565.2599232270288, \"y\": 2104.8766889777467}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.141Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.273Z\", \"price_tier_id\": 129}, {\"id\": \"18f2ab5d-8257-4712-a375-6453aea20164\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"302-B2\", \"capacity\": 1, \"position\": {\"x\": 1565.2599232270288, \"y\": 2079.8766889777467}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.141Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.273Z\", \"price_tier_id\": 129}, {\"id\": \"0e54340f-6d5b-4cd6-8c89-b45f32f89597\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"302-B3\", \"capacity\": 1, \"position\": {\"x\": 1565.2599232270288, \"y\": 2054.8766889777467}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.141Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.273Z\", \"price_tier_id\": 129}, {\"id\": \"9610177e-4dc1-451a-b29f-81cd6d49db11\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"302-B4\", \"capacity\": 1, \"position\": {\"x\": 1565.2599232270288, \"y\": 2029.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.141Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.273Z\", \"price_tier_id\": 129}, {\"id\": \"49635597-1d92-4ab8-8c7e-195476f14abe\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"302-B5\", \"capacity\": 1, \"position\": {\"x\": 1565.2599232270288, \"y\": 2004.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.141Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.273Z\", \"price_tier_id\": 129}, {\"id\": \"a46df7ec-5edf-4a69-b9c9-6e4a41986a85\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"302-B6\", \"capacity\": 1, \"position\": {\"x\": 1565.2599232270288, \"y\": 1979.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.141Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.273Z\", \"price_tier_id\": 129}, {\"id\": \"bf0d3773-dc62-456a-9edf-e397e8ec57d2\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"302-B7\", \"capacity\": 1, \"position\": {\"x\": 1565.2599232270288, \"y\": 1954.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.141Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.273Z\", \"price_tier_id\": 129}]','{\"x\": 1515.2599232270288, \"y\": 2029.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(640,'b7c9925a-6dda-460b-8fb0-22219e730266','83623775-3290-44d8-851a-7e48f6e9d340',23,'','302-A1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1465.2599232270288, \"y\": 2104.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(641,'546b3245-89e0-47d9-a3c4-d0d776f8c348','83623775-3290-44d8-851a-7e48f6e9d340',23,'','302-A2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1465.2599232270288, \"y\": 2079.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(642,'d4233811-b7ef-4d44-8a79-55d2b95e5cdd','83623775-3290-44d8-851a-7e48f6e9d340',23,'','302-A3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1465.2599232270288, \"y\": 2054.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(643,'88c94856-1b28-450e-b0a9-bdae24734168','83623775-3290-44d8-851a-7e48f6e9d340',23,'','302-A4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1465.2599232270288, \"y\": 2029.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(644,'1c01acc4-df29-4602-a112-7edbb8d463ec','83623775-3290-44d8-851a-7e48f6e9d340',23,'','302-A5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1465.2599232270288, \"y\": 2004.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(645,'acd3fe6a-a291-45ea-a753-af082207a8b3','83623775-3290-44d8-851a-7e48f6e9d340',23,'','302-A6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1465.2599232270288, \"y\": 1979.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(646,'a55b61dc-0846-4096-b63f-18c15c814925','83623775-3290-44d8-851a-7e48f6e9d340',23,'','302-A7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1465.2599232270288, \"y\": 1954.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(647,'104d9268-c2ad-4e31-84b3-07e59e9a6d71','83623775-3290-44d8-851a-7e48f6e9d340',23,'','302-B1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1565.2599232270288, \"y\": 2104.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(648,'18f2ab5d-8257-4712-a375-6453aea20164','83623775-3290-44d8-851a-7e48f6e9d340',23,'','302-B2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1565.2599232270288, \"y\": 2079.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(649,'0e54340f-6d5b-4cd6-8c89-b45f32f89597','83623775-3290-44d8-851a-7e48f6e9d340',23,'','302-B3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1565.2599232270288, \"y\": 2054.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(650,'9610177e-4dc1-451a-b29f-81cd6d49db11','83623775-3290-44d8-851a-7e48f6e9d340',23,'','302-B4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1565.2599232270288, \"y\": 2029.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(651,'49635597-1d92-4ab8-8c7e-195476f14abe','83623775-3290-44d8-851a-7e48f6e9d340',23,'','302-B5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1565.2599232270288, \"y\": 2004.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(652,'a46df7ec-5edf-4a69-b9c9-6e4a41986a85','83623775-3290-44d8-851a-7e48f6e9d340',23,'','302-B6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1565.2599232270288, \"y\": 1979.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(653,'bf0d3773-dc62-456a-9edf-e397e8ec57d2','83623775-3290-44d8-851a-7e48f6e9d340',23,'','302-B7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1565.2599232270288, \"y\": 1954.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(654,'424a359a-1777-4732-8a03-af715c706c7b',NULL,23,'','303','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1653.397356708724, \"y\": 2029.8766889777469}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"8b2cd043-d092-4dc6-9c4c-594f936b4fe6\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"303-A1\", \"capacity\": 1, \"position\": {\"x\": 1603.397356708724, \"y\": 2104.8766889777467}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.950Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.283Z\", \"price_tier_id\": 129}, {\"id\": \"56ab006c-a0fe-41ec-a3b0-8a6aedd8ad2a\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"303-A2\", \"capacity\": 1, \"position\": {\"x\": 1603.397356708724, \"y\": 2079.8766889777467}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.950Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.283Z\", \"price_tier_id\": 129}, {\"id\": \"bb791915-75e0-465b-b4f1-00499a92e256\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"303-A3\", \"capacity\": 1, \"position\": {\"x\": 1603.397356708724, \"y\": 2054.8766889777467}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.950Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.283Z\", \"price_tier_id\": 129}, {\"id\": \"db8336f0-dbbb-4fc8-b538-18778b8e82f1\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"303-A4\", \"capacity\": 1, \"position\": {\"x\": 1603.397356708724, \"y\": 2029.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.950Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.283Z\", \"price_tier_id\": 129}, {\"id\": \"6fdc4bef-4397-4af2-844e-ca1793f04263\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"303-A5\", \"capacity\": 1, \"position\": {\"x\": 1603.397356708724, \"y\": 2004.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.950Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.283Z\", \"price_tier_id\": 129}, {\"id\": \"2e49f6fe-f51f-4972-a7d2-64157a7f00c8\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"303-A6\", \"capacity\": 1, \"position\": {\"x\": 1603.397356708724, \"y\": 1979.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.950Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.283Z\", \"price_tier_id\": 129}, {\"id\": \"7083adaf-415b-41de-88e0-2bb204b27998\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"303-A7\", \"capacity\": 1, \"position\": {\"x\": 1603.397356708724, \"y\": 1954.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.950Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.283Z\", \"price_tier_id\": 129}, {\"id\": \"37101d96-0d28-4882-8cd7-b068363cb1d3\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"303-B1\", \"capacity\": 1, \"position\": {\"x\": 1703.397356708724, \"y\": 2104.8766889777467}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.950Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.283Z\", \"price_tier_id\": 129}, {\"id\": \"4f12392a-c1f4-46f9-929e-7f78bc327387\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"303-B2\", \"capacity\": 1, \"position\": {\"x\": 1703.397356708724, \"y\": 2079.8766889777467}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.950Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.283Z\", \"price_tier_id\": 129}, {\"id\": \"3535d182-bcde-49ae-95ee-bf45277b1962\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"303-B3\", \"capacity\": 1, \"position\": {\"x\": 1703.397356708724, \"y\": 2054.8766889777467}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.950Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.283Z\", \"price_tier_id\": 129}, {\"id\": \"7c74a5c1-70b8-4a24-864f-4195692a6269\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"303-B4\", \"capacity\": 1, \"position\": {\"x\": 1703.397356708724, \"y\": 2029.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.950Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.283Z\", \"price_tier_id\": 129}, {\"id\": \"09498c66-45ae-4ceb-b4cd-15419571912f\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"303-B5\", \"capacity\": 1, \"position\": {\"x\": 1703.397356708724, \"y\": 2004.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.950Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.283Z\", \"price_tier_id\": 129}, {\"id\": \"ecd1a968-009a-4586-8593-b1d38984baba\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"303-B6\", \"capacity\": 1, \"position\": {\"x\": 1703.397356708724, \"y\": 1979.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.950Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.283Z\", \"price_tier_id\": 129}, {\"id\": \"b91fb19d-8d00-4a00-b17c-0d7166909199\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"303-B7\", \"capacity\": 1, \"position\": {\"x\": 1703.397356708724, \"y\": 1954.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:52.950Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.283Z\", \"price_tier_id\": 129}]','{\"x\": 1653.397356708724, \"y\": 2029.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(655,'8b2cd043-d092-4dc6-9c4c-594f936b4fe6','424a359a-1777-4732-8a03-af715c706c7b',23,'','303-A1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1603.397356708724, \"y\": 2104.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(656,'56ab006c-a0fe-41ec-a3b0-8a6aedd8ad2a','424a359a-1777-4732-8a03-af715c706c7b',23,'','303-A2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1603.397356708724, \"y\": 2079.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(657,'bb791915-75e0-465b-b4f1-00499a92e256','424a359a-1777-4732-8a03-af715c706c7b',23,'','303-A3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1603.397356708724, \"y\": 2054.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(658,'db8336f0-dbbb-4fc8-b538-18778b8e82f1','424a359a-1777-4732-8a03-af715c706c7b',23,'','303-A4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1603.397356708724, \"y\": 2029.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(659,'6fdc4bef-4397-4af2-844e-ca1793f04263','424a359a-1777-4732-8a03-af715c706c7b',23,'','303-A5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1603.397356708724, \"y\": 2004.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(660,'2e49f6fe-f51f-4972-a7d2-64157a7f00c8','424a359a-1777-4732-8a03-af715c706c7b',23,'','303-A6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1603.397356708724, \"y\": 1979.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(661,'7083adaf-415b-41de-88e0-2bb204b27998','424a359a-1777-4732-8a03-af715c706c7b',23,'','303-A7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1603.397356708724, \"y\": 1954.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(662,'37101d96-0d28-4882-8cd7-b068363cb1d3','424a359a-1777-4732-8a03-af715c706c7b',23,'','303-B1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1703.397356708724, \"y\": 2104.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(663,'4f12392a-c1f4-46f9-929e-7f78bc327387','424a359a-1777-4732-8a03-af715c706c7b',23,'','303-B2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1703.397356708724, \"y\": 2079.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(664,'3535d182-bcde-49ae-95ee-bf45277b1962','424a359a-1777-4732-8a03-af715c706c7b',23,'','303-B3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1703.397356708724, \"y\": 2054.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(665,'7c74a5c1-70b8-4a24-864f-4195692a6269','424a359a-1777-4732-8a03-af715c706c7b',23,'','303-B4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1703.397356708724, \"y\": 2029.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(666,'09498c66-45ae-4ceb-b4cd-15419571912f','424a359a-1777-4732-8a03-af715c706c7b',23,'','303-B5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1703.397356708724, \"y\": 2004.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(667,'ecd1a968-009a-4586-8593-b1d38984baba','424a359a-1777-4732-8a03-af715c706c7b',23,'','303-B6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1703.397356708724, \"y\": 1979.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(668,'b91fb19d-8d00-4a00-b17c-0d7166909199','424a359a-1777-4732-8a03-af715c706c7b',23,'','303-B7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1703.397356708724, \"y\": 1954.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(669,'5715d733-420a-4d5d-8e4b-3cda77d3bc05',NULL,23,'','304','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1791.5347901904188, \"y\": 2029.8766889777469}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"bf48d3db-2203-49f3-baa9-d8e52aa80498\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"304-A1\", \"capacity\": 1, \"position\": {\"x\": 1741.5347901904188, \"y\": 2104.8766889777467}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:53.633Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.292Z\", \"price_tier_id\": 129}, {\"id\": \"c67dc27c-72fa-42ef-91c2-630499ce1197\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"304-A2\", \"capacity\": 1, \"position\": {\"x\": 1741.5347901904188, \"y\": 2079.8766889777467}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:53.633Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.292Z\", \"price_tier_id\": 129}, {\"id\": \"ddd10476-81a0-47d6-ba8e-b086c7ae5de5\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"304-A3\", \"capacity\": 1, \"position\": {\"x\": 1741.5347901904188, \"y\": 2054.8766889777467}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:53.633Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.292Z\", \"price_tier_id\": 129}, {\"id\": \"3fa653c3-5819-4641-9f45-5c8781f8eef8\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"304-A4\", \"capacity\": 1, \"position\": {\"x\": 1741.5347901904188, \"y\": 2029.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:53.633Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.292Z\", \"price_tier_id\": 129}, {\"id\": \"3a531bf4-8ad7-4f56-b32e-5f6362ab6055\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"304-A5\", \"capacity\": 1, \"position\": {\"x\": 1741.5347901904188, \"y\": 2004.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:53.633Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.292Z\", \"price_tier_id\": 129}, {\"id\": \"8cb6ce64-5743-4423-9604-981924b06169\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"304-A6\", \"capacity\": 1, \"position\": {\"x\": 1741.5347901904188, \"y\": 1979.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:53.633Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.292Z\", \"price_tier_id\": 129}, {\"id\": \"993cf1e4-a087-4303-89d6-137c9eb32401\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"304-A7\", \"capacity\": 1, \"position\": {\"x\": 1741.5347901904188, \"y\": 1954.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:53.633Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.292Z\", \"price_tier_id\": 129}, {\"id\": \"569c4e13-8cf6-4897-a651-ce4a3e573cbe\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"304-B1\", \"capacity\": 1, \"position\": {\"x\": 1841.5347901904188, \"y\": 2104.8766889777467}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:53.633Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.292Z\", \"price_tier_id\": 129}, {\"id\": \"9854185e-4a78-4727-9c1b-da05fba4d7e0\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"304-B2\", \"capacity\": 1, \"position\": {\"x\": 1841.5347901904188, \"y\": 2079.8766889777467}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:53.633Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.292Z\", \"price_tier_id\": 129}, {\"id\": \"be71dc47-f1ca-4dfa-b03e-428fbe7e49b7\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"304-B3\", \"capacity\": 1, \"position\": {\"x\": 1841.5347901904188, \"y\": 2054.8766889777467}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:53.633Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.292Z\", \"price_tier_id\": 129}, {\"id\": \"1699e16e-fd56-4f50-9744-56836077a714\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"304-B4\", \"capacity\": 1, \"position\": {\"x\": 1841.5347901904188, \"y\": 2029.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:53.633Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.292Z\", \"price_tier_id\": 129}, {\"id\": \"78172841-dc32-4b2a-a2cc-90460201a619\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"304-B5\", \"capacity\": 1, \"position\": {\"x\": 1841.5347901904188, \"y\": 2004.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:53.633Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.292Z\", \"price_tier_id\": 129}, {\"id\": \"a9d62eac-2bad-4b32-a603-7b76279f28a5\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"304-B6\", \"capacity\": 1, \"position\": {\"x\": 1841.5347901904188, \"y\": 1979.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:53.633Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.292Z\", \"price_tier_id\": 129}, {\"id\": \"a352fcef-6cb1-4749-9524-ee7def4bbeda\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"304-B7\", \"capacity\": 1, \"position\": {\"x\": 1841.5347901904188, \"y\": 1954.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:53.633Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.292Z\", \"price_tier_id\": 129}]','{\"x\": 1791.5347901904188, \"y\": 2029.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(670,'bf48d3db-2203-49f3-baa9-d8e52aa80498','5715d733-420a-4d5d-8e4b-3cda77d3bc05',23,'','304-A1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1741.5347901904188, \"y\": 2104.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(671,'c67dc27c-72fa-42ef-91c2-630499ce1197','5715d733-420a-4d5d-8e4b-3cda77d3bc05',23,'','304-A2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1741.5347901904188, \"y\": 2079.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(672,'ddd10476-81a0-47d6-ba8e-b086c7ae5de5','5715d733-420a-4d5d-8e4b-3cda77d3bc05',23,'','304-A3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1741.5347901904188, \"y\": 2054.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(673,'3fa653c3-5819-4641-9f45-5c8781f8eef8','5715d733-420a-4d5d-8e4b-3cda77d3bc05',23,'','304-A4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1741.5347901904188, \"y\": 2029.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(674,'3a531bf4-8ad7-4f56-b32e-5f6362ab6055','5715d733-420a-4d5d-8e4b-3cda77d3bc05',23,'','304-A5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1741.5347901904188, \"y\": 2004.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(675,'8cb6ce64-5743-4423-9604-981924b06169','5715d733-420a-4d5d-8e4b-3cda77d3bc05',23,'','304-A6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1741.5347901904188, \"y\": 1979.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(676,'993cf1e4-a087-4303-89d6-137c9eb32401','5715d733-420a-4d5d-8e4b-3cda77d3bc05',23,'','304-A7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1741.5347901904188, \"y\": 1954.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(677,'569c4e13-8cf6-4897-a651-ce4a3e573cbe','5715d733-420a-4d5d-8e4b-3cda77d3bc05',23,'','304-B1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1841.5347901904188, \"y\": 2104.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(678,'9854185e-4a78-4727-9c1b-da05fba4d7e0','5715d733-420a-4d5d-8e4b-3cda77d3bc05',23,'','304-B2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1841.5347901904188, \"y\": 2079.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(679,'be71dc47-f1ca-4dfa-b03e-428fbe7e49b7','5715d733-420a-4d5d-8e4b-3cda77d3bc05',23,'','304-B3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1841.5347901904188, \"y\": 2054.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(680,'1699e16e-fd56-4f50-9744-56836077a714','5715d733-420a-4d5d-8e4b-3cda77d3bc05',23,'','304-B4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1841.5347901904188, \"y\": 2029.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(681,'78172841-dc32-4b2a-a2cc-90460201a619','5715d733-420a-4d5d-8e4b-3cda77d3bc05',23,'','304-B5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1841.5347901904188, \"y\": 2004.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(682,'a9d62eac-2bad-4b32-a603-7b76279f28a5','5715d733-420a-4d5d-8e4b-3cda77d3bc05',23,'','304-B6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1841.5347901904188, \"y\": 1979.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(683,'a352fcef-6cb1-4749-9524-ee7def4bbeda','5715d733-420a-4d5d-8e4b-3cda77d3bc05',23,'','304-B7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1841.5347901904188, \"y\": 1954.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(684,'aa27fc17-4204-4815-8a32-455e3a0bcf74',NULL,23,'','305','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1929.672223672114, \"y\": 2029.8766889777469}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"97f659ab-7a2f-471a-ad33-d8caed1ebae8\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"305-A1\", \"capacity\": 1, \"position\": {\"x\": 1879.672223672114, \"y\": 2104.8766889777467}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.301Z\", \"price_tier_id\": 129}, {\"id\": \"0923bc69-dc7f-4a8a-b8cc-199fb272a0b6\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"305-A2\", \"capacity\": 1, \"position\": {\"x\": 1879.672223672114, \"y\": 2079.8766889777467}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.301Z\", \"price_tier_id\": 129}, {\"id\": \"26aba67d-535e-4579-950f-b30cb66a99c5\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"305-A3\", \"capacity\": 1, \"position\": {\"x\": 1879.672223672114, \"y\": 2054.8766889777467}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.301Z\", \"price_tier_id\": 129}, {\"id\": \"a020b7fd-08b9-459b-92e8-2fc5b48176c8\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"305-A4\", \"capacity\": 1, \"position\": {\"x\": 1879.672223672114, \"y\": 2029.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.301Z\", \"price_tier_id\": 129}, {\"id\": \"fe57e4fa-2ca9-4e29-b6b5-85c5edc7e41f\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"305-A5\", \"capacity\": 1, \"position\": {\"x\": 1879.672223672114, \"y\": 2004.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.301Z\", \"price_tier_id\": 129}, {\"id\": \"d8c6a8c4-cbd6-4445-935d-bfcb6cf95a5e\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"305-A6\", \"capacity\": 1, \"position\": {\"x\": 1879.672223672114, \"y\": 1979.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.301Z\", \"price_tier_id\": 129}, {\"id\": \"a9270259-e90a-4884-8c14-db3b668e96ba\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"305-A7\", \"capacity\": 1, \"position\": {\"x\": 1879.672223672114, \"y\": 1954.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.301Z\", \"price_tier_id\": 129}, {\"id\": \"b4b8e191-7fa0-4efd-b9d5-6c262b26dc6a\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"305-B1\", \"capacity\": 1, \"position\": {\"x\": 1979.672223672114, \"y\": 2104.8766889777467}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.301Z\", \"price_tier_id\": 129}, {\"id\": \"d9b285e9-b96d-4638-80d2-04519572bb21\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"305-B2\", \"capacity\": 1, \"position\": {\"x\": 1979.672223672114, \"y\": 2079.8766889777467}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.301Z\", \"price_tier_id\": 129}, {\"id\": \"d1eee803-7818-4490-9fab-8c193420969a\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"305-B3\", \"capacity\": 1, \"position\": {\"x\": 1979.672223672114, \"y\": 2054.8766889777467}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.301Z\", \"price_tier_id\": 129}, {\"id\": \"6caa00fc-5299-4ddf-a5b4-ee49549acd8f\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"305-B4\", \"capacity\": 1, \"position\": {\"x\": 1979.672223672114, \"y\": 2029.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.301Z\", \"price_tier_id\": 129}, {\"id\": \"ff210c40-11b8-4eac-9bca-dbaf3abdf1d2\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"305-B5\", \"capacity\": 1, \"position\": {\"x\": 1979.672223672114, \"y\": 2004.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.301Z\", \"price_tier_id\": 129}, {\"id\": \"904de447-7eea-46b5-ab3b-6f318a204209\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"305-B6\", \"capacity\": 1, \"position\": {\"x\": 1979.672223672114, \"y\": 1979.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.301Z\", \"price_tier_id\": 129}, {\"id\": \"d16547ae-b44d-4ae0-8172-4774528254ca\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"305-B7\", \"capacity\": 1, \"position\": {\"x\": 1979.672223672114, \"y\": 1954.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.301Z\", \"price_tier_id\": 129}]','{\"x\": 1929.672223672114, \"y\": 2029.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(685,'97f659ab-7a2f-471a-ad33-d8caed1ebae8','aa27fc17-4204-4815-8a32-455e3a0bcf74',23,'','305-A1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1879.672223672114, \"y\": 2104.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(686,'0923bc69-dc7f-4a8a-b8cc-199fb272a0b6','aa27fc17-4204-4815-8a32-455e3a0bcf74',23,'','305-A2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1879.672223672114, \"y\": 2079.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(687,'26aba67d-535e-4579-950f-b30cb66a99c5','aa27fc17-4204-4815-8a32-455e3a0bcf74',23,'','305-A3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1879.672223672114, \"y\": 2054.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(688,'a020b7fd-08b9-459b-92e8-2fc5b48176c8','aa27fc17-4204-4815-8a32-455e3a0bcf74',23,'','305-A4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1879.672223672114, \"y\": 2029.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(689,'fe57e4fa-2ca9-4e29-b6b5-85c5edc7e41f','aa27fc17-4204-4815-8a32-455e3a0bcf74',23,'','305-A5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1879.672223672114, \"y\": 2004.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(690,'d8c6a8c4-cbd6-4445-935d-bfcb6cf95a5e','aa27fc17-4204-4815-8a32-455e3a0bcf74',23,'','305-A6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1879.672223672114, \"y\": 1979.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(691,'a9270259-e90a-4884-8c14-db3b668e96ba','aa27fc17-4204-4815-8a32-455e3a0bcf74',23,'','305-A7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1879.672223672114, \"y\": 1954.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(692,'b4b8e191-7fa0-4efd-b9d5-6c262b26dc6a','aa27fc17-4204-4815-8a32-455e3a0bcf74',23,'','305-B1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1979.672223672114, \"y\": 2104.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(693,'d9b285e9-b96d-4638-80d2-04519572bb21','aa27fc17-4204-4815-8a32-455e3a0bcf74',23,'','305-B2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1979.672223672114, \"y\": 2079.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(694,'d1eee803-7818-4490-9fab-8c193420969a','aa27fc17-4204-4815-8a32-455e3a0bcf74',23,'','305-B3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1979.672223672114, \"y\": 2054.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(695,'6caa00fc-5299-4ddf-a5b4-ee49549acd8f','aa27fc17-4204-4815-8a32-455e3a0bcf74',23,'','305-B4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1979.672223672114, \"y\": 2029.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(696,'ff210c40-11b8-4eac-9bca-dbaf3abdf1d2','aa27fc17-4204-4815-8a32-455e3a0bcf74',23,'','305-B5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1979.672223672114, \"y\": 2004.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(697,'904de447-7eea-46b5-ab3b-6f318a204209','aa27fc17-4204-4815-8a32-455e3a0bcf74',23,'','305-B6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1979.672223672114, \"y\": 1979.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(698,'d16547ae-b44d-4ae0-8172-4774528254ca','aa27fc17-4204-4815-8a32-455e3a0bcf74',23,'','305-B7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1979.672223672114, \"y\": 1954.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(699,'09fc5747-aaf5-4aa5-8d54-d5293366bb71',NULL,23,'','306','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2067.809657153809, \"y\": 2029.8766889777469}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"a1855d1f-2985-4d55-b7a2-bd458ff672d6\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"306-A1\", \"capacity\": 1, \"position\": {\"x\": 2017.809657153809, \"y\": 2104.8766889777467}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.808Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.306Z\", \"price_tier_id\": 129}, {\"id\": \"9169066b-0640-4bce-94b1-b540d77147f2\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"306-A2\", \"capacity\": 1, \"position\": {\"x\": 2017.809657153809, \"y\": 2079.8766889777467}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.808Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.306Z\", \"price_tier_id\": 129}, {\"id\": \"8efa8c48-8765-4c5e-b6c5-bdfa7bb259ba\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"306-A3\", \"capacity\": 1, \"position\": {\"x\": 2017.809657153809, \"y\": 2054.8766889777467}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.808Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.306Z\", \"price_tier_id\": 129}, {\"id\": \"e9b5190b-e583-471a-b308-9475c02feb21\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"306-A4\", \"capacity\": 1, \"position\": {\"x\": 2017.809657153809, \"y\": 2029.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.808Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.306Z\", \"price_tier_id\": 129}, {\"id\": \"3bbf6b89-e40a-48f8-8912-bf215d009c8a\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"306-A5\", \"capacity\": 1, \"position\": {\"x\": 2017.809657153809, \"y\": 2004.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.808Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.306Z\", \"price_tier_id\": 129}, {\"id\": \"c07471be-2c84-4634-9490-e0eaf8a000e3\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"306-A6\", \"capacity\": 1, \"position\": {\"x\": 2017.809657153809, \"y\": 1979.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.808Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.306Z\", \"price_tier_id\": 129}, {\"id\": \"b52c774e-7df1-407c-aaab-69f344f274cb\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"306-A7\", \"capacity\": 1, \"position\": {\"x\": 2017.809657153809, \"y\": 1954.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.808Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.306Z\", \"price_tier_id\": 129}, {\"id\": \"4c3414c3-cbef-4f0e-b3df-6a99a83e9223\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"306-B1\", \"capacity\": 1, \"position\": {\"x\": 2117.809657153809, \"y\": 2104.8766889777467}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.808Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.306Z\", \"price_tier_id\": 129}, {\"id\": \"f0d02c67-0e2a-4471-93c6-125920347bb5\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"306-B2\", \"capacity\": 1, \"position\": {\"x\": 2117.809657153809, \"y\": 2079.8766889777467}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.808Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.306Z\", \"price_tier_id\": 129}, {\"id\": \"e4b4ecfb-bba7-4dca-8b04-1a190fbc7467\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"306-B3\", \"capacity\": 1, \"position\": {\"x\": 2117.809657153809, \"y\": 2054.8766889777467}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.808Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.306Z\", \"price_tier_id\": 129}, {\"id\": \"397548bf-ef8b-4b5f-b81e-baf7a8d507e4\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"306-B4\", \"capacity\": 1, \"position\": {\"x\": 2117.809657153809, \"y\": 2029.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.808Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.306Z\", \"price_tier_id\": 129}, {\"id\": \"20f52512-37c1-4918-ad93-7d86a0fb2f10\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"306-B5\", \"capacity\": 1, \"position\": {\"x\": 2117.809657153809, \"y\": 2004.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.808Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.306Z\", \"price_tier_id\": 129}, {\"id\": \"f671376b-0bc5-41f5-99e1-51a53f369f0c\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"306-B6\", \"capacity\": 1, \"position\": {\"x\": 2117.809657153809, \"y\": 1979.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.808Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.306Z\", \"price_tier_id\": 129}, {\"id\": \"ffb44206-a5de-4311-9b1b-270565d7c5d2\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"306-B7\", \"capacity\": 1, \"position\": {\"x\": 2117.809657153809, \"y\": 1954.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:54.808Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.306Z\", \"price_tier_id\": 129}]','{\"x\": 2067.809657153809, \"y\": 2029.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(700,'a1855d1f-2985-4d55-b7a2-bd458ff672d6','09fc5747-aaf5-4aa5-8d54-d5293366bb71',23,'','306-A1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2017.809657153809, \"y\": 2104.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(701,'9169066b-0640-4bce-94b1-b540d77147f2','09fc5747-aaf5-4aa5-8d54-d5293366bb71',23,'','306-A2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2017.809657153809, \"y\": 2079.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(702,'8efa8c48-8765-4c5e-b6c5-bdfa7bb259ba','09fc5747-aaf5-4aa5-8d54-d5293366bb71',23,'','306-A3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2017.809657153809, \"y\": 2054.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(703,'e9b5190b-e583-471a-b308-9475c02feb21','09fc5747-aaf5-4aa5-8d54-d5293366bb71',23,'','306-A4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2017.809657153809, \"y\": 2029.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(704,'3bbf6b89-e40a-48f8-8912-bf215d009c8a','09fc5747-aaf5-4aa5-8d54-d5293366bb71',23,'','306-A5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2017.809657153809, \"y\": 2004.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(705,'c07471be-2c84-4634-9490-e0eaf8a000e3','09fc5747-aaf5-4aa5-8d54-d5293366bb71',23,'','306-A6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2017.809657153809, \"y\": 1979.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(706,'b52c774e-7df1-407c-aaab-69f344f274cb','09fc5747-aaf5-4aa5-8d54-d5293366bb71',23,'','306-A7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2017.809657153809, \"y\": 1954.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(707,'4c3414c3-cbef-4f0e-b3df-6a99a83e9223','09fc5747-aaf5-4aa5-8d54-d5293366bb71',23,'','306-B1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2117.809657153809, \"y\": 2104.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(708,'f0d02c67-0e2a-4471-93c6-125920347bb5','09fc5747-aaf5-4aa5-8d54-d5293366bb71',23,'','306-B2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2117.809657153809, \"y\": 2079.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(709,'e4b4ecfb-bba7-4dca-8b04-1a190fbc7467','09fc5747-aaf5-4aa5-8d54-d5293366bb71',23,'','306-B3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2117.809657153809, \"y\": 2054.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(710,'397548bf-ef8b-4b5f-b81e-baf7a8d507e4','09fc5747-aaf5-4aa5-8d54-d5293366bb71',23,'','306-B4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2117.809657153809, \"y\": 2029.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(711,'20f52512-37c1-4918-ad93-7d86a0fb2f10','09fc5747-aaf5-4aa5-8d54-d5293366bb71',23,'','306-B5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2117.809657153809, \"y\": 2004.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(712,'f671376b-0bc5-41f5-99e1-51a53f369f0c','09fc5747-aaf5-4aa5-8d54-d5293366bb71',23,'','306-B6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2117.809657153809, \"y\": 1979.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(713,'ffb44206-a5de-4311-9b1b-270565d7c5d2','09fc5747-aaf5-4aa5-8d54-d5293366bb71',23,'','306-B7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2117.809657153809, \"y\": 1954.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(714,'7b51099b-e984-4e30-bb67-cade8990914d',NULL,23,'','307','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2205.9470906355036, \"y\": 2029.8766889777469}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"1c6dd41f-9cc6-43a4-9f44-4adde726a27a\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"307-A1\", \"capacity\": 1, \"position\": {\"x\": 2155.9470906355036, \"y\": 2104.8766889777467}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:55.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.312Z\", \"price_tier_id\": 129}, {\"id\": \"a8e271e9-b5bd-4605-8359-fe71cb3481e5\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"307-A2\", \"capacity\": 1, \"position\": {\"x\": 2155.9470906355036, \"y\": 2079.8766889777467}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:55.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.312Z\", \"price_tier_id\": 129}, {\"id\": \"2c3d68d1-e33c-4b84-a493-3dc5403d6a0d\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"307-A3\", \"capacity\": 1, \"position\": {\"x\": 2155.9470906355036, \"y\": 2054.8766889777467}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:55.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.312Z\", \"price_tier_id\": 129}, {\"id\": \"20df59ae-5489-4e19-8459-b16078190607\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"307-A4\", \"capacity\": 1, \"position\": {\"x\": 2155.9470906355036, \"y\": 2029.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:55.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.312Z\", \"price_tier_id\": 129}, {\"id\": \"8c1b3bd3-2df4-4061-b52e-eafcb46c01d0\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"307-A5\", \"capacity\": 1, \"position\": {\"x\": 2155.9470906355036, \"y\": 2004.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:55.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.312Z\", \"price_tier_id\": 129}, {\"id\": \"42fe6c3a-f75d-4d41-ae4a-1781e959d2d4\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"307-A6\", \"capacity\": 1, \"position\": {\"x\": 2155.9470906355036, \"y\": 1979.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:55.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.312Z\", \"price_tier_id\": 129}, {\"id\": \"a8bce1c3-b770-48cd-bb7c-5791c59576d6\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"307-A7\", \"capacity\": 1, \"position\": {\"x\": 2155.9470906355036, \"y\": 1954.8766889777469}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:55.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.312Z\", \"price_tier_id\": 129}, {\"id\": \"da434b4a-1759-4113-a2f0-6b14eea46479\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"307-B1\", \"capacity\": 1, \"position\": {\"x\": 2255.9470906355036, \"y\": 2104.8766889777467}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:55.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.312Z\", \"price_tier_id\": 129}, {\"id\": \"e4f35c19-c319-4c7f-92e5-162f72fb7393\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"307-B2\", \"capacity\": 1, \"position\": {\"x\": 2255.9470906355036, \"y\": 2079.8766889777467}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:55.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.312Z\", \"price_tier_id\": 129}, {\"id\": \"bd21efb4-f73d-47c8-9086-fd6150f9efe9\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"307-B3\", \"capacity\": 1, \"position\": {\"x\": 2255.9470906355036, \"y\": 2054.8766889777467}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:55.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.312Z\", \"price_tier_id\": 129}, {\"id\": \"656ce1cd-e3ce-40ac-9300-fa4c64b31a1d\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"307-B4\", \"capacity\": 1, \"position\": {\"x\": 2255.9470906355036, \"y\": 2029.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:55.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.312Z\", \"price_tier_id\": 129}, {\"id\": \"f4035764-9f6a-4382-8784-d090485541fd\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"307-B5\", \"capacity\": 1, \"position\": {\"x\": 2255.9470906355036, \"y\": 2004.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:55.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.312Z\", \"price_tier_id\": 129}, {\"id\": \"03dfd5ac-f0bf-4cc6-95a3-04e9c79d0c33\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"307-B6\", \"capacity\": 1, \"position\": {\"x\": 2255.9470906355036, \"y\": 1979.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:55.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.312Z\", \"price_tier_id\": 129}, {\"id\": \"dc02b323-f23d-4adc-ab02-1e0eb8b9f743\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"307-B7\", \"capacity\": 1, \"position\": {\"x\": 2255.9470906355036, \"y\": 1954.8766889777469}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:55.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:46:49.312Z\", \"price_tier_id\": 129}]','{\"x\": 2205.9470906355036, \"y\": 2029.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(715,'1c6dd41f-9cc6-43a4-9f44-4adde726a27a','7b51099b-e984-4e30-bb67-cade8990914d',23,'','307-A1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2155.9470906355036, \"y\": 2104.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(716,'a8e271e9-b5bd-4605-8359-fe71cb3481e5','7b51099b-e984-4e30-bb67-cade8990914d',23,'','307-A2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2155.9470906355036, \"y\": 2079.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(717,'2c3d68d1-e33c-4b84-a493-3dc5403d6a0d','7b51099b-e984-4e30-bb67-cade8990914d',23,'','307-A3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2155.9470906355036, \"y\": 2054.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(718,'20df59ae-5489-4e19-8459-b16078190607','7b51099b-e984-4e30-bb67-cade8990914d',23,'','307-A4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2155.9470906355036, \"y\": 2029.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(719,'8c1b3bd3-2df4-4061-b52e-eafcb46c01d0','7b51099b-e984-4e30-bb67-cade8990914d',23,'','307-A5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2155.9470906355036, \"y\": 2004.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(720,'42fe6c3a-f75d-4d41-ae4a-1781e959d2d4','7b51099b-e984-4e30-bb67-cade8990914d',23,'','307-A6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2155.9470906355036, \"y\": 1979.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(721,'a8bce1c3-b770-48cd-bb7c-5791c59576d6','7b51099b-e984-4e30-bb67-cade8990914d',23,'','307-A7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2155.9470906355036, \"y\": 1954.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(722,'da434b4a-1759-4113-a2f0-6b14eea46479','7b51099b-e984-4e30-bb67-cade8990914d',23,'','307-B1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2255.9470906355036, \"y\": 2104.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(723,'e4f35c19-c319-4c7f-92e5-162f72fb7393','7b51099b-e984-4e30-bb67-cade8990914d',23,'','307-B2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2255.9470906355036, \"y\": 2079.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(724,'bd21efb4-f73d-47c8-9086-fd6150f9efe9','7b51099b-e984-4e30-bb67-cade8990914d',23,'','307-B3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2255.9470906355036, \"y\": 2054.8766889777467}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(725,'656ce1cd-e3ce-40ac-9300-fa4c64b31a1d','7b51099b-e984-4e30-bb67-cade8990914d',23,'','307-B4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2255.9470906355036, \"y\": 2029.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(726,'f4035764-9f6a-4382-8784-d090485541fd','7b51099b-e984-4e30-bb67-cade8990914d',23,'','307-B5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2255.9470906355036, \"y\": 2004.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(727,'03dfd5ac-f0bf-4cc6-95a3-04e9c79d0c33','7b51099b-e984-4e30-bb67-cade8990914d',23,'','307-B6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2255.9470906355036, \"y\": 1979.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(728,'dc02b323-f23d-4adc-ab02-1e0eb8b9f743','7b51099b-e984-4e30-bb67-cade8990914d',23,'','307-B7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2255.9470906355036, \"y\": 1954.8766889777469}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(729,'8c28f533-628d-46d1-9ed1-cacee0d7058e',NULL,23,'','308','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1435.889596369409, \"y\": 2318.2121816250506}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"6b9c6ca2-aca5-4e8a-93d8-653da7d6273d\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"308-A1\", \"capacity\": 1, \"position\": {\"x\": 1385.889596369409, \"y\": 2389.6407530536217}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:58.853Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"7706d1d5-46dd-4937-a456-4b9de87d3f95\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"308-A2\", \"capacity\": 1, \"position\": {\"x\": 1385.889596369409, \"y\": 2361.069324482193}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:58.853Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"d40a2878-82b1-40d8-ba51-77d932acd5be\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"308-A3\", \"capacity\": 1, \"position\": {\"x\": 1385.889596369409, \"y\": 2332.497895910765}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:58.853Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"155c40ee-3e4f-44aa-b15f-c3a810931d38\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"308-A4\", \"capacity\": 1, \"position\": {\"x\": 1385.889596369409, \"y\": 2303.9264673393363}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:58.853Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"01b646f5-95fa-4d77-b6b7-a6ea7c66e738\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"308-A5\", \"capacity\": 1, \"position\": {\"x\": 1385.889596369409, \"y\": 2275.355038767908}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:58.853Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"737d949f-83d6-4434-884b-5f50b2a8288f\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"308-A6\", \"capacity\": 1, \"position\": {\"x\": 1385.889596369409, \"y\": 2246.783610196479}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:58.853Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"9ace6ca4-79ca-4dcd-8aad-3894e69d1e96\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"308-B1\", \"capacity\": 1, \"position\": {\"x\": 1485.889596369409, \"y\": 2389.6407530536217}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:58.853Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"dff6d175-992e-4ae6-877d-2e21d18ffb04\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"308-B2\", \"capacity\": 1, \"position\": {\"x\": 1485.889596369409, \"y\": 2361.069324482193}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:58.853Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"2fb3f63d-b91b-495f-9a0b-b322c327c7cd\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"308-B3\", \"capacity\": 1, \"position\": {\"x\": 1485.889596369409, \"y\": 2332.497895910765}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:58.853Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"3ae34f39-11cc-4450-a46b-ba58d85ae38a\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"308-B4\", \"capacity\": 1, \"position\": {\"x\": 1485.889596369409, \"y\": 2303.9264673393363}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:58.853Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"ec3075f7-6a63-4395-a352-3954715575df\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"308-B5\", \"capacity\": 1, \"position\": {\"x\": 1485.889596369409, \"y\": 2275.355038767908}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:58.853Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"c2b747e7-93cd-4a03-9066-ed71c5a2d71f\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"308-B6\", \"capacity\": 1, \"position\": {\"x\": 1485.889596369409, \"y\": 2246.783610196479}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:58.853Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}]','{\"x\": 1445.889596369409, \"y\": 2328.2121816250506}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(730,'6b9c6ca2-aca5-4e8a-93d8-653da7d6273d','8c28f533-628d-46d1-9ed1-cacee0d7058e',23,'','308-A1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1385.889596369409, \"y\": 2389.6407530536217}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(731,'7706d1d5-46dd-4937-a456-4b9de87d3f95','8c28f533-628d-46d1-9ed1-cacee0d7058e',23,'','308-A2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1385.889596369409, \"y\": 2361.069324482193}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(732,'d40a2878-82b1-40d8-ba51-77d932acd5be','8c28f533-628d-46d1-9ed1-cacee0d7058e',23,'','308-A3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1385.889596369409, \"y\": 2332.497895910765}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(733,'155c40ee-3e4f-44aa-b15f-c3a810931d38','8c28f533-628d-46d1-9ed1-cacee0d7058e',23,'','308-A4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1385.889596369409, \"y\": 2303.9264673393363}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(734,'01b646f5-95fa-4d77-b6b7-a6ea7c66e738','8c28f533-628d-46d1-9ed1-cacee0d7058e',23,'','308-A5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1385.889596369409, \"y\": 2275.355038767908}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(735,'737d949f-83d6-4434-884b-5f50b2a8288f','8c28f533-628d-46d1-9ed1-cacee0d7058e',23,'','308-A6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1385.889596369409, \"y\": 2246.783610196479}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(736,'9ace6ca4-79ca-4dcd-8aad-3894e69d1e96','8c28f533-628d-46d1-9ed1-cacee0d7058e',23,'','308-B1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1485.889596369409, \"y\": 2389.6407530536217}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(737,'dff6d175-992e-4ae6-877d-2e21d18ffb04','8c28f533-628d-46d1-9ed1-cacee0d7058e',23,'','308-B2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1485.889596369409, \"y\": 2361.069324482193}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(738,'2fb3f63d-b91b-495f-9a0b-b322c327c7cd','8c28f533-628d-46d1-9ed1-cacee0d7058e',23,'','308-B3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1485.889596369409, \"y\": 2332.497895910765}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(739,'3ae34f39-11cc-4450-a46b-ba58d85ae38a','8c28f533-628d-46d1-9ed1-cacee0d7058e',23,'','308-B4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1485.889596369409, \"y\": 2303.9264673393363}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(740,'ec3075f7-6a63-4395-a352-3954715575df','8c28f533-628d-46d1-9ed1-cacee0d7058e',23,'','308-B5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1485.889596369409, \"y\": 2275.355038767908}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(741,'c2b747e7-93cd-4a03-9066-ed71c5a2d71f','8c28f533-628d-46d1-9ed1-cacee0d7058e',23,'','308-B6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1485.889596369409, \"y\": 2246.783610196479}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(742,'60473d1b-bccd-4766-83e1-b730eeeb744c',NULL,23,'','309','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1608.712193279914, \"y\": 2318.2121816250506}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"b0284bad-ca35-4dae-9a50-41a534ee0095\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"309-A1\", \"capacity\": 1, \"position\": {\"x\": 1558.712193279914, \"y\": 2389.640753053622}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:59.640Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"29fdeec8-dfeb-4edd-9018-e319918feda0\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"309-A2\", \"capacity\": 1, \"position\": {\"x\": 1558.712193279914, \"y\": 2361.069324482193}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:59.640Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"aaac90f7-e538-4621-82a9-1ff9a4bb228d\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"309-A3\", \"capacity\": 1, \"position\": {\"x\": 1558.712193279914, \"y\": 2332.497895910765}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:59.640Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"d2ec8fc9-5609-4995-9c7f-22faa5e6259d\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"309-A4\", \"capacity\": 1, \"position\": {\"x\": 1558.712193279914, \"y\": 2303.9264673393363}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:59.640Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"b4c0a5a6-6589-4af7-8e9c-3f0f3a120723\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"309-A5\", \"capacity\": 1, \"position\": {\"x\": 1558.712193279914, \"y\": 2275.355038767908}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:59.640Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"f822c546-5a74-4cc8-a98a-84efded96f91\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"309-A6\", \"capacity\": 1, \"position\": {\"x\": 1558.712193279914, \"y\": 2246.783610196479}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:59.640Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"2f8b3fce-85d6-4e48-8664-09909fbed576\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"309-B1\", \"capacity\": 1, \"position\": {\"x\": 1658.712193279914, \"y\": 2389.640753053622}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:59.640Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"1654bcc1-38a8-4701-92df-14f0c10a2e44\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"309-B2\", \"capacity\": 1, \"position\": {\"x\": 1658.712193279914, \"y\": 2361.069324482193}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:59.640Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"290f32fc-6ef4-42fb-b27d-8bbc24d97516\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"309-B3\", \"capacity\": 1, \"position\": {\"x\": 1658.712193279914, \"y\": 2332.497895910765}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:59.640Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"93268c83-2943-4f67-bb2d-c869726a196b\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"309-B4\", \"capacity\": 1, \"position\": {\"x\": 1658.712193279914, \"y\": 2303.9264673393363}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:59.640Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"0d32704b-4a17-4467-a9b3-cdebca7b002d\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"309-B5\", \"capacity\": 1, \"position\": {\"x\": 1658.712193279914, \"y\": 2275.355038767908}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:59.640Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"93fe2cf7-4b43-4f79-8005-d19ca4ff5216\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"309-B6\", \"capacity\": 1, \"position\": {\"x\": 1658.712193279914, \"y\": 2246.783610196479}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:45:59.640Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}]','{\"x\": 1618.712193279914, \"y\": 2328.2121816250506}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(743,'b0284bad-ca35-4dae-9a50-41a534ee0095','60473d1b-bccd-4766-83e1-b730eeeb744c',23,'','309-A1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1558.712193279914, \"y\": 2389.640753053622}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(744,'29fdeec8-dfeb-4edd-9018-e319918feda0','60473d1b-bccd-4766-83e1-b730eeeb744c',23,'','309-A2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1558.712193279914, \"y\": 2361.069324482193}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(745,'aaac90f7-e538-4621-82a9-1ff9a4bb228d','60473d1b-bccd-4766-83e1-b730eeeb744c',23,'','309-A3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1558.712193279914, \"y\": 2332.497895910765}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(746,'d2ec8fc9-5609-4995-9c7f-22faa5e6259d','60473d1b-bccd-4766-83e1-b730eeeb744c',23,'','309-A4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1558.712193279914, \"y\": 2303.9264673393363}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(747,'b4c0a5a6-6589-4af7-8e9c-3f0f3a120723','60473d1b-bccd-4766-83e1-b730eeeb744c',23,'','309-A5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1558.712193279914, \"y\": 2275.355038767908}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(748,'f822c546-5a74-4cc8-a98a-84efded96f91','60473d1b-bccd-4766-83e1-b730eeeb744c',23,'','309-A6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1558.712193279914, \"y\": 2246.783610196479}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(749,'2f8b3fce-85d6-4e48-8664-09909fbed576','60473d1b-bccd-4766-83e1-b730eeeb744c',23,'','309-B1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1658.712193279914, \"y\": 2389.640753053622}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(750,'1654bcc1-38a8-4701-92df-14f0c10a2e44','60473d1b-bccd-4766-83e1-b730eeeb744c',23,'','309-B2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1658.712193279914, \"y\": 2361.069324482193}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(751,'290f32fc-6ef4-42fb-b27d-8bbc24d97516','60473d1b-bccd-4766-83e1-b730eeeb744c',23,'','309-B3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1658.712193279914, \"y\": 2332.497895910765}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(752,'93268c83-2943-4f67-bb2d-c869726a196b','60473d1b-bccd-4766-83e1-b730eeeb744c',23,'','309-B4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1658.712193279914, \"y\": 2303.9264673393363}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(753,'0d32704b-4a17-4467-a9b3-cdebca7b002d','60473d1b-bccd-4766-83e1-b730eeeb744c',23,'','309-B5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1658.712193279914, \"y\": 2275.355038767908}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(754,'93fe2cf7-4b43-4f79-8005-d19ca4ff5216','60473d1b-bccd-4766-83e1-b730eeeb744c',23,'','309-B6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1658.712193279914, \"y\": 2246.783610196479}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(755,'717a6d04-3ba6-435e-bd19-c2a36d79aae8',NULL,23,'','310','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1781.5347901904188, \"y\": 2314.5928602237836}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"858534d4-32eb-4d70-b47e-9b95e18fa9a3\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"310-A1\", \"capacity\": 1, \"position\": {\"x\": 1731.5347901904188, \"y\": 2386.021431652355}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.298Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"b1c23c58-ae13-4520-baa5-6490af412a5e\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"310-A2\", \"capacity\": 1, \"position\": {\"x\": 1731.5347901904188, \"y\": 2357.4500030809263}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.298Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"1d9c9dc2-aadc-440f-85c3-1d869b939dac\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"310-A3\", \"capacity\": 1, \"position\": {\"x\": 1731.5347901904188, \"y\": 2328.878574509498}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.298Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"092582f6-14d3-4d21-a68a-bd3ed8d5b29a\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"310-A4\", \"capacity\": 1, \"position\": {\"x\": 1731.5347901904188, \"y\": 2300.3071459380694}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.298Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"6fcaf205-fb5c-400b-8951-2b5bb512bdb8\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"310-A5\", \"capacity\": 1, \"position\": {\"x\": 1731.5347901904188, \"y\": 2271.735717366641}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.298Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"6c9761f5-4547-45f3-82fe-cf9c8afe18b5\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"310-A6\", \"capacity\": 1, \"position\": {\"x\": 1731.5347901904188, \"y\": 2243.164288795212}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.298Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"9c8e6dce-a3bb-415d-93be-b7069f3a04af\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"310-B1\", \"capacity\": 1, \"position\": {\"x\": 1831.5347901904188, \"y\": 2386.021431652355}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.298Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"c226a4d7-01c9-44f8-8224-6396750fc73e\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"310-B2\", \"capacity\": 1, \"position\": {\"x\": 1831.5347901904188, \"y\": 2357.4500030809263}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.298Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"df85889a-fef0-466a-8692-019d82f3af1d\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"310-B3\", \"capacity\": 1, \"position\": {\"x\": 1831.5347901904188, \"y\": 2328.878574509498}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.298Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"6406e467-6ac8-4e8d-bb4e-ca88437a44df\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"310-B4\", \"capacity\": 1, \"position\": {\"x\": 1831.5347901904188, \"y\": 2300.3071459380694}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.298Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"ecc4db6f-86f4-41f2-8db9-60d8bdff8b8c\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"310-B5\", \"capacity\": 1, \"position\": {\"x\": 1831.5347901904188, \"y\": 2271.735717366641}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.298Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"d77ef0af-7c35-4d6d-90f2-7728628cff99\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"310-B6\", \"capacity\": 1, \"position\": {\"x\": 1831.5347901904188, \"y\": 2243.164288795212}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.298Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}]','{\"x\": 1791.5347901904188, \"y\": 2324.5928602237836}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(756,'858534d4-32eb-4d70-b47e-9b95e18fa9a3','717a6d04-3ba6-435e-bd19-c2a36d79aae8',23,'','310-A1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1731.5347901904188, \"y\": 2386.021431652355}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(757,'b1c23c58-ae13-4520-baa5-6490af412a5e','717a6d04-3ba6-435e-bd19-c2a36d79aae8',23,'','310-A2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1731.5347901904188, \"y\": 2357.4500030809263}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(758,'1d9c9dc2-aadc-440f-85c3-1d869b939dac','717a6d04-3ba6-435e-bd19-c2a36d79aae8',23,'','310-A3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1731.5347901904188, \"y\": 2328.878574509498}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(759,'092582f6-14d3-4d21-a68a-bd3ed8d5b29a','717a6d04-3ba6-435e-bd19-c2a36d79aae8',23,'','310-A4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1731.5347901904188, \"y\": 2300.3071459380694}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(760,'6fcaf205-fb5c-400b-8951-2b5bb512bdb8','717a6d04-3ba6-435e-bd19-c2a36d79aae8',23,'','310-A5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1731.5347901904188, \"y\": 2271.735717366641}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(761,'6c9761f5-4547-45f3-82fe-cf9c8afe18b5','717a6d04-3ba6-435e-bd19-c2a36d79aae8',23,'','310-A6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1731.5347901904188, \"y\": 2243.164288795212}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(762,'9c8e6dce-a3bb-415d-93be-b7069f3a04af','717a6d04-3ba6-435e-bd19-c2a36d79aae8',23,'','310-B1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1831.5347901904188, \"y\": 2386.021431652355}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(763,'c226a4d7-01c9-44f8-8224-6396750fc73e','717a6d04-3ba6-435e-bd19-c2a36d79aae8',23,'','310-B2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1831.5347901904188, \"y\": 2357.4500030809263}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(764,'df85889a-fef0-466a-8692-019d82f3af1d','717a6d04-3ba6-435e-bd19-c2a36d79aae8',23,'','310-B3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1831.5347901904188, \"y\": 2328.878574509498}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(765,'6406e467-6ac8-4e8d-bb4e-ca88437a44df','717a6d04-3ba6-435e-bd19-c2a36d79aae8',23,'','310-B4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1831.5347901904188, \"y\": 2300.3071459380694}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(766,'ecc4db6f-86f4-41f2-8db9-60d8bdff8b8c','717a6d04-3ba6-435e-bd19-c2a36d79aae8',23,'','310-B5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1831.5347901904188, \"y\": 2271.735717366641}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(767,'d77ef0af-7c35-4d6d-90f2-7728628cff99','717a6d04-3ba6-435e-bd19-c2a36d79aae8',23,'','310-B6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1831.5347901904188, \"y\": 2243.164288795212}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(768,'99e03e42-fdc3-48e5-9f75-6a1545b1c700',NULL,23,'','311','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1954.3573871009237, \"y\": 2314.5928602237836}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"8b648293-a2d9-448b-a3c9-ba91300ef020\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"311-A1\", \"capacity\": 1, \"position\": {\"x\": 1904.3573871009237, \"y\": 2386.021431652355}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.732Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"6ca8542f-e6ed-40e0-8e0c-f9ba3e7fcfee\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"311-A2\", \"capacity\": 1, \"position\": {\"x\": 1904.3573871009237, \"y\": 2357.4500030809263}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.732Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"10bc0edd-bfca-4c6d-82bd-a46be12d43ac\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"311-A3\", \"capacity\": 1, \"position\": {\"x\": 1904.3573871009237, \"y\": 2328.878574509498}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.732Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"b84352a2-6414-4971-b8f1-08bfb4803555\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"311-A4\", \"capacity\": 1, \"position\": {\"x\": 1904.3573871009237, \"y\": 2300.3071459380694}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.732Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"82c47bbf-3df1-4db6-93d1-e193211e75ca\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"311-A5\", \"capacity\": 1, \"position\": {\"x\": 1904.3573871009237, \"y\": 2271.735717366641}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.732Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"2f55cbd5-28af-44a2-8ba1-a47cce5e9257\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"311-A6\", \"capacity\": 1, \"position\": {\"x\": 1904.3573871009237, \"y\": 2243.164288795212}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.732Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"6f56bd6d-124b-4371-a10f-f3a47ba7f288\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"311-B1\", \"capacity\": 1, \"position\": {\"x\": 2004.3573871009237, \"y\": 2386.021431652355}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.732Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"0c4bf3a6-a73f-4939-8db3-1b7601a343a6\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"311-B2\", \"capacity\": 1, \"position\": {\"x\": 2004.3573871009237, \"y\": 2357.4500030809263}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.732Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"2313eb0f-8455-45e5-825a-0dc61c43ddeb\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"311-B3\", \"capacity\": 1, \"position\": {\"x\": 2004.3573871009237, \"y\": 2328.878574509498}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.732Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"f023b854-9434-4f32-9569-6a41d0bd7d7e\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"311-B4\", \"capacity\": 1, \"position\": {\"x\": 2004.3573871009237, \"y\": 2300.3071459380694}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.732Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"fcc3cd60-7aeb-421c-9b0e-3f2e6ab304bc\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"311-B5\", \"capacity\": 1, \"position\": {\"x\": 2004.3573871009237, \"y\": 2271.735717366641}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.732Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"84aa9ab6-e252-40d9-be50-6f61d6c170f5\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"311-B6\", \"capacity\": 1, \"position\": {\"x\": 2004.3573871009237, \"y\": 2243.164288795212}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:00.732Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}]','{\"x\": 1964.3573871009237, \"y\": 2324.5928602237836}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(769,'8b648293-a2d9-448b-a3c9-ba91300ef020','99e03e42-fdc3-48e5-9f75-6a1545b1c700',23,'','311-A1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1904.3573871009237, \"y\": 2386.021431652355}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(770,'6ca8542f-e6ed-40e0-8e0c-f9ba3e7fcfee','99e03e42-fdc3-48e5-9f75-6a1545b1c700',23,'','311-A2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1904.3573871009237, \"y\": 2357.4500030809263}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(771,'10bc0edd-bfca-4c6d-82bd-a46be12d43ac','99e03e42-fdc3-48e5-9f75-6a1545b1c700',23,'','311-A3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1904.3573871009237, \"y\": 2328.878574509498}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(772,'b84352a2-6414-4971-b8f1-08bfb4803555','99e03e42-fdc3-48e5-9f75-6a1545b1c700',23,'','311-A4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1904.3573871009237, \"y\": 2300.3071459380694}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(773,'82c47bbf-3df1-4db6-93d1-e193211e75ca','99e03e42-fdc3-48e5-9f75-6a1545b1c700',23,'','311-A5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1904.3573871009237, \"y\": 2271.735717366641}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(774,'2f55cbd5-28af-44a2-8ba1-a47cce5e9257','99e03e42-fdc3-48e5-9f75-6a1545b1c700',23,'','311-A6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 1904.3573871009237, \"y\": 2243.164288795212}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(775,'6f56bd6d-124b-4371-a10f-f3a47ba7f288','99e03e42-fdc3-48e5-9f75-6a1545b1c700',23,'','311-B1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2004.3573871009237, \"y\": 2386.021431652355}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(776,'0c4bf3a6-a73f-4939-8db3-1b7601a343a6','99e03e42-fdc3-48e5-9f75-6a1545b1c700',23,'','311-B2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2004.3573871009237, \"y\": 2357.4500030809263}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(777,'2313eb0f-8455-45e5-825a-0dc61c43ddeb','99e03e42-fdc3-48e5-9f75-6a1545b1c700',23,'','311-B3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2004.3573871009237, \"y\": 2328.878574509498}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(778,'f023b854-9434-4f32-9569-6a41d0bd7d7e','99e03e42-fdc3-48e5-9f75-6a1545b1c700',23,'','311-B4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2004.3573871009237, \"y\": 2300.3071459380694}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(779,'fcc3cd60-7aeb-421c-9b0e-3f2e6ab304bc','99e03e42-fdc3-48e5-9f75-6a1545b1c700',23,'','311-B5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2004.3573871009237, \"y\": 2271.735717366641}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(780,'84aa9ab6-e252-40d9-be50-6f61d6c170f5','99e03e42-fdc3-48e5-9f75-6a1545b1c700',23,'','311-B6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2004.3573871009237, \"y\": 2243.164288795212}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(781,'1f1a7c49-75f6-4eee-8ef9-1daaf91f2b66',NULL,23,'','312','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2127.1799840114286, \"y\": 2314.5928602237836}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"d109c7f0-5729-4c29-a1f7-ab308697cf0a\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"312-A1\", \"capacity\": 1, \"position\": {\"x\": 2077.1799840114286, \"y\": 2386.021431652355}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:01.593Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"68b2eb32-a5c9-4cc6-b18e-2923412dead3\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"312-A2\", \"capacity\": 1, \"position\": {\"x\": 2077.1799840114286, \"y\": 2357.4500030809263}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:01.593Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"21b6dbba-60b4-4534-9b3d-c223f2176e33\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"312-A3\", \"capacity\": 1, \"position\": {\"x\": 2077.1799840114286, \"y\": 2328.878574509498}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:01.593Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"ae307b78-86f5-4e71-b43d-5b81de729f8e\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"312-A4\", \"capacity\": 1, \"position\": {\"x\": 2077.1799840114286, \"y\": 2300.3071459380694}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:01.593Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"050697d8-a0b2-48b2-b2d2-193ef2887c74\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"312-A5\", \"capacity\": 1, \"position\": {\"x\": 2077.1799840114286, \"y\": 2271.735717366641}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:01.593Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"b0bc8bcc-6363-4a8b-94c9-4bb643d5f9ff\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"312-A6\", \"capacity\": 1, \"position\": {\"x\": 2077.1799840114286, \"y\": 2243.164288795212}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:01.593Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"210d6560-1e73-4d0a-939f-837c872543c6\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"312-B1\", \"capacity\": 1, \"position\": {\"x\": 2177.1799840114286, \"y\": 2386.021431652355}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:01.593Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"398d2012-b76e-4811-a07b-ac727f0bafcf\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"312-B2\", \"capacity\": 1, \"position\": {\"x\": 2177.1799840114286, \"y\": 2357.4500030809263}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:01.593Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"43bad8a4-65ee-404c-8fe2-a814ece96d75\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"312-B3\", \"capacity\": 1, \"position\": {\"x\": 2177.1799840114286, \"y\": 2328.878574509498}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:01.593Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"f9800421-e4a1-46f6-b0fe-25748b5d5c86\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"312-B4\", \"capacity\": 1, \"position\": {\"x\": 2177.1799840114286, \"y\": 2300.3071459380694}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:01.593Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"f717a6c8-43ce-4d98-bc5d-514431b6e51e\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"312-B5\", \"capacity\": 1, \"position\": {\"x\": 2177.1799840114286, \"y\": 2271.735717366641}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:01.593Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}, {\"id\": \"45719b8d-b695-4880-942c-3301f27c25e6\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"312-B6\", \"capacity\": 1, \"position\": {\"x\": 2177.1799840114286, \"y\": 2243.164288795212}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:46:01.593Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\", \"updated_at\": \"2025-11-05T10:47:10.120Z\", \"price_tier_id\": 130}]','{\"x\": 2137.1799840114286, \"y\": 2324.5928602237836}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(782,'d109c7f0-5729-4c29-a1f7-ab308697cf0a','1f1a7c49-75f6-4eee-8ef9-1daaf91f2b66',23,'','312-A1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2077.1799840114286, \"y\": 2386.021431652355}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(783,'68b2eb32-a5c9-4cc6-b18e-2923412dead3','1f1a7c49-75f6-4eee-8ef9-1daaf91f2b66',23,'','312-A2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2077.1799840114286, \"y\": 2357.4500030809263}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(784,'21b6dbba-60b4-4534-9b3d-c223f2176e33','1f1a7c49-75f6-4eee-8ef9-1daaf91f2b66',23,'','312-A3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2077.1799840114286, \"y\": 2328.878574509498}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(785,'ae307b78-86f5-4e71-b43d-5b81de729f8e','1f1a7c49-75f6-4eee-8ef9-1daaf91f2b66',23,'','312-A4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2077.1799840114286, \"y\": 2300.3071459380694}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(786,'050697d8-a0b2-48b2-b2d2-193ef2887c74','1f1a7c49-75f6-4eee-8ef9-1daaf91f2b66',23,'','312-A5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2077.1799840114286, \"y\": 2271.735717366641}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(787,'b0bc8bcc-6363-4a8b-94c9-4bb643d5f9ff','1f1a7c49-75f6-4eee-8ef9-1daaf91f2b66',23,'','312-A6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2077.1799840114286, \"y\": 2243.164288795212}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(788,'210d6560-1e73-4d0a-939f-837c872543c6','1f1a7c49-75f6-4eee-8ef9-1daaf91f2b66',23,'','312-B1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2177.1799840114286, \"y\": 2386.021431652355}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(789,'398d2012-b76e-4811-a07b-ac727f0bafcf','1f1a7c49-75f6-4eee-8ef9-1daaf91f2b66',23,'','312-B2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2177.1799840114286, \"y\": 2357.4500030809263}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(790,'43bad8a4-65ee-404c-8fe2-a814ece96d75','1f1a7c49-75f6-4eee-8ef9-1daaf91f2b66',23,'','312-B3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2177.1799840114286, \"y\": 2328.878574509498}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(791,'f9800421-e4a1-46f6-b0fe-25748b5d5c86','1f1a7c49-75f6-4eee-8ef9-1daaf91f2b66',23,'','312-B4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2177.1799840114286, \"y\": 2300.3071459380694}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(792,'f717a6c8-43ce-4d98-bc5d-514431b6e51e','1f1a7c49-75f6-4eee-8ef9-1daaf91f2b66',23,'','312-B5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2177.1799840114286, \"y\": 2271.735717366641}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(793,'45719b8d-b695-4880-942c-3301f27c25e6','1f1a7c49-75f6-4eee-8ef9-1daaf91f2b66',23,'','312-B6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2177.1799840114286, \"y\": 2243.164288795212}','0810c4af-d8af-4c00-823b-e8e6d4b8dc13',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(794,'82cfff60-02fa-4ac4-a22d-5620a2d22777',NULL,23,'','501','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 3287.0263674183902, \"y\": 1074.4016345511038}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"4979d82a-24dc-4b9d-b871-3727325c62fb\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"501-A1\", \"capacity\": 1, \"position\": {\"x\": 3304.7040369480537, \"y\": 1162.7899821994224}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:32.172Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.443Z\", \"price_tier_id\": 131}, {\"id\": \"ab64b069-a5bb-4ae2-8642-3db92d193b20\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"501-A2\", \"capacity\": 1, \"position\": {\"x\": 3287.0263674183902, \"y\": 1145.1123126697587}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:32.172Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.443Z\", \"price_tier_id\": 131}, {\"id\": \"38b79cfc-7940-42dd-b1bc-83c2c2f52494\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"501-A3\", \"capacity\": 1, \"position\": {\"x\": 3269.3486978887263, \"y\": 1127.434643140095}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:32.172Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.443Z\", \"price_tier_id\": 131}, {\"id\": \"d25277a3-7f0d-4e77-a147-c6e0159eadb1\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"501-A4\", \"capacity\": 1, \"position\": {\"x\": 3251.671028359063, \"y\": 1109.7569736104313}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:32.172Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.443Z\", \"price_tier_id\": 131}, {\"id\": \"934830ed-fb6d-445c-879f-b9ffbb91c8d6\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"501-A5\", \"capacity\": 1, \"position\": {\"x\": 3233.9933588293993, \"y\": 1092.0793040807675}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:32.172Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.443Z\", \"price_tier_id\": 131}, {\"id\": \"e4db58fb-b815-4577-a988-4663a5c18a4e\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"501-A6\", \"capacity\": 1, \"position\": {\"x\": 3216.3156892997354, \"y\": 1074.4016345511038}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:32.172Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.443Z\", \"price_tier_id\": 131}, {\"id\": \"7b96569d-520f-4886-bbc9-9ffd2043feb2\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"501-A7\", \"capacity\": 1, \"position\": {\"x\": 3198.638019770072, \"y\": 1056.72396502144}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:32.172Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.443Z\", \"price_tier_id\": 131}, {\"id\": \"790a4599-d5fc-40b6-81a2-75c826f35dd3\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"501-B1\", \"capacity\": 1, \"position\": {\"x\": 3375.4147150667086, \"y\": 1092.0793040807675}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:32.172Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.443Z\", \"price_tier_id\": 131}, {\"id\": \"a004e6c7-5563-4b37-8119-294709c87c53\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"501-B2\", \"capacity\": 1, \"position\": {\"x\": 3357.737045537045, \"y\": 1074.4016345511038}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:32.172Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.443Z\", \"price_tier_id\": 131}, {\"id\": \"42df45d2-8f9d-4cf7-ae58-f398db815fe4\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"501-B3\", \"capacity\": 1, \"position\": {\"x\": 3340.059376007381, \"y\": 1056.72396502144}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:32.172Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.443Z\", \"price_tier_id\": 131}, {\"id\": \"a0088411-6ee1-4749-bca1-0c29819ce59e\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"501-B4\", \"capacity\": 1, \"position\": {\"x\": 3322.3817064777177, \"y\": 1039.0462954917764}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:32.172Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.443Z\", \"price_tier_id\": 131}, {\"id\": \"dffacab1-ca7b-41a5-9d14-51594369998d\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"501-B5\", \"capacity\": 1, \"position\": {\"x\": 3304.704036948054, \"y\": 1021.3686259621128}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:32.172Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.443Z\", \"price_tier_id\": 131}, {\"id\": \"83d9984b-2fb9-4aff-b502-e3a0c3fa0df0\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"501-B6\", \"capacity\": 1, \"position\": {\"x\": 3287.0263674183902, \"y\": 1003.6909564324492}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:32.172Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.443Z\", \"price_tier_id\": 131}, {\"id\": \"647d254c-8ce2-4dbd-b469-dc44afc4afb8\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"501-B7\", \"capacity\": 1, \"position\": {\"x\": 3269.3486978887267, \"y\": 986.0132869027856}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:32.172Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.443Z\", \"price_tier_id\": 131}]','{\"x\": 3287.0263674183902, \"y\": 1074.4016345511038}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(795,'4979d82a-24dc-4b9d-b871-3727325c62fb','82cfff60-02fa-4ac4-a22d-5620a2d22777',23,'','501-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3304.7040369480537, \"y\": 1162.7899821994224}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(796,'ab64b069-a5bb-4ae2-8642-3db92d193b20','82cfff60-02fa-4ac4-a22d-5620a2d22777',23,'','501-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3287.0263674183902, \"y\": 1145.1123126697587}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(797,'38b79cfc-7940-42dd-b1bc-83c2c2f52494','82cfff60-02fa-4ac4-a22d-5620a2d22777',23,'','501-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3269.3486978887263, \"y\": 1127.434643140095}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(798,'d25277a3-7f0d-4e77-a147-c6e0159eadb1','82cfff60-02fa-4ac4-a22d-5620a2d22777',23,'','501-A4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3251.671028359063, \"y\": 1109.7569736104313}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(799,'934830ed-fb6d-445c-879f-b9ffbb91c8d6','82cfff60-02fa-4ac4-a22d-5620a2d22777',23,'','501-A5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3233.9933588293993, \"y\": 1092.0793040807675}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(800,'e4db58fb-b815-4577-a988-4663a5c18a4e','82cfff60-02fa-4ac4-a22d-5620a2d22777',23,'','501-A6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3216.3156892997354, \"y\": 1074.4016345511038}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(801,'7b96569d-520f-4886-bbc9-9ffd2043feb2','82cfff60-02fa-4ac4-a22d-5620a2d22777',23,'','501-A7','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3198.638019770072, \"y\": 1056.72396502144}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(802,'790a4599-d5fc-40b6-81a2-75c826f35dd3','82cfff60-02fa-4ac4-a22d-5620a2d22777',23,'','501-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3375.4147150667086, \"y\": 1092.0793040807675}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(803,'a004e6c7-5563-4b37-8119-294709c87c53','82cfff60-02fa-4ac4-a22d-5620a2d22777',23,'','501-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3357.737045537045, \"y\": 1074.4016345511038}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(804,'42df45d2-8f9d-4cf7-ae58-f398db815fe4','82cfff60-02fa-4ac4-a22d-5620a2d22777',23,'','501-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3340.059376007381, \"y\": 1056.72396502144}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(805,'a0088411-6ee1-4749-bca1-0c29819ce59e','82cfff60-02fa-4ac4-a22d-5620a2d22777',23,'','501-B4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3322.3817064777177, \"y\": 1039.0462954917764}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(806,'dffacab1-ca7b-41a5-9d14-51594369998d','82cfff60-02fa-4ac4-a22d-5620a2d22777',23,'','501-B5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3304.704036948054, \"y\": 1021.3686259621128}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(807,'83d9984b-2fb9-4aff-b502-e3a0c3fa0df0','82cfff60-02fa-4ac4-a22d-5620a2d22777',23,'','501-B6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3287.0263674183902, \"y\": 1003.6909564324492}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(808,'647d254c-8ce2-4dbd-b469-dc44afc4afb8','82cfff60-02fa-4ac4-a22d-5620a2d22777',23,'','501-B7','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3269.3486978887267, \"y\": 986.0132869027856}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(809,'c4d2fd83-7f3a-4537-a88d-43230a38bfe2',NULL,23,'','502','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 3287.0263674183902, \"y\": 1257.0102248686223}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"aae03e7c-6903-4498-ab2f-2cba66a20e16\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"502-A1\", \"capacity\": 1, \"position\": {\"x\": 3304.7040369480537, \"y\": 1345.398572516941}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.506Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.449Z\", \"price_tier_id\": 131}, {\"id\": \"6356f55c-e79a-4db9-96b9-168a95fb1513\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"502-A2\", \"capacity\": 1, \"position\": {\"x\": 3287.0263674183902, \"y\": 1327.7209029872772}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.506Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.449Z\", \"price_tier_id\": 131}, {\"id\": \"9fbf1e0c-13f3-4257-971d-96603da59a7e\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"502-A3\", \"capacity\": 1, \"position\": {\"x\": 3269.3486978887263, \"y\": 1310.0432334576135}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.506Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.449Z\", \"price_tier_id\": 131}, {\"id\": \"d90c3f15-9311-4dea-a471-c7852815532c\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"502-A4\", \"capacity\": 1, \"position\": {\"x\": 3251.671028359063, \"y\": 1292.3655639279498}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.506Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.449Z\", \"price_tier_id\": 131}, {\"id\": \"aad4d6f1-2b75-45bd-b789-f474f63baeea\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"502-A5\", \"capacity\": 1, \"position\": {\"x\": 3233.9933588293993, \"y\": 1274.687894398286}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.506Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.449Z\", \"price_tier_id\": 131}, {\"id\": \"0dedd08e-9fec-4aad-8be1-3c32592fce33\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"502-A6\", \"capacity\": 1, \"position\": {\"x\": 3216.3156892997354, \"y\": 1257.0102248686223}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.506Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.449Z\", \"price_tier_id\": 131}, {\"id\": \"734ac443-d129-41fa-a71b-2e05fbff685c\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"502-A7\", \"capacity\": 1, \"position\": {\"x\": 3198.638019770072, \"y\": 1239.3325553389586}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.506Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.449Z\", \"price_tier_id\": 131}, {\"id\": \"7721fa98-c515-4ac2-b5b5-9061f6d0a276\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"502-B1\", \"capacity\": 1, \"position\": {\"x\": 3375.4147150667086, \"y\": 1274.687894398286}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.506Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.449Z\", \"price_tier_id\": 131}, {\"id\": \"f7340886-f02a-47c4-9e83-76846c35a368\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"502-B2\", \"capacity\": 1, \"position\": {\"x\": 3357.737045537045, \"y\": 1257.0102248686223}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.506Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.449Z\", \"price_tier_id\": 131}, {\"id\": \"574729bd-5de4-4c45-8ae9-bcc3cefb5778\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"502-B3\", \"capacity\": 1, \"position\": {\"x\": 3340.059376007381, \"y\": 1239.3325553389586}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.506Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.449Z\", \"price_tier_id\": 131}, {\"id\": \"5716d6b8-6b81-4ee1-8e3b-61ca74f76c80\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"502-B4\", \"capacity\": 1, \"position\": {\"x\": 3322.3817064777177, \"y\": 1221.654885809295}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.506Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.449Z\", \"price_tier_id\": 131}, {\"id\": \"6528f90e-94d4-462f-9d2d-809deec2b26f\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"502-B5\", \"capacity\": 1, \"position\": {\"x\": 3304.704036948054, \"y\": 1203.9772162796312}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.506Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.449Z\", \"price_tier_id\": 131}, {\"id\": \"1456dffd-78cd-45d6-9bb3-93ddc5ffad6b\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"502-B6\", \"capacity\": 1, \"position\": {\"x\": 3287.0263674183902, \"y\": 1186.2995467499677}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.506Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.449Z\", \"price_tier_id\": 131}, {\"id\": \"f73dff57-17ce-47bf-907e-58a7c0e0fcb8\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"502-B7\", \"capacity\": 1, \"position\": {\"x\": 3269.3486978887267, \"y\": 1168.6218772203038}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.506Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.449Z\", \"price_tier_id\": 131}]','{\"x\": 3287.0263674183902, \"y\": 1257.0102248686223}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(810,'aae03e7c-6903-4498-ab2f-2cba66a20e16','c4d2fd83-7f3a-4537-a88d-43230a38bfe2',23,'','502-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3304.7040369480537, \"y\": 1345.398572516941}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(811,'6356f55c-e79a-4db9-96b9-168a95fb1513','c4d2fd83-7f3a-4537-a88d-43230a38bfe2',23,'','502-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3287.0263674183902, \"y\": 1327.7209029872772}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(812,'9fbf1e0c-13f3-4257-971d-96603da59a7e','c4d2fd83-7f3a-4537-a88d-43230a38bfe2',23,'','502-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3269.3486978887263, \"y\": 1310.0432334576135}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(813,'d90c3f15-9311-4dea-a471-c7852815532c','c4d2fd83-7f3a-4537-a88d-43230a38bfe2',23,'','502-A4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3251.671028359063, \"y\": 1292.3655639279498}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(814,'aad4d6f1-2b75-45bd-b789-f474f63baeea','c4d2fd83-7f3a-4537-a88d-43230a38bfe2',23,'','502-A5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3233.9933588293993, \"y\": 1274.687894398286}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(815,'0dedd08e-9fec-4aad-8be1-3c32592fce33','c4d2fd83-7f3a-4537-a88d-43230a38bfe2',23,'','502-A6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3216.3156892997354, \"y\": 1257.0102248686223}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(816,'734ac443-d129-41fa-a71b-2e05fbff685c','c4d2fd83-7f3a-4537-a88d-43230a38bfe2',23,'','502-A7','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3198.638019770072, \"y\": 1239.3325553389586}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(817,'7721fa98-c515-4ac2-b5b5-9061f6d0a276','c4d2fd83-7f3a-4537-a88d-43230a38bfe2',23,'','502-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3375.4147150667086, \"y\": 1274.687894398286}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(818,'f7340886-f02a-47c4-9e83-76846c35a368','c4d2fd83-7f3a-4537-a88d-43230a38bfe2',23,'','502-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3357.737045537045, \"y\": 1257.0102248686223}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(819,'574729bd-5de4-4c45-8ae9-bcc3cefb5778','c4d2fd83-7f3a-4537-a88d-43230a38bfe2',23,'','502-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3340.059376007381, \"y\": 1239.3325553389586}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(820,'5716d6b8-6b81-4ee1-8e3b-61ca74f76c80','c4d2fd83-7f3a-4537-a88d-43230a38bfe2',23,'','502-B4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3322.3817064777177, \"y\": 1221.654885809295}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(821,'6528f90e-94d4-462f-9d2d-809deec2b26f','c4d2fd83-7f3a-4537-a88d-43230a38bfe2',23,'','502-B5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3304.704036948054, \"y\": 1203.9772162796312}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(822,'1456dffd-78cd-45d6-9bb3-93ddc5ffad6b','c4d2fd83-7f3a-4537-a88d-43230a38bfe2',23,'','502-B6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3287.0263674183902, \"y\": 1186.2995467499677}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(823,'f73dff57-17ce-47bf-907e-58a7c0e0fcb8','c4d2fd83-7f3a-4537-a88d-43230a38bfe2',23,'','502-B7','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3269.3486978887267, \"y\": 1168.6218772203038}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(824,'7d16a411-7148-4b96-90e2-fe07e66384eb',NULL,23,'','503','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 3531.5539624987455, \"y\": 1254.9112755546278}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"fa5dbd29-00fe-4613-af09-788d8479e70c\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"503-A1\", \"capacity\": 1, \"position\": {\"x\": 3549.231632028409, \"y\": 1343.2996232029463}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.983Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.455Z\", \"price_tier_id\": 131}, {\"id\": \"932aa8d3-cdc1-4e92-acbc-51aab4300846\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"503-A2\", \"capacity\": 1, \"position\": {\"x\": 3531.5539624987455, \"y\": 1325.6219536732826}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.983Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.455Z\", \"price_tier_id\": 131}, {\"id\": \"53dea116-2bf8-4b66-a5f6-57a6c805d6fa\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"503-A3\", \"capacity\": 1, \"position\": {\"x\": 3513.8762929690815, \"y\": 1307.944284143619}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.983Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.455Z\", \"price_tier_id\": 131}, {\"id\": \"65097abe-6e32-4e39-94c5-839886748755\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"503-A4\", \"capacity\": 1, \"position\": {\"x\": 3496.198623439418, \"y\": 1290.2666146139552}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.983Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.455Z\", \"price_tier_id\": 131}, {\"id\": \"4dcbf9db-57b6-43c7-8d14-debe61ace32b\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"503-A5\", \"capacity\": 1, \"position\": {\"x\": 3478.5209539097546, \"y\": 1272.5889450842917}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.983Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.455Z\", \"price_tier_id\": 131}, {\"id\": \"08a77fc0-3cba-40d9-a36f-1056e3b9a769\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"503-A6\", \"capacity\": 1, \"position\": {\"x\": 3460.8432843800906, \"y\": 1254.9112755546278}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.983Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.455Z\", \"price_tier_id\": 131}, {\"id\": \"3b8e7adf-89d9-4314-b281-857169207860\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"503-A7\", \"capacity\": 1, \"position\": {\"x\": 3443.165614850427, \"y\": 1237.233606024964}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.983Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.455Z\", \"price_tier_id\": 131}, {\"id\": \"29a49250-7815-4362-afbf-9375df2c5cca\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"503-B1\", \"capacity\": 1, \"position\": {\"x\": 3619.942310147064, \"y\": 1272.5889450842917}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.983Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.455Z\", \"price_tier_id\": 131}, {\"id\": \"0813cb4a-2303-47d1-a20b-c9845342db0f\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"503-B2\", \"capacity\": 1, \"position\": {\"x\": 3602.2646406174003, \"y\": 1254.9112755546278}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.983Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.455Z\", \"price_tier_id\": 131}, {\"id\": \"f12348de-665b-4654-9d63-4fb7928816a1\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"503-B3\", \"capacity\": 1, \"position\": {\"x\": 3584.5869710877364, \"y\": 1237.233606024964}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.983Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.455Z\", \"price_tier_id\": 131}, {\"id\": \"6b63d9c3-81b3-4cfc-be8d-441503a9b95e\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"503-B4\", \"capacity\": 1, \"position\": {\"x\": 3566.909301558073, \"y\": 1219.5559364953003}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.983Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.455Z\", \"price_tier_id\": 131}, {\"id\": \"b7ed60c3-e688-42f0-892c-69bec4a70340\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"503-B5\", \"capacity\": 1, \"position\": {\"x\": 3549.2316320284094, \"y\": 1201.8782669656366}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.983Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.455Z\", \"price_tier_id\": 131}, {\"id\": \"c6878d46-0e27-4de3-a54d-710850be0bb1\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"503-B6\", \"capacity\": 1, \"position\": {\"x\": 3531.5539624987455, \"y\": 1184.200597435973}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.983Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.455Z\", \"price_tier_id\": 131}, {\"id\": \"3b82cf31-16cc-4242-b7db-ec7a27183265\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"503-B7\", \"capacity\": 1, \"position\": {\"x\": 3513.876292969082, \"y\": 1166.5229279063092}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:37.983Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.455Z\", \"price_tier_id\": 131}]','{\"x\": 3531.5539624987455, \"y\": 1254.9112755546278}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(825,'fa5dbd29-00fe-4613-af09-788d8479e70c','7d16a411-7148-4b96-90e2-fe07e66384eb',23,'','503-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3549.231632028409, \"y\": 1343.2996232029463}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(826,'932aa8d3-cdc1-4e92-acbc-51aab4300846','7d16a411-7148-4b96-90e2-fe07e66384eb',23,'','503-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3531.5539624987455, \"y\": 1325.6219536732826}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(827,'53dea116-2bf8-4b66-a5f6-57a6c805d6fa','7d16a411-7148-4b96-90e2-fe07e66384eb',23,'','503-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3513.8762929690815, \"y\": 1307.944284143619}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(828,'65097abe-6e32-4e39-94c5-839886748755','7d16a411-7148-4b96-90e2-fe07e66384eb',23,'','503-A4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3496.198623439418, \"y\": 1290.2666146139552}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(829,'4dcbf9db-57b6-43c7-8d14-debe61ace32b','7d16a411-7148-4b96-90e2-fe07e66384eb',23,'','503-A5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3478.5209539097546, \"y\": 1272.5889450842917}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(830,'08a77fc0-3cba-40d9-a36f-1056e3b9a769','7d16a411-7148-4b96-90e2-fe07e66384eb',23,'','503-A6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3460.8432843800906, \"y\": 1254.9112755546278}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(831,'3b8e7adf-89d9-4314-b281-857169207860','7d16a411-7148-4b96-90e2-fe07e66384eb',23,'','503-A7','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3443.165614850427, \"y\": 1237.233606024964}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(832,'29a49250-7815-4362-afbf-9375df2c5cca','7d16a411-7148-4b96-90e2-fe07e66384eb',23,'','503-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3619.942310147064, \"y\": 1272.5889450842917}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(833,'0813cb4a-2303-47d1-a20b-c9845342db0f','7d16a411-7148-4b96-90e2-fe07e66384eb',23,'','503-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3602.2646406174003, \"y\": 1254.9112755546278}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(834,'f12348de-665b-4654-9d63-4fb7928816a1','7d16a411-7148-4b96-90e2-fe07e66384eb',23,'','503-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3584.5869710877364, \"y\": 1237.233606024964}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(835,'6b63d9c3-81b3-4cfc-be8d-441503a9b95e','7d16a411-7148-4b96-90e2-fe07e66384eb',23,'','503-B4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3566.909301558073, \"y\": 1219.5559364953003}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(836,'b7ed60c3-e688-42f0-892c-69bec4a70340','7d16a411-7148-4b96-90e2-fe07e66384eb',23,'','503-B5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3549.2316320284094, \"y\": 1201.8782669656366}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(837,'c6878d46-0e27-4de3-a54d-710850be0bb1','7d16a411-7148-4b96-90e2-fe07e66384eb',23,'','503-B6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3531.5539624987455, \"y\": 1184.200597435973}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(838,'3b82cf31-16cc-4242-b7db-ec7a27183265','7d16a411-7148-4b96-90e2-fe07e66384eb',23,'','503-B7','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3513.876292969082, \"y\": 1166.5229279063092}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(839,'cb110bdc-acdb-46c4-b52d-84d9783ae9fd',NULL,23,'','504','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 3287.0263674183902, \"y\": 1459.6188151861409}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"d9d34043-56e0-4253-9852-1f1c0d3fa1c1\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"504-A1\", \"capacity\": 1, \"position\": {\"x\": 3304.7040369480537, \"y\": 1548.0071628344597}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.484Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:07.199Z\", \"price_tier_id\": 131}, {\"id\": \"ac2355cf-888d-4b37-a37e-b62a524220bf\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"504-A2\", \"capacity\": 1, \"position\": {\"x\": 3287.0263674183902, \"y\": 1530.3294933047955}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.484Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:07.199Z\", \"price_tier_id\": 131}, {\"id\": \"2aad5480-9782-415a-9078-6d91b3d86029\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"504-A3\", \"capacity\": 1, \"position\": {\"x\": 3269.3486978887263, \"y\": 1512.651823775132}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.484Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:07.199Z\", \"price_tier_id\": 131}, {\"id\": \"f7a87923-1d8f-4af7-acfc-67ceef698719\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"504-A4\", \"capacity\": 1, \"position\": {\"x\": 3251.671028359063, \"y\": 1494.9741542454683}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.484Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:07.199Z\", \"price_tier_id\": 131}, {\"id\": \"f2538a44-8c67-41fa-a692-ab5aee2de403\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"504-A5\", \"capacity\": 1, \"position\": {\"x\": 3233.9933588293993, \"y\": 1477.2964847158046}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.484Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:07.199Z\", \"price_tier_id\": 131}, {\"id\": \"bec1d053-3dad-41f0-a266-57fd8e77bc50\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"504-A6\", \"capacity\": 1, \"position\": {\"x\": 3216.3156892997354, \"y\": 1459.6188151861409}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.484Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:07.199Z\", \"price_tier_id\": 131}, {\"id\": \"23d1235d-404d-4fe8-a87f-8b3256687ccf\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"504-A7\", \"capacity\": 1, \"position\": {\"x\": 3198.638019770072, \"y\": 1441.9411456564771}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.484Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:07.199Z\", \"price_tier_id\": 131}, {\"id\": \"2353f891-d1b7-45a0-a34f-331453202c6f\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"504-B1\", \"capacity\": 1, \"position\": {\"x\": 3375.4147150667086, \"y\": 1477.2964847158046}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.484Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:07.199Z\", \"price_tier_id\": 131}, {\"id\": \"d6979b9d-616d-4c25-9ba9-270db57e974f\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"504-B2\", \"capacity\": 1, \"position\": {\"x\": 3357.737045537045, \"y\": 1459.6188151861409}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.484Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:07.199Z\", \"price_tier_id\": 131}, {\"id\": \"411673ab-7d6d-4488-857e-d055940ed066\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"504-B3\", \"capacity\": 1, \"position\": {\"x\": 3340.059376007381, \"y\": 1441.9411456564771}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.484Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:07.199Z\", \"price_tier_id\": 131}, {\"id\": \"73f1359a-4d34-446a-80ee-f01eed0b8621\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"504-B4\", \"capacity\": 1, \"position\": {\"x\": 3322.3817064777177, \"y\": 1424.2634761268134}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.484Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:07.199Z\", \"price_tier_id\": 131}, {\"id\": \"2b7b8026-dbbc-4aba-98da-3408f2c90b70\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"504-B5\", \"capacity\": 1, \"position\": {\"x\": 3304.704036948054, \"y\": 1406.5858065971497}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.484Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:07.199Z\", \"price_tier_id\": 131}, {\"id\": \"b0f58962-c373-45aa-bd80-b47e690e7e4a\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"504-B6\", \"capacity\": 1, \"position\": {\"x\": 3287.0263674183902, \"y\": 1388.908137067486}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.484Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:07.199Z\", \"price_tier_id\": 131}, {\"id\": \"3fa28231-6f19-46e7-96ca-59a448ceb7fa\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"504-B7\", \"capacity\": 1, \"position\": {\"x\": 3269.3486978887267, \"y\": 1371.2304675378225}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.484Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:07.199Z\", \"price_tier_id\": 131}]','{\"x\": 3287.0263674183902, \"y\": 1439.6188151861409}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(840,'d9d34043-56e0-4253-9852-1f1c0d3fa1c1','cb110bdc-acdb-46c4-b52d-84d9783ae9fd',23,'','504-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3304.7040369480537, \"y\": 1548.0071628344597}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(841,'ac2355cf-888d-4b37-a37e-b62a524220bf','cb110bdc-acdb-46c4-b52d-84d9783ae9fd',23,'','504-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3287.0263674183902, \"y\": 1530.3294933047955}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(842,'2aad5480-9782-415a-9078-6d91b3d86029','cb110bdc-acdb-46c4-b52d-84d9783ae9fd',23,'','504-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3269.3486978887263, \"y\": 1512.651823775132}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(843,'f7a87923-1d8f-4af7-acfc-67ceef698719','cb110bdc-acdb-46c4-b52d-84d9783ae9fd',23,'','504-A4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3251.671028359063, \"y\": 1494.9741542454683}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(844,'f2538a44-8c67-41fa-a692-ab5aee2de403','cb110bdc-acdb-46c4-b52d-84d9783ae9fd',23,'','504-A5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3233.9933588293993, \"y\": 1477.2964847158046}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(845,'bec1d053-3dad-41f0-a266-57fd8e77bc50','cb110bdc-acdb-46c4-b52d-84d9783ae9fd',23,'','504-A6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3216.3156892997354, \"y\": 1459.6188151861409}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(846,'23d1235d-404d-4fe8-a87f-8b3256687ccf','cb110bdc-acdb-46c4-b52d-84d9783ae9fd',23,'','504-A7','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3198.638019770072, \"y\": 1441.9411456564771}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(847,'2353f891-d1b7-45a0-a34f-331453202c6f','cb110bdc-acdb-46c4-b52d-84d9783ae9fd',23,'','504-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3375.4147150667086, \"y\": 1477.2964847158046}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(848,'d6979b9d-616d-4c25-9ba9-270db57e974f','cb110bdc-acdb-46c4-b52d-84d9783ae9fd',23,'','504-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3357.737045537045, \"y\": 1459.6188151861409}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(849,'411673ab-7d6d-4488-857e-d055940ed066','cb110bdc-acdb-46c4-b52d-84d9783ae9fd',23,'','504-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3340.059376007381, \"y\": 1441.9411456564771}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(850,'73f1359a-4d34-446a-80ee-f01eed0b8621','cb110bdc-acdb-46c4-b52d-84d9783ae9fd',23,'','504-B4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3322.3817064777177, \"y\": 1424.2634761268134}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(851,'2b7b8026-dbbc-4aba-98da-3408f2c90b70','cb110bdc-acdb-46c4-b52d-84d9783ae9fd',23,'','504-B5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3304.704036948054, \"y\": 1406.5858065971497}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(852,'b0f58962-c373-45aa-bd80-b47e690e7e4a','cb110bdc-acdb-46c4-b52d-84d9783ae9fd',23,'','504-B6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3287.0263674183902, \"y\": 1388.908137067486}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(853,'3fa28231-6f19-46e7-96ca-59a448ceb7fa','cb110bdc-acdb-46c4-b52d-84d9783ae9fd',23,'','504-B7','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3269.3486978887267, \"y\": 1371.2304675378225}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(854,'dd3fa393-3fc3-40dc-bd4c-67cbf787357b',NULL,23,'','505','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 3531.5539624987455, \"y\": 1448.0146124421185}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"34bda770-ec30-4421-ac82-8ca42e704bb6\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"505-A1\", \"capacity\": 1, \"position\": {\"x\": 3549.231632028409, \"y\": 1536.402960090437}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.901Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.469Z\", \"price_tier_id\": 131}, {\"id\": \"37212fe1-7b2d-47e1-9282-2360a4ef0565\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"505-A2\", \"capacity\": 1, \"position\": {\"x\": 3531.5539624987455, \"y\": 1518.7252905607734}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.901Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.469Z\", \"price_tier_id\": 131}, {\"id\": \"d92b6f63-b7ee-47ab-a043-2bc49dd5528b\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"505-A3\", \"capacity\": 1, \"position\": {\"x\": 3513.8762929690815, \"y\": 1501.0476210311097}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.901Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.469Z\", \"price_tier_id\": 131}, {\"id\": \"95c129b6-f1f2-4e19-99d9-20ed4f9bb405\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"505-A4\", \"capacity\": 1, \"position\": {\"x\": 3496.198623439418, \"y\": 1483.369951501446}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.901Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.469Z\", \"price_tier_id\": 131}, {\"id\": \"876ad324-34e8-4f34-b811-4c3ab076ed78\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"505-A5\", \"capacity\": 1, \"position\": {\"x\": 3478.5209539097546, \"y\": 1465.6922819717822}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.901Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.469Z\", \"price_tier_id\": 131}, {\"id\": \"7896288c-fc2c-4de8-8f40-c9cd5c254c17\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"505-A6\", \"capacity\": 1, \"position\": {\"x\": 3460.8432843800906, \"y\": 1448.0146124421185}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.901Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.469Z\", \"price_tier_id\": 131}, {\"id\": \"71473217-4d1e-410a-be98-b95330d0fc6c\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"505-A7\", \"capacity\": 1, \"position\": {\"x\": 3443.165614850427, \"y\": 1430.3369429124548}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.901Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.469Z\", \"price_tier_id\": 131}, {\"id\": \"0fe5317f-6546-4e67-a785-3a5500fddc71\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"505-B1\", \"capacity\": 1, \"position\": {\"x\": 3619.942310147064, \"y\": 1465.6922819717822}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.901Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.469Z\", \"price_tier_id\": 131}, {\"id\": \"ddeafd69-4baa-4970-96b4-1a34b71c2e2a\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"505-B2\", \"capacity\": 1, \"position\": {\"x\": 3602.2646406174003, \"y\": 1448.0146124421185}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.901Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.469Z\", \"price_tier_id\": 131}, {\"id\": \"29224f05-fe58-4cf0-af46-43c7dfbc215e\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"505-B3\", \"capacity\": 1, \"position\": {\"x\": 3584.5869710877364, \"y\": 1430.3369429124548}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.901Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.469Z\", \"price_tier_id\": 131}, {\"id\": \"5b60269a-a5aa-4c96-8ab3-7081d0cb4623\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"505-B4\", \"capacity\": 1, \"position\": {\"x\": 3566.909301558073, \"y\": 1412.659273382791}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.901Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.469Z\", \"price_tier_id\": 131}, {\"id\": \"6b3de74c-4dfa-4f48-a68d-01f9ffaa5de1\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"505-B5\", \"capacity\": 1, \"position\": {\"x\": 3549.2316320284094, \"y\": 1394.9816038531274}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.901Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.469Z\", \"price_tier_id\": 131}, {\"id\": \"bf7f61aa-5be9-4249-9660-7e7b9723a685\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"505-B6\", \"capacity\": 1, \"position\": {\"x\": 3531.5539624987455, \"y\": 1377.3039343234636}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.901Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.469Z\", \"price_tier_id\": 131}, {\"id\": \"db1eaa08-5f39-4d71-a4fc-8d8f2962231f\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"505-B7\", \"capacity\": 1, \"position\": {\"x\": 3513.876292969082, \"y\": 1359.6262647938}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:38.901Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.469Z\", \"price_tier_id\": 131}]','{\"x\": 3531.5539624987455, \"y\": 1448.0146124421185}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(855,'34bda770-ec30-4421-ac82-8ca42e704bb6','dd3fa393-3fc3-40dc-bd4c-67cbf787357b',23,'','505-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3549.231632028409, \"y\": 1536.402960090437}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(856,'37212fe1-7b2d-47e1-9282-2360a4ef0565','dd3fa393-3fc3-40dc-bd4c-67cbf787357b',23,'','505-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3531.5539624987455, \"y\": 1518.7252905607734}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(857,'d92b6f63-b7ee-47ab-a043-2bc49dd5528b','dd3fa393-3fc3-40dc-bd4c-67cbf787357b',23,'','505-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3513.8762929690815, \"y\": 1501.0476210311097}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(858,'95c129b6-f1f2-4e19-99d9-20ed4f9bb405','dd3fa393-3fc3-40dc-bd4c-67cbf787357b',23,'','505-A4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3496.198623439418, \"y\": 1483.369951501446}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(859,'876ad324-34e8-4f34-b811-4c3ab076ed78','dd3fa393-3fc3-40dc-bd4c-67cbf787357b',23,'','505-A5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3478.5209539097546, \"y\": 1465.6922819717822}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(860,'7896288c-fc2c-4de8-8f40-c9cd5c254c17','dd3fa393-3fc3-40dc-bd4c-67cbf787357b',23,'','505-A6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3460.8432843800906, \"y\": 1448.0146124421185}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(861,'71473217-4d1e-410a-be98-b95330d0fc6c','dd3fa393-3fc3-40dc-bd4c-67cbf787357b',23,'','505-A7','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3443.165614850427, \"y\": 1430.3369429124548}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(862,'0fe5317f-6546-4e67-a785-3a5500fddc71','dd3fa393-3fc3-40dc-bd4c-67cbf787357b',23,'','505-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3619.942310147064, \"y\": 1465.6922819717822}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(863,'ddeafd69-4baa-4970-96b4-1a34b71c2e2a','dd3fa393-3fc3-40dc-bd4c-67cbf787357b',23,'','505-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3602.2646406174003, \"y\": 1448.0146124421185}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(864,'29224f05-fe58-4cf0-af46-43c7dfbc215e','dd3fa393-3fc3-40dc-bd4c-67cbf787357b',23,'','505-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3584.5869710877364, \"y\": 1430.3369429124548}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(865,'5b60269a-a5aa-4c96-8ab3-7081d0cb4623','dd3fa393-3fc3-40dc-bd4c-67cbf787357b',23,'','505-B4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3566.909301558073, \"y\": 1412.659273382791}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(866,'6b3de74c-4dfa-4f48-a68d-01f9ffaa5de1','dd3fa393-3fc3-40dc-bd4c-67cbf787357b',23,'','505-B5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3549.2316320284094, \"y\": 1394.9816038531274}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(867,'bf7f61aa-5be9-4249-9660-7e7b9723a685','dd3fa393-3fc3-40dc-bd4c-67cbf787357b',23,'','505-B6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3531.5539624987455, \"y\": 1377.3039343234636}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(868,'db1eaa08-5f39-4d71-a4fc-8d8f2962231f','dd3fa393-3fc3-40dc-bd4c-67cbf787357b',23,'','505-B7','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3513.876292969082, \"y\": 1359.6262647938}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(869,'5cd2190e-aab4-481a-94c2-3bb7227fd52b',NULL,23,'','506','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 3287.0263674183902, \"y\": 1642.2274055036594}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"70490910-3ac5-49d7-ba55-f1d559969692\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"506-A1\", \"capacity\": 1, \"position\": {\"x\": 3304.7040369480537, \"y\": 1730.615753151978}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.314Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:05.016Z\", \"price_tier_id\": 131}, {\"id\": \"a06bc55d-c010-448c-8f9f-64ea5faac3a6\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"506-A2\", \"capacity\": 1, \"position\": {\"x\": 3287.0263674183902, \"y\": 1712.9380836223145}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.314Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:05.016Z\", \"price_tier_id\": 131}, {\"id\": \"94054148-e19e-43e6-b29a-8612f301cd12\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"506-A3\", \"capacity\": 1, \"position\": {\"x\": 3269.3486978887263, \"y\": 1695.2604140926503}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.314Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:05.016Z\", \"price_tier_id\": 131}, {\"id\": \"46700758-6e06-4243-bd1f-8d70c13e2082\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"506-A4\", \"capacity\": 1, \"position\": {\"x\": 3251.671028359063, \"y\": 1677.5827445629868}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.314Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:05.016Z\", \"price_tier_id\": 131}, {\"id\": \"4b1deb03-ba0c-49c0-9565-aaf3fc9593a5\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"506-A5\", \"capacity\": 1, \"position\": {\"x\": 3233.9933588293993, \"y\": 1659.905075033323}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.314Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:05.016Z\", \"price_tier_id\": 131}, {\"id\": \"880c1c1c-3de8-4c7c-b88a-7f40daa57626\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"506-A6\", \"capacity\": 1, \"position\": {\"x\": 3216.3156892997354, \"y\": 1642.2274055036594}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.314Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:05.016Z\", \"price_tier_id\": 131}, {\"id\": \"f9bd3787-f91b-41a1-8463-1e217ad71dc6\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"506-A7\", \"capacity\": 1, \"position\": {\"x\": 3198.638019770072, \"y\": 1624.5497359739957}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.314Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:05.016Z\", \"price_tier_id\": 131}, {\"id\": \"2074e706-efd9-4510-b941-b5b69ee5c8ef\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"506-B1\", \"capacity\": 1, \"position\": {\"x\": 3375.4147150667086, \"y\": 1659.905075033323}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.314Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:05.016Z\", \"price_tier_id\": 131}, {\"id\": \"e81b3523-314c-4ff4-8529-a3870076fcd7\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"506-B2\", \"capacity\": 1, \"position\": {\"x\": 3357.737045537045, \"y\": 1642.2274055036594}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.314Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:05.016Z\", \"price_tier_id\": 131}, {\"id\": \"5caf7fc3-e94b-454a-95a5-46d78e09b969\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"506-B3\", \"capacity\": 1, \"position\": {\"x\": 3340.059376007381, \"y\": 1624.5497359739957}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.314Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:05.016Z\", \"price_tier_id\": 131}, {\"id\": \"854b68eb-9b4c-44b6-80d0-d82e65ffb2c9\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"506-B4\", \"capacity\": 1, \"position\": {\"x\": 3322.3817064777177, \"y\": 1606.872066444332}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.314Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:05.016Z\", \"price_tier_id\": 131}, {\"id\": \"77fdd49e-f2f9-45ee-878f-efdde9e91fa7\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"506-B5\", \"capacity\": 1, \"position\": {\"x\": 3304.704036948054, \"y\": 1589.1943969146682}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.314Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:05.016Z\", \"price_tier_id\": 131}, {\"id\": \"966ad01b-4164-4f98-a145-3ac2988a13fa\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"506-B6\", \"capacity\": 1, \"position\": {\"x\": 3287.0263674183902, \"y\": 1571.5167273850043}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.314Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:05.016Z\", \"price_tier_id\": 131}, {\"id\": \"6090463e-711a-441c-ba50-aa29a9af628b\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"506-B7\", \"capacity\": 1, \"position\": {\"x\": 3269.3486978887267, \"y\": 1553.8390578553408}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.314Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:05.016Z\", \"price_tier_id\": 131}]','{\"x\": 3287.0263674183902, \"y\": 1622.2274055036594}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(870,'70490910-3ac5-49d7-ba55-f1d559969692','5cd2190e-aab4-481a-94c2-3bb7227fd52b',23,'','506-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3304.7040369480537, \"y\": 1730.615753151978}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(871,'a06bc55d-c010-448c-8f9f-64ea5faac3a6','5cd2190e-aab4-481a-94c2-3bb7227fd52b',23,'','506-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3287.0263674183902, \"y\": 1712.9380836223145}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(872,'94054148-e19e-43e6-b29a-8612f301cd12','5cd2190e-aab4-481a-94c2-3bb7227fd52b',23,'','506-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3269.3486978887263, \"y\": 1695.2604140926503}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(873,'46700758-6e06-4243-bd1f-8d70c13e2082','5cd2190e-aab4-481a-94c2-3bb7227fd52b',23,'','506-A4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3251.671028359063, \"y\": 1677.5827445629868}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(874,'4b1deb03-ba0c-49c0-9565-aaf3fc9593a5','5cd2190e-aab4-481a-94c2-3bb7227fd52b',23,'','506-A5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3233.9933588293993, \"y\": 1659.905075033323}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(875,'880c1c1c-3de8-4c7c-b88a-7f40daa57626','5cd2190e-aab4-481a-94c2-3bb7227fd52b',23,'','506-A6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3216.3156892997354, \"y\": 1642.2274055036594}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(876,'f9bd3787-f91b-41a1-8463-1e217ad71dc6','5cd2190e-aab4-481a-94c2-3bb7227fd52b',23,'','506-A7','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3198.638019770072, \"y\": 1624.5497359739957}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(877,'2074e706-efd9-4510-b941-b5b69ee5c8ef','5cd2190e-aab4-481a-94c2-3bb7227fd52b',23,'','506-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3375.4147150667086, \"y\": 1659.905075033323}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(878,'e81b3523-314c-4ff4-8529-a3870076fcd7','5cd2190e-aab4-481a-94c2-3bb7227fd52b',23,'','506-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3357.737045537045, \"y\": 1642.2274055036594}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(879,'5caf7fc3-e94b-454a-95a5-46d78e09b969','5cd2190e-aab4-481a-94c2-3bb7227fd52b',23,'','506-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3340.059376007381, \"y\": 1624.5497359739957}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(880,'854b68eb-9b4c-44b6-80d0-d82e65ffb2c9','5cd2190e-aab4-481a-94c2-3bb7227fd52b',23,'','506-B4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3322.3817064777177, \"y\": 1606.872066444332}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(881,'77fdd49e-f2f9-45ee-878f-efdde9e91fa7','5cd2190e-aab4-481a-94c2-3bb7227fd52b',23,'','506-B5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3304.704036948054, \"y\": 1589.1943969146682}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(882,'966ad01b-4164-4f98-a145-3ac2988a13fa','5cd2190e-aab4-481a-94c2-3bb7227fd52b',23,'','506-B6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3287.0263674183902, \"y\": 1571.5167273850043}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(883,'6090463e-711a-441c-ba50-aa29a9af628b','5cd2190e-aab4-481a-94c2-3bb7227fd52b',23,'','506-B7','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3269.3486978887267, \"y\": 1553.8390578553408}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(884,'9dadd413-aa54-4c19-83fe-28263c3c96d7',NULL,23,'','507','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 3531.5539624987455, \"y\": 1641.1179493296092}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"36de5ffa-aca6-49ce-82d6-58e4685a22d1\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"507-A1\", \"capacity\": 1, \"position\": {\"x\": 3549.231632028409, \"y\": 1729.5062969779278}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.479Z\", \"price_tier_id\": 131}, {\"id\": \"e863dd1f-9881-4c6f-b439-f92f9d13cff7\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"507-A2\", \"capacity\": 1, \"position\": {\"x\": 3531.5539624987455, \"y\": 1711.828627448264}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.479Z\", \"price_tier_id\": 131}, {\"id\": \"801110db-b0cd-45e5-9fdb-f731ced5b9ae\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"507-A3\", \"capacity\": 1, \"position\": {\"x\": 3513.8762929690815, \"y\": 1694.1509579186004}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.479Z\", \"price_tier_id\": 131}, {\"id\": \"713ff752-dc69-4926-820d-b72c64cbc82c\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"507-A4\", \"capacity\": 1, \"position\": {\"x\": 3496.198623439418, \"y\": 1676.473288388937}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.479Z\", \"price_tier_id\": 131}, {\"id\": \"a9435074-215a-4bc4-8c25-adc4dafcfdbf\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"507-A5\", \"capacity\": 1, \"position\": {\"x\": 3478.5209539097546, \"y\": 1658.795618859273}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.479Z\", \"price_tier_id\": 131}, {\"id\": \"4c30a75a-acb2-42c6-985e-9b17e05fd87a\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"507-A6\", \"capacity\": 1, \"position\": {\"x\": 3460.8432843800906, \"y\": 1641.1179493296092}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.479Z\", \"price_tier_id\": 131}, {\"id\": \"9e419754-4992-4d79-9cbf-eba9725951e8\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"507-A7\", \"capacity\": 1, \"position\": {\"x\": 3443.165614850427, \"y\": 1623.4402797999455}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.479Z\", \"price_tier_id\": 131}, {\"id\": \"374968ab-f99a-4286-87d3-160c84792200\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"507-B1\", \"capacity\": 1, \"position\": {\"x\": 3619.942310147064, \"y\": 1658.795618859273}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.479Z\", \"price_tier_id\": 131}, {\"id\": \"43834920-0ea9-4304-a1ef-49f780110668\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"507-B2\", \"capacity\": 1, \"position\": {\"x\": 3602.2646406174003, \"y\": 1641.1179493296092}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.479Z\", \"price_tier_id\": 131}, {\"id\": \"3ee48c53-f955-4eef-8b76-736dfcd16468\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"507-B3\", \"capacity\": 1, \"position\": {\"x\": 3584.5869710877364, \"y\": 1623.4402797999455}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.479Z\", \"price_tier_id\": 131}, {\"id\": \"27200063-62b2-4639-a4c4-d2f69494ff6f\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"507-B4\", \"capacity\": 1, \"position\": {\"x\": 3566.909301558073, \"y\": 1605.7626102702818}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.479Z\", \"price_tier_id\": 131}, {\"id\": \"ea08105d-61ea-4486-a641-fb9a272adfbd\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"507-B5\", \"capacity\": 1, \"position\": {\"x\": 3549.2316320284094, \"y\": 1588.084940740618}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.479Z\", \"price_tier_id\": 131}, {\"id\": \"567e57a1-09b6-4771-ad37-f919220154f7\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"507-B6\", \"capacity\": 1, \"position\": {\"x\": 3531.5539624987455, \"y\": 1570.4072712109544}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.479Z\", \"price_tier_id\": 131}, {\"id\": \"e0ea87b0-e79f-49e4-b3c1-72fe65a87d2b\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"507-B7\", \"capacity\": 1, \"position\": {\"x\": 3513.876292969082, \"y\": 1552.729601681291}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:39.700Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:49:51.479Z\", \"price_tier_id\": 131}]','{\"x\": 3531.5539624987455, \"y\": 1641.1179493296092}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(885,'36de5ffa-aca6-49ce-82d6-58e4685a22d1','9dadd413-aa54-4c19-83fe-28263c3c96d7',23,'','507-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3549.231632028409, \"y\": 1729.5062969779278}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(886,'e863dd1f-9881-4c6f-b439-f92f9d13cff7','9dadd413-aa54-4c19-83fe-28263c3c96d7',23,'','507-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3531.5539624987455, \"y\": 1711.828627448264}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(887,'801110db-b0cd-45e5-9fdb-f731ced5b9ae','9dadd413-aa54-4c19-83fe-28263c3c96d7',23,'','507-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3513.8762929690815, \"y\": 1694.1509579186004}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(888,'713ff752-dc69-4926-820d-b72c64cbc82c','9dadd413-aa54-4c19-83fe-28263c3c96d7',23,'','507-A4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3496.198623439418, \"y\": 1676.473288388937}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(889,'a9435074-215a-4bc4-8c25-adc4dafcfdbf','9dadd413-aa54-4c19-83fe-28263c3c96d7',23,'','507-A5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3478.5209539097546, \"y\": 1658.795618859273}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(890,'4c30a75a-acb2-42c6-985e-9b17e05fd87a','9dadd413-aa54-4c19-83fe-28263c3c96d7',23,'','507-A6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3460.8432843800906, \"y\": 1641.1179493296092}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(891,'9e419754-4992-4d79-9cbf-eba9725951e8','9dadd413-aa54-4c19-83fe-28263c3c96d7',23,'','507-A7','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3443.165614850427, \"y\": 1623.4402797999455}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(892,'374968ab-f99a-4286-87d3-160c84792200','9dadd413-aa54-4c19-83fe-28263c3c96d7',23,'','507-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3619.942310147064, \"y\": 1658.795618859273}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(893,'43834920-0ea9-4304-a1ef-49f780110668','9dadd413-aa54-4c19-83fe-28263c3c96d7',23,'','507-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3602.2646406174003, \"y\": 1641.1179493296092}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(894,'3ee48c53-f955-4eef-8b76-736dfcd16468','9dadd413-aa54-4c19-83fe-28263c3c96d7',23,'','507-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3584.5869710877364, \"y\": 1623.4402797999455}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(895,'27200063-62b2-4639-a4c4-d2f69494ff6f','9dadd413-aa54-4c19-83fe-28263c3c96d7',23,'','507-B4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3566.909301558073, \"y\": 1605.7626102702818}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(896,'ea08105d-61ea-4486-a641-fb9a272adfbd','9dadd413-aa54-4c19-83fe-28263c3c96d7',23,'','507-B5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3549.2316320284094, \"y\": 1588.084940740618}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(897,'567e57a1-09b6-4771-ad37-f919220154f7','9dadd413-aa54-4c19-83fe-28263c3c96d7',23,'','507-B6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3531.5539624987455, \"y\": 1570.4072712109544}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(898,'e0ea87b0-e79f-49e4-b3c1-72fe65a87d2b','9dadd413-aa54-4c19-83fe-28263c3c96d7',23,'','507-B7','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3513.876292969082, \"y\": 1552.729601681291}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(899,'597f379b-f719-4f75-8a7f-da013f118e68',NULL,23,'','508','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 3287.0263674183902, \"y\": 1834.835995821178}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"3254021d-7494-4403-82be-2021da7a5520\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"508-A1\", \"capacity\": 1, \"position\": {\"x\": 3304.7040369480537, \"y\": 1923.2243434694965}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:40.452Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:01.977Z\", \"price_tier_id\": 131}, {\"id\": \"281e8832-d4f3-4471-86f9-61aa4c3b27cf\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"508-A2\", \"capacity\": 1, \"position\": {\"x\": 3287.0263674183902, \"y\": 1905.5466739398328}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:40.452Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:01.977Z\", \"price_tier_id\": 131}, {\"id\": \"2c9ee4be-1305-4135-8c9d-986033ac2af9\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"508-A3\", \"capacity\": 1, \"position\": {\"x\": 3269.3486978887263, \"y\": 1887.869004410169}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:40.452Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:01.977Z\", \"price_tier_id\": 131}, {\"id\": \"906a0802-f017-4ed4-a136-fcc4dd12fbbe\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"508-A4\", \"capacity\": 1, \"position\": {\"x\": 3251.671028359063, \"y\": 1870.191334880505}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:40.452Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:01.977Z\", \"price_tier_id\": 131}, {\"id\": \"d94e696c-60c7-44fc-a181-aac29ab6053a\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"508-A5\", \"capacity\": 1, \"position\": {\"x\": 3233.9933588293993, \"y\": 1852.5136653508416}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:40.452Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:01.977Z\", \"price_tier_id\": 131}, {\"id\": \"f4b75252-f73f-4b45-b9d9-a46d2b1f071e\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"508-A6\", \"capacity\": 1, \"position\": {\"x\": 3216.3156892997354, \"y\": 1834.835995821178}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:40.452Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:01.977Z\", \"price_tier_id\": 131}, {\"id\": \"cde665fe-a36d-45d0-b0c1-096613e26ee2\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"508-A7\", \"capacity\": 1, \"position\": {\"x\": 3198.638019770072, \"y\": 1817.1583262915144}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:40.452Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:01.977Z\", \"price_tier_id\": 131}, {\"id\": \"f003e195-f12e-4072-9b0c-1d7f521d6f49\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"508-B1\", \"capacity\": 1, \"position\": {\"x\": 3375.4147150667086, \"y\": 1852.5136653508416}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:40.452Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:01.977Z\", \"price_tier_id\": 131}, {\"id\": \"6dd508ea-c411-4c34-a154-cf946eccfcf3\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"508-B2\", \"capacity\": 1, \"position\": {\"x\": 3357.737045537045, \"y\": 1834.835995821178}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:40.452Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:01.977Z\", \"price_tier_id\": 131}, {\"id\": \"8d613db6-5abd-4d59-9a98-2c3cd0a0c135\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"508-B3\", \"capacity\": 1, \"position\": {\"x\": 3340.059376007381, \"y\": 1817.1583262915144}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:40.452Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:01.977Z\", \"price_tier_id\": 131}, {\"id\": \"1001f3bf-59d7-430e-b911-8f08f581744f\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"508-B4\", \"capacity\": 1, \"position\": {\"x\": 3322.3817064777177, \"y\": 1799.4806567618505}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:40.452Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:01.977Z\", \"price_tier_id\": 131}, {\"id\": \"96222ff3-167f-4702-9b28-cadbcb63c69d\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"508-B5\", \"capacity\": 1, \"position\": {\"x\": 3304.704036948054, \"y\": 1781.8029872321868}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:40.452Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:01.977Z\", \"price_tier_id\": 131}, {\"id\": \"c1cb782a-3e38-4932-b149-b12aada9376f\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"508-B6\", \"capacity\": 1, \"position\": {\"x\": 3287.0263674183902, \"y\": 1764.125317702523}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:40.452Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:01.977Z\", \"price_tier_id\": 131}, {\"id\": \"587ff35a-cb42-409f-91b4-4c95298eedbf\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"508-B7\", \"capacity\": 1, \"position\": {\"x\": 3269.3486978887267, \"y\": 1746.447648172859}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:40.452Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:01.977Z\", \"price_tier_id\": 131}]','{\"x\": 3287.0263674183902, \"y\": 1804.835995821178}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(900,'3254021d-7494-4403-82be-2021da7a5520','597f379b-f719-4f75-8a7f-da013f118e68',23,'','508-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3304.7040369480537, \"y\": 1923.2243434694965}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(901,'281e8832-d4f3-4471-86f9-61aa4c3b27cf','597f379b-f719-4f75-8a7f-da013f118e68',23,'','508-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3287.0263674183902, \"y\": 1905.5466739398328}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(902,'2c9ee4be-1305-4135-8c9d-986033ac2af9','597f379b-f719-4f75-8a7f-da013f118e68',23,'','508-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3269.3486978887263, \"y\": 1887.869004410169}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(903,'906a0802-f017-4ed4-a136-fcc4dd12fbbe','597f379b-f719-4f75-8a7f-da013f118e68',23,'','508-A4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3251.671028359063, \"y\": 1870.191334880505}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(904,'d94e696c-60c7-44fc-a181-aac29ab6053a','597f379b-f719-4f75-8a7f-da013f118e68',23,'','508-A5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3233.9933588293993, \"y\": 1852.5136653508416}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(905,'f4b75252-f73f-4b45-b9d9-a46d2b1f071e','597f379b-f719-4f75-8a7f-da013f118e68',23,'','508-A6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3216.3156892997354, \"y\": 1834.835995821178}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(906,'cde665fe-a36d-45d0-b0c1-096613e26ee2','597f379b-f719-4f75-8a7f-da013f118e68',23,'','508-A7','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3198.638019770072, \"y\": 1817.1583262915144}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(907,'f003e195-f12e-4072-9b0c-1d7f521d6f49','597f379b-f719-4f75-8a7f-da013f118e68',23,'','508-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3375.4147150667086, \"y\": 1852.5136653508416}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(908,'6dd508ea-c411-4c34-a154-cf946eccfcf3','597f379b-f719-4f75-8a7f-da013f118e68',23,'','508-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3357.737045537045, \"y\": 1834.835995821178}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(909,'8d613db6-5abd-4d59-9a98-2c3cd0a0c135','597f379b-f719-4f75-8a7f-da013f118e68',23,'','508-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3340.059376007381, \"y\": 1817.1583262915144}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(910,'1001f3bf-59d7-430e-b911-8f08f581744f','597f379b-f719-4f75-8a7f-da013f118e68',23,'','508-B4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3322.3817064777177, \"y\": 1799.4806567618505}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(911,'96222ff3-167f-4702-9b28-cadbcb63c69d','597f379b-f719-4f75-8a7f-da013f118e68',23,'','508-B5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3304.704036948054, \"y\": 1781.8029872321868}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(912,'c1cb782a-3e38-4932-b149-b12aada9376f','597f379b-f719-4f75-8a7f-da013f118e68',23,'','508-B6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3287.0263674183902, \"y\": 1764.125317702523}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(913,'587ff35a-cb42-409f-91b4-4c95298eedbf','597f379b-f719-4f75-8a7f-da013f118e68',23,'','508-B7','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3269.3486978887267, \"y\": 1746.447648172859}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(914,'c352c07f-94d1-4a79-bde9-a24ed17e10b0',NULL,23,'','509','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 3287.0263674183902, \"y\": 2037.4445861386964}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"68931932-8eed-459d-afd0-fa598f15833c\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"509-A1\", \"capacity\": 1, \"position\": {\"x\": 3304.7040369480537, \"y\": 2125.832933787015}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:41.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:00.418Z\", \"price_tier_id\": 131}, {\"id\": \"5ed9fec5-d040-4ef5-bba2-210f02ba9ce3\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"509-A2\", \"capacity\": 1, \"position\": {\"x\": 3287.0263674183902, \"y\": 2108.155264257351}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:41.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:00.418Z\", \"price_tier_id\": 131}, {\"id\": \"44ab89a0-6082-4895-9f6f-a12739338d17\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"509-A3\", \"capacity\": 1, \"position\": {\"x\": 3269.3486978887263, \"y\": 2090.4775947276876}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:41.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:00.418Z\", \"price_tier_id\": 131}, {\"id\": \"5c3a6c35-c399-4ef4-8d7b-35274e87a17f\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"509-A4\", \"capacity\": 1, \"position\": {\"x\": 3251.671028359063, \"y\": 2072.7999251980236}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:41.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:00.418Z\", \"price_tier_id\": 131}, {\"id\": \"9c2af2a9-a13b-41b5-92f4-e711656c554e\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"509-A5\", \"capacity\": 1, \"position\": {\"x\": 3233.9933588293993, \"y\": 2055.12225566836}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:41.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:00.418Z\", \"price_tier_id\": 131}, {\"id\": \"d2088ca7-92d6-4b35-8666-2a29a2cf5c54\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"509-A6\", \"capacity\": 1, \"position\": {\"x\": 3216.3156892997354, \"y\": 2037.4445861386964}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:41.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:00.418Z\", \"price_tier_id\": 131}, {\"id\": \"3122c19c-5c38-4909-8286-34dbf99ce716\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"509-A7\", \"capacity\": 1, \"position\": {\"x\": 3198.638019770072, \"y\": 2019.7669166090327}, \"arc_angle\": 180, \"direction\": 315, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:41.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:00.418Z\", \"price_tier_id\": 131}, {\"id\": \"a0434292-95d3-4bf3-adaa-d0128940d659\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"509-B1\", \"capacity\": 1, \"position\": {\"x\": 3375.4147150667086, \"y\": 2055.12225566836}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:41.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:00.418Z\", \"price_tier_id\": 131}, {\"id\": \"25b74b62-531d-41bc-86a9-2a1850656a4c\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"509-B2\", \"capacity\": 1, \"position\": {\"x\": 3357.737045537045, \"y\": 2037.4445861386964}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:41.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:00.418Z\", \"price_tier_id\": 131}, {\"id\": \"c21947ec-e09b-46c2-b90a-fc5ff911df56\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"509-B3\", \"capacity\": 1, \"position\": {\"x\": 3340.059376007381, \"y\": 2019.7669166090327}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:41.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:00.418Z\", \"price_tier_id\": 131}, {\"id\": \"d0593972-ad72-4433-980f-2530892168fd\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"509-B4\", \"capacity\": 1, \"position\": {\"x\": 3322.3817064777177, \"y\": 2002.089247079369}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:41.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:00.418Z\", \"price_tier_id\": 131}, {\"id\": \"3dd9995a-4bae-4e89-81c6-fea927ef590f\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"509-B5\", \"capacity\": 1, \"position\": {\"x\": 3304.704036948054, \"y\": 1984.4115775497053}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:41.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:00.418Z\", \"price_tier_id\": 131}, {\"id\": \"7a861603-8bc1-4d19-821a-8cd1684539e0\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"509-B6\", \"capacity\": 1, \"position\": {\"x\": 3287.0263674183902, \"y\": 1966.7339080200416}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:41.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:00.418Z\", \"price_tier_id\": 131}, {\"id\": \"56401d1b-fd59-421a-9547-80d3f1dcab85\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"509-B7\", \"capacity\": 1, \"position\": {\"x\": 3269.3486978887267, \"y\": 1949.0562384903776}, \"arc_angle\": 180, \"direction\": 135, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:48:41.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T10:50:00.418Z\", \"price_tier_id\": 131}]','{\"x\": 3287.0263674183902, \"y\": 1987.4445861386964}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(915,'68931932-8eed-459d-afd0-fa598f15833c','c352c07f-94d1-4a79-bde9-a24ed17e10b0',23,'','509-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3304.7040369480537, \"y\": 2125.832933787015}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(916,'5ed9fec5-d040-4ef5-bba2-210f02ba9ce3','c352c07f-94d1-4a79-bde9-a24ed17e10b0',23,'','509-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3287.0263674183902, \"y\": 2108.155264257351}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(917,'44ab89a0-6082-4895-9f6f-a12739338d17','c352c07f-94d1-4a79-bde9-a24ed17e10b0',23,'','509-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3269.3486978887263, \"y\": 2090.4775947276876}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(918,'5c3a6c35-c399-4ef4-8d7b-35274e87a17f','c352c07f-94d1-4a79-bde9-a24ed17e10b0',23,'','509-A4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3251.671028359063, \"y\": 2072.7999251980236}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(919,'9c2af2a9-a13b-41b5-92f4-e711656c554e','c352c07f-94d1-4a79-bde9-a24ed17e10b0',23,'','509-A5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3233.9933588293993, \"y\": 2055.12225566836}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(920,'d2088ca7-92d6-4b35-8666-2a29a2cf5c54','c352c07f-94d1-4a79-bde9-a24ed17e10b0',23,'','509-A6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3216.3156892997354, \"y\": 2037.4445861386964}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(921,'3122c19c-5c38-4909-8286-34dbf99ce716','c352c07f-94d1-4a79-bde9-a24ed17e10b0',23,'','509-A7','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3198.638019770072, \"y\": 2019.7669166090327}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(922,'a0434292-95d3-4bf3-adaa-d0128940d659','c352c07f-94d1-4a79-bde9-a24ed17e10b0',23,'','509-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3375.4147150667086, \"y\": 2055.12225566836}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(923,'25b74b62-531d-41bc-86a9-2a1850656a4c','c352c07f-94d1-4a79-bde9-a24ed17e10b0',23,'','509-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3357.737045537045, \"y\": 2037.4445861386964}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(924,'c21947ec-e09b-46c2-b90a-fc5ff911df56','c352c07f-94d1-4a79-bde9-a24ed17e10b0',23,'','509-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3340.059376007381, \"y\": 2019.7669166090327}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(925,'d0593972-ad72-4433-980f-2530892168fd','c352c07f-94d1-4a79-bde9-a24ed17e10b0',23,'','509-B4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3322.3817064777177, \"y\": 2002.089247079369}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(926,'3dd9995a-4bae-4e89-81c6-fea927ef590f','c352c07f-94d1-4a79-bde9-a24ed17e10b0',23,'','509-B5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3304.704036948054, \"y\": 1984.4115775497053}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(927,'7a861603-8bc1-4d19-821a-8cd1684539e0','c352c07f-94d1-4a79-bde9-a24ed17e10b0',23,'','509-B6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3287.0263674183902, \"y\": 1966.7339080200416}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(928,'56401d1b-fd59-421a-9547-80d3f1dcab85','c352c07f-94d1-4a79-bde9-a24ed17e10b0',23,'','509-B7','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3269.3486978887267, \"y\": 1949.0562384903776}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(929,'f563a65a-4f62-4f08-ad94-e7be8d4ad814',NULL,23,'','401','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2375.8061133162328, \"y\": 2038.0998663118744}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"996d4344-e079-4c63-9a43-f74dbcca7df5\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"401-A1\", \"capacity\": 1, \"position\": {\"x\": 2325.8061133162328, \"y\": 2113.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:38.813Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.844Z\", \"price_tier_id\": 129}, {\"id\": \"e86ab593-b13c-4d03-af1d-bf249de4f36c\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"401-A2\", \"capacity\": 1, \"position\": {\"x\": 2325.8061133162328, \"y\": 2088.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:38.813Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.844Z\", \"price_tier_id\": 129}, {\"id\": \"f425767c-175d-434a-bbe5-506dc1cd18f1\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"401-A3\", \"capacity\": 1, \"position\": {\"x\": 2325.8061133162328, \"y\": 2063.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:38.813Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.844Z\", \"price_tier_id\": 129}, {\"id\": \"a0db49d1-177f-43e3-afa9-0a09dd216233\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"401-A4\", \"capacity\": 1, \"position\": {\"x\": 2325.8061133162328, \"y\": 2038.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:38.813Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.844Z\", \"price_tier_id\": 129}, {\"id\": \"738f5b30-7fe0-4f59-8e5b-be7e79110a77\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"401-A5\", \"capacity\": 1, \"position\": {\"x\": 2325.8061133162328, \"y\": 2013.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:38.813Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.844Z\", \"price_tier_id\": 129}, {\"id\": \"3131aa9a-d80f-47a9-bd56-0c8b09476993\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"401-A6\", \"capacity\": 1, \"position\": {\"x\": 2325.8061133162328, \"y\": 1988.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:38.813Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.844Z\", \"price_tier_id\": 129}, {\"id\": \"62dbb0b9-4e7d-49b1-93df-050019167d42\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"401-A7\", \"capacity\": 1, \"position\": {\"x\": 2325.8061133162328, \"y\": 1963.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:38.813Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.844Z\", \"price_tier_id\": 129}, {\"id\": \"b23ec860-056b-43a3-9c43-97122561edf1\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"401-B1\", \"capacity\": 1, \"position\": {\"x\": 2425.8061133162328, \"y\": 2113.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:38.813Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.844Z\", \"price_tier_id\": 129}, {\"id\": \"1619de6a-68af-493d-a13d-d91db7d4bbc8\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"401-B2\", \"capacity\": 1, \"position\": {\"x\": 2425.8061133162328, \"y\": 2088.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:38.813Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.844Z\", \"price_tier_id\": 129}, {\"id\": \"6a7754b1-185e-4622-8618-25a758d6e6e1\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"401-B3\", \"capacity\": 1, \"position\": {\"x\": 2425.8061133162328, \"y\": 2063.099866311875}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:38.813Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.844Z\", \"price_tier_id\": 129}, {\"id\": \"55174162-32f9-4fb8-80f8-737e69ee4756\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"401-B4\", \"capacity\": 1, \"position\": {\"x\": 2425.8061133162328, \"y\": 2038.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:38.813Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.844Z\", \"price_tier_id\": 129}, {\"id\": \"a97a3507-0311-42ec-9f59-fa326677e65c\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"401-B5\", \"capacity\": 1, \"position\": {\"x\": 2425.8061133162328, \"y\": 2013.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:38.813Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.844Z\", \"price_tier_id\": 129}, {\"id\": \"2e11fb86-a0e1-4486-8898-1b7bdafa7059\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"401-B6\", \"capacity\": 1, \"position\": {\"x\": 2425.8061133162328, \"y\": 1988.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:38.813Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.844Z\", \"price_tier_id\": 129}, {\"id\": \"62ab8572-4f82-4803-a97d-593e0da45339\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"401-B7\", \"capacity\": 1, \"position\": {\"x\": 2425.8061133162328, \"y\": 1963.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:38.813Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.844Z\", \"price_tier_id\": 129}]','{\"x\": 2375.8061133162328, \"y\": 2038.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(930,'996d4344-e079-4c63-9a43-f74dbcca7df5','f563a65a-4f62-4f08-ad94-e7be8d4ad814',23,'','401-A1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2325.8061133162328, \"y\": 2113.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(931,'e86ab593-b13c-4d03-af1d-bf249de4f36c','f563a65a-4f62-4f08-ad94-e7be8d4ad814',23,'','401-A2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2325.8061133162328, \"y\": 2088.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(932,'f425767c-175d-434a-bbe5-506dc1cd18f1','f563a65a-4f62-4f08-ad94-e7be8d4ad814',23,'','401-A3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2325.8061133162328, \"y\": 2063.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(933,'a0db49d1-177f-43e3-afa9-0a09dd216233','f563a65a-4f62-4f08-ad94-e7be8d4ad814',23,'','401-A4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2325.8061133162328, \"y\": 2038.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(934,'738f5b30-7fe0-4f59-8e5b-be7e79110a77','f563a65a-4f62-4f08-ad94-e7be8d4ad814',23,'','401-A5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2325.8061133162328, \"y\": 2013.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(935,'3131aa9a-d80f-47a9-bd56-0c8b09476993','f563a65a-4f62-4f08-ad94-e7be8d4ad814',23,'','401-A6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2325.8061133162328, \"y\": 1988.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(936,'62dbb0b9-4e7d-49b1-93df-050019167d42','f563a65a-4f62-4f08-ad94-e7be8d4ad814',23,'','401-A7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2325.8061133162328, \"y\": 1963.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(937,'b23ec860-056b-43a3-9c43-97122561edf1','f563a65a-4f62-4f08-ad94-e7be8d4ad814',23,'','401-B1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2425.8061133162328, \"y\": 2113.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(938,'1619de6a-68af-493d-a13d-d91db7d4bbc8','f563a65a-4f62-4f08-ad94-e7be8d4ad814',23,'','401-B2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2425.8061133162328, \"y\": 2088.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(939,'6a7754b1-185e-4622-8618-25a758d6e6e1','f563a65a-4f62-4f08-ad94-e7be8d4ad814',23,'','401-B3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2425.8061133162328, \"y\": 2063.099866311875}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(940,'55174162-32f9-4fb8-80f8-737e69ee4756','f563a65a-4f62-4f08-ad94-e7be8d4ad814',23,'','401-B4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2425.8061133162328, \"y\": 2038.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(941,'a97a3507-0311-42ec-9f59-fa326677e65c','f563a65a-4f62-4f08-ad94-e7be8d4ad814',23,'','401-B5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2425.8061133162328, \"y\": 2013.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(942,'2e11fb86-a0e1-4486-8898-1b7bdafa7059','f563a65a-4f62-4f08-ad94-e7be8d4ad814',23,'','401-B6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2425.8061133162328, \"y\": 1988.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(943,'62ab8572-4f82-4803-a97d-593e0da45339','f563a65a-4f62-4f08-ad94-e7be8d4ad814',23,'','401-B7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2425.8061133162328, \"y\": 1963.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(944,'9dca84c9-b19c-40f7-b60e-f8a9ff9cbef2',NULL,23,'','402','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2511.814583998479, \"y\": 2038.0998663118744}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"cca07cf3-6837-46bd-aa34-c4560c63ae6d\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"402-A1\", \"capacity\": 1, \"position\": {\"x\": 2461.814583998479, \"y\": 2113.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.485Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.860Z\", \"price_tier_id\": 129}, {\"id\": \"c1a0b909-b7ed-4e91-a77c-9b98b0c202c4\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"402-A2\", \"capacity\": 1, \"position\": {\"x\": 2461.814583998479, \"y\": 2088.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.485Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.860Z\", \"price_tier_id\": 129}, {\"id\": \"6920973f-adea-466b-b9da-3a92fcf77724\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"402-A3\", \"capacity\": 1, \"position\": {\"x\": 2461.814583998479, \"y\": 2063.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.485Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.860Z\", \"price_tier_id\": 129}, {\"id\": \"76887c2d-a7dd-41c2-818d-729a1167f1ba\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"402-A4\", \"capacity\": 1, \"position\": {\"x\": 2461.814583998479, \"y\": 2038.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.485Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.860Z\", \"price_tier_id\": 129}, {\"id\": \"95614a7c-4fcb-472d-bffd-66a8c3a2ea60\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"402-A5\", \"capacity\": 1, \"position\": {\"x\": 2461.814583998479, \"y\": 2013.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.485Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.860Z\", \"price_tier_id\": 129}, {\"id\": \"dff410b4-491b-48a5-aef3-fd0427aac156\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"402-A6\", \"capacity\": 1, \"position\": {\"x\": 2461.814583998479, \"y\": 1988.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.485Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.860Z\", \"price_tier_id\": 129}, {\"id\": \"1cc9fc57-6814-417b-9027-226492ba10ee\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"402-A7\", \"capacity\": 1, \"position\": {\"x\": 2461.814583998479, \"y\": 1963.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.485Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.860Z\", \"price_tier_id\": 129}, {\"id\": \"d2afff4f-d372-44db-b8c3-e50a4538c0ed\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"402-B1\", \"capacity\": 1, \"position\": {\"x\": 2561.814583998479, \"y\": 2113.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.485Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.860Z\", \"price_tier_id\": 129}, {\"id\": \"0ee4dc90-99b3-4910-8edd-f7a6e07279dc\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"402-B2\", \"capacity\": 1, \"position\": {\"x\": 2561.814583998479, \"y\": 2088.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.485Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.860Z\", \"price_tier_id\": 129}, {\"id\": \"68824d76-aa91-40d2-9fcd-bbf6b4dc5b57\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"402-B3\", \"capacity\": 1, \"position\": {\"x\": 2561.814583998479, \"y\": 2063.099866311875}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.485Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.860Z\", \"price_tier_id\": 129}, {\"id\": \"3dab5a08-d040-45c7-8fc6-60f5a4afafc7\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"402-B4\", \"capacity\": 1, \"position\": {\"x\": 2561.814583998479, \"y\": 2038.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.485Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.860Z\", \"price_tier_id\": 129}, {\"id\": \"6f208971-65a0-45bc-9c08-2e86bf9e6eca\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"402-B5\", \"capacity\": 1, \"position\": {\"x\": 2561.814583998479, \"y\": 2013.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.485Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.860Z\", \"price_tier_id\": 129}, {\"id\": \"fd15a527-8d9d-4a18-ae40-2e22793a8ba8\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"402-B6\", \"capacity\": 1, \"position\": {\"x\": 2561.814583998479, \"y\": 1988.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.485Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.860Z\", \"price_tier_id\": 129}, {\"id\": \"061faf06-41bb-4ced-b41d-bf2c272f1dd2\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"402-B7\", \"capacity\": 1, \"position\": {\"x\": 2561.814583998479, \"y\": 1963.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.485Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:01.860Z\", \"price_tier_id\": 129}]','{\"x\": 2511.814583998479, \"y\": 2038.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(945,'cca07cf3-6837-46bd-aa34-c4560c63ae6d','9dca84c9-b19c-40f7-b60e-f8a9ff9cbef2',23,'','402-A1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2461.814583998479, \"y\": 2113.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(946,'c1a0b909-b7ed-4e91-a77c-9b98b0c202c4','9dca84c9-b19c-40f7-b60e-f8a9ff9cbef2',23,'','402-A2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2461.814583998479, \"y\": 2088.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(947,'6920973f-adea-466b-b9da-3a92fcf77724','9dca84c9-b19c-40f7-b60e-f8a9ff9cbef2',23,'','402-A3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2461.814583998479, \"y\": 2063.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(948,'76887c2d-a7dd-41c2-818d-729a1167f1ba','9dca84c9-b19c-40f7-b60e-f8a9ff9cbef2',23,'','402-A4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2461.814583998479, \"y\": 2038.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(949,'95614a7c-4fcb-472d-bffd-66a8c3a2ea60','9dca84c9-b19c-40f7-b60e-f8a9ff9cbef2',23,'','402-A5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2461.814583998479, \"y\": 2013.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(950,'dff410b4-491b-48a5-aef3-fd0427aac156','9dca84c9-b19c-40f7-b60e-f8a9ff9cbef2',23,'','402-A6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2461.814583998479, \"y\": 1988.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(951,'1cc9fc57-6814-417b-9027-226492ba10ee','9dca84c9-b19c-40f7-b60e-f8a9ff9cbef2',23,'','402-A7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2461.814583998479, \"y\": 1963.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(952,'d2afff4f-d372-44db-b8c3-e50a4538c0ed','9dca84c9-b19c-40f7-b60e-f8a9ff9cbef2',23,'','402-B1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2561.814583998479, \"y\": 2113.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(953,'0ee4dc90-99b3-4910-8edd-f7a6e07279dc','9dca84c9-b19c-40f7-b60e-f8a9ff9cbef2',23,'','402-B2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2561.814583998479, \"y\": 2088.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(954,'68824d76-aa91-40d2-9fcd-bbf6b4dc5b57','9dca84c9-b19c-40f7-b60e-f8a9ff9cbef2',23,'','402-B3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2561.814583998479, \"y\": 2063.099866311875}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(955,'3dab5a08-d040-45c7-8fc6-60f5a4afafc7','9dca84c9-b19c-40f7-b60e-f8a9ff9cbef2',23,'','402-B4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2561.814583998479, \"y\": 2038.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(956,'6f208971-65a0-45bc-9c08-2e86bf9e6eca','9dca84c9-b19c-40f7-b60e-f8a9ff9cbef2',23,'','402-B5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2561.814583998479, \"y\": 2013.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(957,'fd15a527-8d9d-4a18-ae40-2e22793a8ba8','9dca84c9-b19c-40f7-b60e-f8a9ff9cbef2',23,'','402-B6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2561.814583998479, \"y\": 1988.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(958,'061faf06-41bb-4ced-b41d-bf2c272f1dd2','9dca84c9-b19c-40f7-b60e-f8a9ff9cbef2',23,'','402-B7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2561.814583998479, \"y\": 1963.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(959,'c3f544f5-22e1-4f07-9fb1-04dcbe473d94',NULL,23,'','403','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2647.823054680726, \"y\": 2038.0998663118744}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"c067c602-a40a-4827-bbf2-d2b697384c43\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"403-A1\", \"capacity\": 1, \"position\": {\"x\": 2597.823054680726, \"y\": 2113.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.954Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:15.412Z\", \"price_tier_id\": 129}, {\"id\": \"5e2f9536-f9f1-416d-926d-db9fb883a43d\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"403-A2\", \"capacity\": 1, \"position\": {\"x\": 2597.823054680726, \"y\": 2088.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.954Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:15.412Z\", \"price_tier_id\": 129}, {\"id\": \"cf57db5a-8006-4f43-beed-2791ca8d8040\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"403-A3\", \"capacity\": 1, \"position\": {\"x\": 2597.823054680726, \"y\": 2063.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.954Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:15.412Z\", \"price_tier_id\": 129}, {\"id\": \"8ae451be-fcbc-4e86-891f-159a8e5e3492\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"403-A4\", \"capacity\": 1, \"position\": {\"x\": 2597.823054680726, \"y\": 2038.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.954Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:15.412Z\", \"price_tier_id\": 129}, {\"id\": \"1be624b8-7b84-42ce-8d9a-bdbd61db5d1b\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"403-A5\", \"capacity\": 1, \"position\": {\"x\": 2597.823054680726, \"y\": 2013.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.954Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:15.412Z\", \"price_tier_id\": 129}, {\"id\": \"aafed6f6-d6bc-4edc-84d6-8324d8d24d08\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"403-A6\", \"capacity\": 1, \"position\": {\"x\": 2597.823054680726, \"y\": 1988.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.954Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:15.412Z\", \"price_tier_id\": 129}, {\"id\": \"890382e7-f244-454c-8507-47bd6818092a\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"403-A7\", \"capacity\": 1, \"position\": {\"x\": 2597.823054680726, \"y\": 1963.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.954Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:15.412Z\", \"price_tier_id\": 129}, {\"id\": \"a7b61f3e-f19a-4107-980b-7c05f7391c8a\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"403-B1\", \"capacity\": 1, \"position\": {\"x\": 2697.823054680726, \"y\": 2113.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.954Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:15.412Z\", \"price_tier_id\": 129}, {\"id\": \"8f8a56d9-c037-4ad1-8798-18a40e6733ae\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"403-B2\", \"capacity\": 1, \"position\": {\"x\": 2697.823054680726, \"y\": 2088.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.954Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:15.412Z\", \"price_tier_id\": 129}, {\"id\": \"72ef1533-b99a-4e95-9974-b9abff581e03\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"403-B3\", \"capacity\": 1, \"position\": {\"x\": 2697.823054680726, \"y\": 2063.099866311875}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.954Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:15.412Z\", \"price_tier_id\": 129}, {\"id\": \"0ae7df83-fd9a-4f63-aec6-61f05a8f1fde\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"403-B4\", \"capacity\": 1, \"position\": {\"x\": 2697.823054680726, \"y\": 2038.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.954Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:15.412Z\", \"price_tier_id\": 129}, {\"id\": \"55873872-c1b5-4fc4-bcde-e2266b8175d6\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"403-B5\", \"capacity\": 1, \"position\": {\"x\": 2697.823054680726, \"y\": 2013.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.954Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:15.412Z\", \"price_tier_id\": 129}, {\"id\": \"6d6649c8-c36b-4628-937b-fa932ad71c5f\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"403-B6\", \"capacity\": 1, \"position\": {\"x\": 2697.823054680726, \"y\": 1988.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.954Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:15.412Z\", \"price_tier_id\": 129}, {\"id\": \"c1208a7c-56bd-4dea-ab42-0c038dc88bd9\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"403-B7\", \"capacity\": 1, \"position\": {\"x\": 2697.823054680726, \"y\": 1963.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:39.954Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:15.412Z\", \"price_tier_id\": 129}]','{\"x\": 2647.823054680726, \"y\": 2038.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(960,'c067c602-a40a-4827-bbf2-d2b697384c43','c3f544f5-22e1-4f07-9fb1-04dcbe473d94',23,'','403-A1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2597.823054680726, \"y\": 2113.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(961,'5e2f9536-f9f1-416d-926d-db9fb883a43d','c3f544f5-22e1-4f07-9fb1-04dcbe473d94',23,'','403-A2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2597.823054680726, \"y\": 2088.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(962,'cf57db5a-8006-4f43-beed-2791ca8d8040','c3f544f5-22e1-4f07-9fb1-04dcbe473d94',23,'','403-A3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2597.823054680726, \"y\": 2063.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(963,'8ae451be-fcbc-4e86-891f-159a8e5e3492','c3f544f5-22e1-4f07-9fb1-04dcbe473d94',23,'','403-A4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2597.823054680726, \"y\": 2038.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(964,'1be624b8-7b84-42ce-8d9a-bdbd61db5d1b','c3f544f5-22e1-4f07-9fb1-04dcbe473d94',23,'','403-A5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2597.823054680726, \"y\": 2013.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(965,'aafed6f6-d6bc-4edc-84d6-8324d8d24d08','c3f544f5-22e1-4f07-9fb1-04dcbe473d94',23,'','403-A6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2597.823054680726, \"y\": 1988.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(966,'890382e7-f244-454c-8507-47bd6818092a','c3f544f5-22e1-4f07-9fb1-04dcbe473d94',23,'','403-A7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2597.823054680726, \"y\": 1963.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(967,'a7b61f3e-f19a-4107-980b-7c05f7391c8a','c3f544f5-22e1-4f07-9fb1-04dcbe473d94',23,'','403-B1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2697.823054680726, \"y\": 2113.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(968,'8f8a56d9-c037-4ad1-8798-18a40e6733ae','c3f544f5-22e1-4f07-9fb1-04dcbe473d94',23,'','403-B2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2697.823054680726, \"y\": 2088.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(969,'72ef1533-b99a-4e95-9974-b9abff581e03','c3f544f5-22e1-4f07-9fb1-04dcbe473d94',23,'','403-B3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2697.823054680726, \"y\": 2063.099866311875}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(970,'0ae7df83-fd9a-4f63-aec6-61f05a8f1fde','c3f544f5-22e1-4f07-9fb1-04dcbe473d94',23,'','403-B4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2697.823054680726, \"y\": 2038.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(971,'55873872-c1b5-4fc4-bcde-e2266b8175d6','c3f544f5-22e1-4f07-9fb1-04dcbe473d94',23,'','403-B5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2697.823054680726, \"y\": 2013.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(972,'6d6649c8-c36b-4628-937b-fa932ad71c5f','c3f544f5-22e1-4f07-9fb1-04dcbe473d94',23,'','403-B6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2697.823054680726, \"y\": 1988.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(973,'c1208a7c-56bd-4dea-ab42-0c038dc88bd9','c3f544f5-22e1-4f07-9fb1-04dcbe473d94',23,'','403-B7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2697.823054680726, \"y\": 1963.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(974,'f2a63602-ddaf-468d-ab02-0393872d2003',NULL,23,'','404','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2783.8315253629717, \"y\": 2038.0998663118744}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"5b0c913a-61c4-4dd0-b795-cfec969295f8\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"404-A1\", \"capacity\": 1, \"position\": {\"x\": 2733.8315253629717, \"y\": 2113.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:40.385Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:13.269Z\", \"price_tier_id\": 129}, {\"id\": \"e37021cd-031e-4c73-ac90-0d910400009f\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"404-A2\", \"capacity\": 1, \"position\": {\"x\": 2733.8315253629717, \"y\": 2088.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:40.385Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:13.269Z\", \"price_tier_id\": 129}, {\"id\": \"b7b744f4-06b3-4a9c-942a-e00dc21058da\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"404-A3\", \"capacity\": 1, \"position\": {\"x\": 2733.8315253629717, \"y\": 2063.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:40.385Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:13.269Z\", \"price_tier_id\": 129}, {\"id\": \"3d8c200b-4c8a-43e0-be0f-fdef0789c9b6\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"404-A4\", \"capacity\": 1, \"position\": {\"x\": 2733.8315253629717, \"y\": 2038.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:40.385Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:13.269Z\", \"price_tier_id\": 129}, {\"id\": \"f62f6874-38d8-4efb-921c-d47d0606d0ea\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"404-A5\", \"capacity\": 1, \"position\": {\"x\": 2733.8315253629717, \"y\": 2013.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:40.385Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:13.269Z\", \"price_tier_id\": 129}, {\"id\": \"479c6054-7b8c-428f-8022-65b285feae29\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"404-A6\", \"capacity\": 1, \"position\": {\"x\": 2733.8315253629717, \"y\": 1988.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:40.385Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:13.269Z\", \"price_tier_id\": 129}, {\"id\": \"28286cde-900e-4ce7-89d6-e140588a083b\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"404-A7\", \"capacity\": 1, \"position\": {\"x\": 2733.8315253629717, \"y\": 1963.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:40.385Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:13.269Z\", \"price_tier_id\": 129}, {\"id\": \"653a6ce6-943d-47cd-9603-26c4b7112ca2\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"404-B1\", \"capacity\": 1, \"position\": {\"x\": 2833.8315253629717, \"y\": 2113.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:40.385Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:13.269Z\", \"price_tier_id\": 129}, {\"id\": \"523799ef-fb15-42f6-ab23-aea567dc3d28\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"404-B2\", \"capacity\": 1, \"position\": {\"x\": 2833.8315253629717, \"y\": 2088.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:40.385Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:13.269Z\", \"price_tier_id\": 129}, {\"id\": \"25003090-a50e-4ea8-802a-42291237e566\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"404-B3\", \"capacity\": 1, \"position\": {\"x\": 2833.8315253629717, \"y\": 2063.099866311875}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:40.385Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:13.269Z\", \"price_tier_id\": 129}, {\"id\": \"0562daa4-928a-4501-892a-5f9226bc0da7\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"404-B4\", \"capacity\": 1, \"position\": {\"x\": 2833.8315253629717, \"y\": 2038.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:40.385Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:13.269Z\", \"price_tier_id\": 129}, {\"id\": \"8f8281bc-5452-4d5e-8375-605d1c176001\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"404-B5\", \"capacity\": 1, \"position\": {\"x\": 2833.8315253629717, \"y\": 2013.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:40.385Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:13.269Z\", \"price_tier_id\": 129}, {\"id\": \"c2b03da5-eeb3-4b2f-8640-d806c2789e31\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"404-B6\", \"capacity\": 1, \"position\": {\"x\": 2833.8315253629717, \"y\": 1988.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:40.385Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:13.269Z\", \"price_tier_id\": 129}, {\"id\": \"74e35953-f2fc-4b80-8013-4db5969aa171\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"404-B7\", \"capacity\": 1, \"position\": {\"x\": 2833.8315253629717, \"y\": 1963.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:40.385Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:13.269Z\", \"price_tier_id\": 129}]','{\"x\": 2783.8315253629717, \"y\": 2038.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(975,'5b0c913a-61c4-4dd0-b795-cfec969295f8','f2a63602-ddaf-468d-ab02-0393872d2003',23,'','404-A1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2733.8315253629717, \"y\": 2113.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(976,'e37021cd-031e-4c73-ac90-0d910400009f','f2a63602-ddaf-468d-ab02-0393872d2003',23,'','404-A2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2733.8315253629717, \"y\": 2088.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(977,'b7b744f4-06b3-4a9c-942a-e00dc21058da','f2a63602-ddaf-468d-ab02-0393872d2003',23,'','404-A3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2733.8315253629717, \"y\": 2063.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(978,'3d8c200b-4c8a-43e0-be0f-fdef0789c9b6','f2a63602-ddaf-468d-ab02-0393872d2003',23,'','404-A4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2733.8315253629717, \"y\": 2038.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(979,'f62f6874-38d8-4efb-921c-d47d0606d0ea','f2a63602-ddaf-468d-ab02-0393872d2003',23,'','404-A5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2733.8315253629717, \"y\": 2013.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(980,'479c6054-7b8c-428f-8022-65b285feae29','f2a63602-ddaf-468d-ab02-0393872d2003',23,'','404-A6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2733.8315253629717, \"y\": 1988.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(981,'28286cde-900e-4ce7-89d6-e140588a083b','f2a63602-ddaf-468d-ab02-0393872d2003',23,'','404-A7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2733.8315253629717, \"y\": 1963.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(982,'653a6ce6-943d-47cd-9603-26c4b7112ca2','f2a63602-ddaf-468d-ab02-0393872d2003',23,'','404-B1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2833.8315253629717, \"y\": 2113.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(983,'523799ef-fb15-42f6-ab23-aea567dc3d28','f2a63602-ddaf-468d-ab02-0393872d2003',23,'','404-B2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2833.8315253629717, \"y\": 2088.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(984,'25003090-a50e-4ea8-802a-42291237e566','f2a63602-ddaf-468d-ab02-0393872d2003',23,'','404-B3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2833.8315253629717, \"y\": 2063.099866311875}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(985,'0562daa4-928a-4501-892a-5f9226bc0da7','f2a63602-ddaf-468d-ab02-0393872d2003',23,'','404-B4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2833.8315253629717, \"y\": 2038.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(986,'8f8281bc-5452-4d5e-8375-605d1c176001','f2a63602-ddaf-468d-ab02-0393872d2003',23,'','404-B5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2833.8315253629717, \"y\": 2013.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(987,'c2b03da5-eeb3-4b2f-8640-d806c2789e31','f2a63602-ddaf-468d-ab02-0393872d2003',23,'','404-B6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2833.8315253629717, \"y\": 1988.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(988,'74e35953-f2fc-4b80-8013-4db5969aa171','f2a63602-ddaf-468d-ab02-0393872d2003',23,'','404-B7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2833.8315253629717, \"y\": 1963.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(989,'665b8995-1871-484a-ae56-9e80cfcc4acd',NULL,23,'','405','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2919.839996045218, \"y\": 2038.0998663118744}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"659a52fe-5a25-4185-b009-6c31c6beb59d\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"405-A1\", \"capacity\": 1, \"position\": {\"x\": 2869.839996045218, \"y\": 2113.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.079Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:12.068Z\", \"price_tier_id\": 129}, {\"id\": \"3de8b00a-7572-4a89-8256-c23be0e38508\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"405-A2\", \"capacity\": 1, \"position\": {\"x\": 2869.839996045218, \"y\": 2088.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.079Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:12.068Z\", \"price_tier_id\": 129}, {\"id\": \"85b0495e-7548-468a-9b5e-0ed10eefad0f\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"405-A3\", \"capacity\": 1, \"position\": {\"x\": 2869.839996045218, \"y\": 2063.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.079Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:12.068Z\", \"price_tier_id\": 129}, {\"id\": \"bae4c4e5-77f6-42db-b043-d1b88010c4bd\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"405-A4\", \"capacity\": 1, \"position\": {\"x\": 2869.839996045218, \"y\": 2038.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.079Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:12.068Z\", \"price_tier_id\": 129}, {\"id\": \"88218093-daf7-406a-b72d-9951ee8876c3\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"405-A5\", \"capacity\": 1, \"position\": {\"x\": 2869.839996045218, \"y\": 2013.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.079Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:12.068Z\", \"price_tier_id\": 129}, {\"id\": \"df947f57-eaf7-4c0d-a466-ed7974fd89d8\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"405-A6\", \"capacity\": 1, \"position\": {\"x\": 2869.839996045218, \"y\": 1988.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.079Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:12.068Z\", \"price_tier_id\": 129}, {\"id\": \"bf86e69a-e881-4c15-97a1-962e23631cc7\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"405-A7\", \"capacity\": 1, \"position\": {\"x\": 2869.839996045218, \"y\": 1963.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.079Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:12.068Z\", \"price_tier_id\": 129}, {\"id\": \"dc52a093-7176-4ffe-866e-5be3f65cce7e\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"405-B1\", \"capacity\": 1, \"position\": {\"x\": 2969.839996045218, \"y\": 2113.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.079Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:12.068Z\", \"price_tier_id\": 129}, {\"id\": \"dff4a2e4-dc73-4fe4-a0bb-2d26b57f3e6b\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"405-B2\", \"capacity\": 1, \"position\": {\"x\": 2969.839996045218, \"y\": 2088.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.079Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:12.068Z\", \"price_tier_id\": 129}, {\"id\": \"5c437899-7b37-44d3-9d74-f9404332719b\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"405-B3\", \"capacity\": 1, \"position\": {\"x\": 2969.839996045218, \"y\": 2063.099866311875}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.079Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:12.068Z\", \"price_tier_id\": 129}, {\"id\": \"2c5a8b65-46ef-4b95-ac47-2c8112c70925\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"405-B4\", \"capacity\": 1, \"position\": {\"x\": 2969.839996045218, \"y\": 2038.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.079Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:12.068Z\", \"price_tier_id\": 129}, {\"id\": \"7d4d3e95-c0db-421b-8d33-e60344fba4b0\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"405-B5\", \"capacity\": 1, \"position\": {\"x\": 2969.839996045218, \"y\": 2013.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.079Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:12.068Z\", \"price_tier_id\": 129}, {\"id\": \"4763992c-6966-4cab-a741-5909e533ff9a\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"405-B6\", \"capacity\": 1, \"position\": {\"x\": 2969.839996045218, \"y\": 1988.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.079Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:12.068Z\", \"price_tier_id\": 129}, {\"id\": \"9d268698-9f49-497f-b4e2-07eb611849d3\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"405-B7\", \"capacity\": 1, \"position\": {\"x\": 2969.839996045218, \"y\": 1963.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.079Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:12.068Z\", \"price_tier_id\": 129}]','{\"x\": 2919.839996045218, \"y\": 2038.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(990,'659a52fe-5a25-4185-b009-6c31c6beb59d','665b8995-1871-484a-ae56-9e80cfcc4acd',23,'','405-A1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2869.839996045218, \"y\": 2113.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(991,'3de8b00a-7572-4a89-8256-c23be0e38508','665b8995-1871-484a-ae56-9e80cfcc4acd',23,'','405-A2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2869.839996045218, \"y\": 2088.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(992,'85b0495e-7548-468a-9b5e-0ed10eefad0f','665b8995-1871-484a-ae56-9e80cfcc4acd',23,'','405-A3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2869.839996045218, \"y\": 2063.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(993,'bae4c4e5-77f6-42db-b043-d1b88010c4bd','665b8995-1871-484a-ae56-9e80cfcc4acd',23,'','405-A4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2869.839996045218, \"y\": 2038.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(994,'88218093-daf7-406a-b72d-9951ee8876c3','665b8995-1871-484a-ae56-9e80cfcc4acd',23,'','405-A5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2869.839996045218, \"y\": 2013.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(995,'df947f57-eaf7-4c0d-a466-ed7974fd89d8','665b8995-1871-484a-ae56-9e80cfcc4acd',23,'','405-A6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2869.839996045218, \"y\": 1988.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(996,'bf86e69a-e881-4c15-97a1-962e23631cc7','665b8995-1871-484a-ae56-9e80cfcc4acd',23,'','405-A7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2869.839996045218, \"y\": 1963.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(997,'dc52a093-7176-4ffe-866e-5be3f65cce7e','665b8995-1871-484a-ae56-9e80cfcc4acd',23,'','405-B1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2969.839996045218, \"y\": 2113.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(998,'dff4a2e4-dc73-4fe4-a0bb-2d26b57f3e6b','665b8995-1871-484a-ae56-9e80cfcc4acd',23,'','405-B2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2969.839996045218, \"y\": 2088.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(999,'5c437899-7b37-44d3-9d74-f9404332719b','665b8995-1871-484a-ae56-9e80cfcc4acd',23,'','405-B3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2969.839996045218, \"y\": 2063.099866311875}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1000,'2c5a8b65-46ef-4b95-ac47-2c8112c70925','665b8995-1871-484a-ae56-9e80cfcc4acd',23,'','405-B4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2969.839996045218, \"y\": 2038.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1001,'7d4d3e95-c0db-421b-8d33-e60344fba4b0','665b8995-1871-484a-ae56-9e80cfcc4acd',23,'','405-B5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2969.839996045218, \"y\": 2013.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1002,'4763992c-6966-4cab-a741-5909e533ff9a','665b8995-1871-484a-ae56-9e80cfcc4acd',23,'','405-B6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2969.839996045218, \"y\": 1988.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1003,'9d268698-9f49-497f-b4e2-07eb611849d3','665b8995-1871-484a-ae56-9e80cfcc4acd',23,'','405-B7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 2969.839996045218, \"y\": 1963.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1004,'f0538845-4ad2-4c10-8043-d5c1776cb91e',NULL,23,'','406','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 3055.8484667274643, \"y\": 2038.0998663118744}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 14, \"seat_spacing\": 25}','[{\"id\": \"98d4e056-5df8-4151-bb5f-d693d966328a\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"406-A1\", \"capacity\": 1, \"position\": {\"x\": 3005.8484667274643, \"y\": 2113.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.671Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:10.626Z\", \"price_tier_id\": 129}, {\"id\": \"03b82b2a-f75f-4b57-84db-9f64d55f9938\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"406-A2\", \"capacity\": 1, \"position\": {\"x\": 3005.8484667274643, \"y\": 2088.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.671Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:10.626Z\", \"price_tier_id\": 129}, {\"id\": \"c24ae0d1-9abb-4221-b0f9-6a54b7e85e95\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"406-A3\", \"capacity\": 1, \"position\": {\"x\": 3005.8484667274643, \"y\": 2063.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.671Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:10.626Z\", \"price_tier_id\": 129}, {\"id\": \"94cf4ce7-9a8a-4cf9-b221-56ba54c927e7\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"406-A4\", \"capacity\": 1, \"position\": {\"x\": 3005.8484667274643, \"y\": 2038.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.671Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:10.626Z\", \"price_tier_id\": 129}, {\"id\": \"23c39ee0-bcbd-4b9e-807d-0c9386a005fc\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"406-A5\", \"capacity\": 1, \"position\": {\"x\": 3005.8484667274643, \"y\": 2013.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.671Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:10.626Z\", \"price_tier_id\": 129}, {\"id\": \"01285efb-71bc-44df-bdd1-df3ed96ec52f\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"406-A6\", \"capacity\": 1, \"position\": {\"x\": 3005.8484667274643, \"y\": 1988.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.671Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:10.626Z\", \"price_tier_id\": 129}, {\"id\": \"11a63ec5-b1c8-4c1b-bf4c-82b006f7821b\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"406-A7\", \"capacity\": 1, \"position\": {\"x\": 3005.8484667274643, \"y\": 1963.0998663118744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.671Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:10.626Z\", \"price_tier_id\": 129}, {\"id\": \"65d37a05-be70-4317-9588-bdd70cdcffd7\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"406-B1\", \"capacity\": 1, \"position\": {\"x\": 3105.8484667274643, \"y\": 2113.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.671Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:10.626Z\", \"price_tier_id\": 129}, {\"id\": \"d8f47410-ac76-43b0-a2c2-db158dc1d449\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"406-B2\", \"capacity\": 1, \"position\": {\"x\": 3105.8484667274643, \"y\": 2088.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.671Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:10.626Z\", \"price_tier_id\": 129}, {\"id\": \"ea37e71c-2815-415f-a61c-8292ece8397c\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"406-B3\", \"capacity\": 1, \"position\": {\"x\": 3105.8484667274643, \"y\": 2063.099866311875}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.671Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:10.626Z\", \"price_tier_id\": 129}, {\"id\": \"6354e2e3-0142-474a-9c82-e8ab7caae718\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"406-B4\", \"capacity\": 1, \"position\": {\"x\": 3105.8484667274643, \"y\": 2038.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.671Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:10.626Z\", \"price_tier_id\": 129}, {\"id\": \"704ba9df-f360-4ff4-a775-91cf24570943\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"406-B5\", \"capacity\": 1, \"position\": {\"x\": 3105.8484667274643, \"y\": 2013.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.671Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:10.626Z\", \"price_tier_id\": 129}, {\"id\": \"0ec0cc97-cf25-49a5-b386-430c8b7b557d\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"406-B6\", \"capacity\": 1, \"position\": {\"x\": 3105.8484667274643, \"y\": 1988.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.671Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:10.626Z\", \"price_tier_id\": 129}, {\"id\": \"85104f40-168c-4006-b2b2-b7f319391181\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"406-B7\", \"capacity\": 1, \"position\": {\"x\": 3105.8484667274643, \"y\": 1963.0998663118744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:41.671Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:10.626Z\", \"price_tier_id\": 129}]','{\"x\": 3055.8484667274643, \"y\": 2038.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1005,'98d4e056-5df8-4151-bb5f-d693d966328a','f0538845-4ad2-4c10-8043-d5c1776cb91e',23,'','406-A1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 3005.8484667274643, \"y\": 2113.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1006,'03b82b2a-f75f-4b57-84db-9f64d55f9938','f0538845-4ad2-4c10-8043-d5c1776cb91e',23,'','406-A2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 3005.8484667274643, \"y\": 2088.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1007,'c24ae0d1-9abb-4221-b0f9-6a54b7e85e95','f0538845-4ad2-4c10-8043-d5c1776cb91e',23,'','406-A3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 3005.8484667274643, \"y\": 2063.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1008,'94cf4ce7-9a8a-4cf9-b221-56ba54c927e7','f0538845-4ad2-4c10-8043-d5c1776cb91e',23,'','406-A4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 3005.8484667274643, \"y\": 2038.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1009,'23c39ee0-bcbd-4b9e-807d-0c9386a005fc','f0538845-4ad2-4c10-8043-d5c1776cb91e',23,'','406-A5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 3005.8484667274643, \"y\": 2013.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1010,'01285efb-71bc-44df-bdd1-df3ed96ec52f','f0538845-4ad2-4c10-8043-d5c1776cb91e',23,'','406-A6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 3005.8484667274643, \"y\": 1988.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1011,'11a63ec5-b1c8-4c1b-bf4c-82b006f7821b','f0538845-4ad2-4c10-8043-d5c1776cb91e',23,'','406-A7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 3005.8484667274643, \"y\": 1963.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1012,'65d37a05-be70-4317-9588-bdd70cdcffd7','f0538845-4ad2-4c10-8043-d5c1776cb91e',23,'','406-B1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 3105.8484667274643, \"y\": 2113.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1013,'d8f47410-ac76-43b0-a2c2-db158dc1d449','f0538845-4ad2-4c10-8043-d5c1776cb91e',23,'','406-B2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 3105.8484667274643, \"y\": 2088.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1014,'ea37e71c-2815-415f-a61c-8292ece8397c','f0538845-4ad2-4c10-8043-d5c1776cb91e',23,'','406-B3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 3105.8484667274643, \"y\": 2063.099866311875}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1015,'6354e2e3-0142-474a-9c82-e8ab7caae718','f0538845-4ad2-4c10-8043-d5c1776cb91e',23,'','406-B4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 3105.8484667274643, \"y\": 2038.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1016,'704ba9df-f360-4ff4-a775-91cf24570943','f0538845-4ad2-4c10-8043-d5c1776cb91e',23,'','406-B5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 3105.8484667274643, \"y\": 2013.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1017,'0ec0cc97-cf25-49a5-b386-430c8b7b557d','f0538845-4ad2-4c10-8043-d5c1776cb91e',23,'','406-B6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 3105.8484667274643, \"y\": 1988.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1018,'85104f40-168c-4006-b2b2-b7f319391181','f0538845-4ad2-4c10-8043-d5c1776cb91e',23,'','406-B7','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 3105.8484667274643, \"y\": 1963.0998663118744}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1019,'168e02bc-5838-480b-b8a9-969cd91e22a1',NULL,23,'','407','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2329.348872644609, \"y\": 2318.3793911577695}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"d0801410-6c67-46ec-b58f-4ad0587f5bf0\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"407-A1\", \"capacity\": 1, \"position\": {\"x\": 2279.348872644609, \"y\": 2389.807962586341}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:45.550Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"99fdd1cd-a7e4-4dc2-90a8-3baa8913c5bb\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"407-A2\", \"capacity\": 1, \"position\": {\"x\": 2279.348872644609, \"y\": 2361.236534014912}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:45.550Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"78b4487a-0c74-46a8-a310-949f08fc944d\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"407-A3\", \"capacity\": 1, \"position\": {\"x\": 2279.348872644609, \"y\": 2332.665105443484}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:45.550Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"d8f3ddc8-92b9-49de-81d7-1ed0d0cad6d8\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"407-A4\", \"capacity\": 1, \"position\": {\"x\": 2279.348872644609, \"y\": 2304.0936768720553}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:45.550Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"b008750c-2fe4-4399-b3d5-36fc021e4534\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"407-A5\", \"capacity\": 1, \"position\": {\"x\": 2279.348872644609, \"y\": 2275.522248300627}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:45.550Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"e253060a-f169-45b0-9528-5cc2b0fd1179\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"407-A6\", \"capacity\": 1, \"position\": {\"x\": 2279.348872644609, \"y\": 2246.950819729198}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:45.550Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"d1eab590-564c-427d-9726-bdfd976d6723\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"407-B1\", \"capacity\": 1, \"position\": {\"x\": 2379.348872644609, \"y\": 2389.807962586341}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:45.550Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"5896a531-8f79-4be9-99a0-f87c9ac4e651\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"407-B2\", \"capacity\": 1, \"position\": {\"x\": 2379.348872644609, \"y\": 2361.236534014912}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:45.550Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"e016bb83-cd16-4547-9336-b54657e2df26\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"407-B3\", \"capacity\": 1, \"position\": {\"x\": 2379.348872644609, \"y\": 2332.665105443484}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:45.550Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"52a11ae9-20bc-49c0-88a1-5b0e4b45181c\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"407-B4\", \"capacity\": 1, \"position\": {\"x\": 2379.348872644609, \"y\": 2304.0936768720553}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:45.550Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"f970cabf-6bb3-4c50-bb2b-b79b8e8945c4\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"407-B5\", \"capacity\": 1, \"position\": {\"x\": 2379.348872644609, \"y\": 2275.522248300627}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:45.550Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"c4620e7e-b766-4216-94a8-8ee850067899\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"407-B6\", \"capacity\": 1, \"position\": {\"x\": 2379.348872644609, \"y\": 2246.950819729198}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:45.550Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}]','{\"x\": 2329.348872644609, \"y\": 2329.3793911577695}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1020,'d0801410-6c67-46ec-b58f-4ad0587f5bf0','168e02bc-5838-480b-b8a9-969cd91e22a1',23,'','407-A1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2279.348872644609, \"y\": 2389.807962586341}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1021,'99fdd1cd-a7e4-4dc2-90a8-3baa8913c5bb','168e02bc-5838-480b-b8a9-969cd91e22a1',23,'','407-A2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2279.348872644609, \"y\": 2361.236534014912}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1022,'78b4487a-0c74-46a8-a310-949f08fc944d','168e02bc-5838-480b-b8a9-969cd91e22a1',23,'','407-A3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2279.348872644609, \"y\": 2332.665105443484}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1023,'d8f3ddc8-92b9-49de-81d7-1ed0d0cad6d8','168e02bc-5838-480b-b8a9-969cd91e22a1',23,'','407-A4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2279.348872644609, \"y\": 2304.0936768720553}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1024,'b008750c-2fe4-4399-b3d5-36fc021e4534','168e02bc-5838-480b-b8a9-969cd91e22a1',23,'','407-A5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2279.348872644609, \"y\": 2275.522248300627}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1025,'e253060a-f169-45b0-9528-5cc2b0fd1179','168e02bc-5838-480b-b8a9-969cd91e22a1',23,'','407-A6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2279.348872644609, \"y\": 2246.950819729198}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1026,'d1eab590-564c-427d-9726-bdfd976d6723','168e02bc-5838-480b-b8a9-969cd91e22a1',23,'','407-B1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2379.348872644609, \"y\": 2389.807962586341}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1027,'5896a531-8f79-4be9-99a0-f87c9ac4e651','168e02bc-5838-480b-b8a9-969cd91e22a1',23,'','407-B2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2379.348872644609, \"y\": 2361.236534014912}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1028,'e016bb83-cd16-4547-9336-b54657e2df26','168e02bc-5838-480b-b8a9-969cd91e22a1',23,'','407-B3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2379.348872644609, \"y\": 2332.665105443484}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1029,'52a11ae9-20bc-49c0-88a1-5b0e4b45181c','168e02bc-5838-480b-b8a9-969cd91e22a1',23,'','407-B4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2379.348872644609, \"y\": 2304.0936768720553}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1030,'f970cabf-6bb3-4c50-bb2b-b79b8e8945c4','168e02bc-5838-480b-b8a9-969cd91e22a1',23,'','407-B5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2379.348872644609, \"y\": 2275.522248300627}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1031,'c4620e7e-b766-4216-94a8-8ee850067899','168e02bc-5838-480b-b8a9-969cd91e22a1',23,'','407-B6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2379.348872644609, \"y\": 2246.950819729198}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1032,'eba84d1a-f141-4b4b-bcbc-ba422eabf0e8',NULL,23,'','408','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2504.116587552146, \"y\": 2318.3793911577695}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"a763b0c0-1c5a-441a-8f34-104212237161\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"408-A1\", \"capacity\": 1, \"position\": {\"x\": 2454.116587552146, \"y\": 2389.807962586341}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.153Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"7aa02a63-23fe-4430-90f8-8866e31a6234\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"408-A2\", \"capacity\": 1, \"position\": {\"x\": 2454.116587552146, \"y\": 2361.236534014912}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.153Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"3eb6239d-4028-4070-b947-2634677f6bcb\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"408-A3\", \"capacity\": 1, \"position\": {\"x\": 2454.116587552146, \"y\": 2332.665105443484}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.153Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"7b55f2ac-7719-4488-ab48-1cb5d1fddd6b\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"408-A4\", \"capacity\": 1, \"position\": {\"x\": 2454.116587552146, \"y\": 2304.0936768720553}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.153Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"bac158a7-fec7-4e6c-adef-8376d4eb35a5\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"408-A5\", \"capacity\": 1, \"position\": {\"x\": 2454.116587552146, \"y\": 2275.522248300627}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.153Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"d41d994e-18e1-4cb7-bc0b-95554ab252dc\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"408-A6\", \"capacity\": 1, \"position\": {\"x\": 2454.116587552146, \"y\": 2246.950819729198}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.153Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"16dc8e66-e59f-48a5-8606-4fef0fde3640\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"408-B1\", \"capacity\": 1, \"position\": {\"x\": 2554.116587552146, \"y\": 2389.807962586341}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.153Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"eb125206-dcee-40de-8e5e-d4f0abc01156\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"408-B2\", \"capacity\": 1, \"position\": {\"x\": 2554.116587552146, \"y\": 2361.236534014912}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.153Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"c4168341-5ae9-4ce9-b61b-fc6543933645\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"408-B3\", \"capacity\": 1, \"position\": {\"x\": 2554.116587552146, \"y\": 2332.665105443484}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.153Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"01df5b5f-752b-4583-875b-3ad260578c73\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"408-B4\", \"capacity\": 1, \"position\": {\"x\": 2554.116587552146, \"y\": 2304.0936768720553}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.153Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"b48c9595-37fa-400a-a9be-2d74138a6a2f\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"408-B5\", \"capacity\": 1, \"position\": {\"x\": 2554.116587552146, \"y\": 2275.522248300627}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.153Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"aa7727e4-c70c-47d4-b8e8-7fa1a97d46e1\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"408-B6\", \"capacity\": 1, \"position\": {\"x\": 2554.116587552146, \"y\": 2246.950819729198}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.153Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}]','{\"x\": 2504.116587552146, \"y\": 2329.3793911577695}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1033,'a763b0c0-1c5a-441a-8f34-104212237161','eba84d1a-f141-4b4b-bcbc-ba422eabf0e8',23,'','408-A1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2454.116587552146, \"y\": 2389.807962586341}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1034,'7aa02a63-23fe-4430-90f8-8866e31a6234','eba84d1a-f141-4b4b-bcbc-ba422eabf0e8',23,'','408-A2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2454.116587552146, \"y\": 2361.236534014912}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1035,'3eb6239d-4028-4070-b947-2634677f6bcb','eba84d1a-f141-4b4b-bcbc-ba422eabf0e8',23,'','408-A3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2454.116587552146, \"y\": 2332.665105443484}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1036,'7b55f2ac-7719-4488-ab48-1cb5d1fddd6b','eba84d1a-f141-4b4b-bcbc-ba422eabf0e8',23,'','408-A4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2454.116587552146, \"y\": 2304.0936768720553}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1037,'bac158a7-fec7-4e6c-adef-8376d4eb35a5','eba84d1a-f141-4b4b-bcbc-ba422eabf0e8',23,'','408-A5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2454.116587552146, \"y\": 2275.522248300627}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1038,'d41d994e-18e1-4cb7-bc0b-95554ab252dc','eba84d1a-f141-4b4b-bcbc-ba422eabf0e8',23,'','408-A6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2454.116587552146, \"y\": 2246.950819729198}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1039,'16dc8e66-e59f-48a5-8606-4fef0fde3640','eba84d1a-f141-4b4b-bcbc-ba422eabf0e8',23,'','408-B1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2554.116587552146, \"y\": 2389.807962586341}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1040,'eb125206-dcee-40de-8e5e-d4f0abc01156','eba84d1a-f141-4b4b-bcbc-ba422eabf0e8',23,'','408-B2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2554.116587552146, \"y\": 2361.236534014912}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1041,'c4168341-5ae9-4ce9-b61b-fc6543933645','eba84d1a-f141-4b4b-bcbc-ba422eabf0e8',23,'','408-B3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2554.116587552146, \"y\": 2332.665105443484}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1042,'01df5b5f-752b-4583-875b-3ad260578c73','eba84d1a-f141-4b4b-bcbc-ba422eabf0e8',23,'','408-B4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2554.116587552146, \"y\": 2304.0936768720553}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1043,'b48c9595-37fa-400a-a9be-2d74138a6a2f','eba84d1a-f141-4b4b-bcbc-ba422eabf0e8',23,'','408-B5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2554.116587552146, \"y\": 2275.522248300627}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1044,'aa7727e4-c70c-47d4-b8e8-7fa1a97d46e1','eba84d1a-f141-4b4b-bcbc-ba422eabf0e8',23,'','408-B6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2554.116587552146, \"y\": 2246.950819729198}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1045,'a5418935-810f-4d4f-8e84-6e76e7f67926',NULL,23,'','409','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2678.884302459683, \"y\": 2318.3793911577695}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"6f33d034-e8a3-4a70-aaf5-37125eb9c5de\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"409-A1\", \"capacity\": 1, \"position\": {\"x\": 2628.884302459683, \"y\": 2389.807962586341}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.919Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"1a87562d-c8b8-42b7-be9e-3c064475f300\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"409-A2\", \"capacity\": 1, \"position\": {\"x\": 2628.884302459683, \"y\": 2361.236534014912}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.919Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"4a5e2acd-e7e8-46d1-8359-8af39e54c232\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"409-A3\", \"capacity\": 1, \"position\": {\"x\": 2628.884302459683, \"y\": 2332.665105443484}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.919Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"10230906-6b29-404e-acd8-9083d738bb7a\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"409-A4\", \"capacity\": 1, \"position\": {\"x\": 2628.884302459683, \"y\": 2304.0936768720553}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.919Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"8d671c73-f6da-43c5-aff9-ad789d1da080\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"409-A5\", \"capacity\": 1, \"position\": {\"x\": 2628.884302459683, \"y\": 2275.522248300627}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.919Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"1e4bc147-8416-44e0-8978-dfde51516e3a\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"409-A6\", \"capacity\": 1, \"position\": {\"x\": 2628.884302459683, \"y\": 2246.950819729198}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.919Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"ce49c3f1-6189-4034-8e28-6ef6d1efb9a0\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"409-B1\", \"capacity\": 1, \"position\": {\"x\": 2728.884302459683, \"y\": 2389.807962586341}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.919Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"b0464ea3-6211-4149-9d95-5f031cac2d96\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"409-B2\", \"capacity\": 1, \"position\": {\"x\": 2728.884302459683, \"y\": 2361.236534014912}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.919Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"e0307ee6-6f0b-4507-98d6-b2089662bbe5\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"409-B3\", \"capacity\": 1, \"position\": {\"x\": 2728.884302459683, \"y\": 2332.665105443484}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.919Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"c1c27aec-7e88-45ec-ac5f-0bc28d8388d5\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"409-B4\", \"capacity\": 1, \"position\": {\"x\": 2728.884302459683, \"y\": 2304.0936768720553}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.919Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"a32c56c4-a73b-4237-864f-b769b269c011\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"409-B5\", \"capacity\": 1, \"position\": {\"x\": 2728.884302459683, \"y\": 2275.522248300627}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.919Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"f65a02ee-c603-43f4-9599-fa88cc61ef81\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"409-B6\", \"capacity\": 1, \"position\": {\"x\": 2728.884302459683, \"y\": 2246.950819729198}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:47.919Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}]','{\"x\": 2678.884302459683, \"y\": 2329.3793911577695}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1046,'6f33d034-e8a3-4a70-aaf5-37125eb9c5de','a5418935-810f-4d4f-8e84-6e76e7f67926',23,'','409-A1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2628.884302459683, \"y\": 2389.807962586341}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1047,'1a87562d-c8b8-42b7-be9e-3c064475f300','a5418935-810f-4d4f-8e84-6e76e7f67926',23,'','409-A2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2628.884302459683, \"y\": 2361.236534014912}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1048,'4a5e2acd-e7e8-46d1-8359-8af39e54c232','a5418935-810f-4d4f-8e84-6e76e7f67926',23,'','409-A3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2628.884302459683, \"y\": 2332.665105443484}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1049,'10230906-6b29-404e-acd8-9083d738bb7a','a5418935-810f-4d4f-8e84-6e76e7f67926',23,'','409-A4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2628.884302459683, \"y\": 2304.0936768720553}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1050,'8d671c73-f6da-43c5-aff9-ad789d1da080','a5418935-810f-4d4f-8e84-6e76e7f67926',23,'','409-A5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2628.884302459683, \"y\": 2275.522248300627}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1051,'1e4bc147-8416-44e0-8978-dfde51516e3a','a5418935-810f-4d4f-8e84-6e76e7f67926',23,'','409-A6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2628.884302459683, \"y\": 2246.950819729198}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1052,'ce49c3f1-6189-4034-8e28-6ef6d1efb9a0','a5418935-810f-4d4f-8e84-6e76e7f67926',23,'','409-B1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2728.884302459683, \"y\": 2389.807962586341}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1053,'b0464ea3-6211-4149-9d95-5f031cac2d96','a5418935-810f-4d4f-8e84-6e76e7f67926',23,'','409-B2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2728.884302459683, \"y\": 2361.236534014912}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1054,'e0307ee6-6f0b-4507-98d6-b2089662bbe5','a5418935-810f-4d4f-8e84-6e76e7f67926',23,'','409-B3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2728.884302459683, \"y\": 2332.665105443484}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1055,'c1c27aec-7e88-45ec-ac5f-0bc28d8388d5','a5418935-810f-4d4f-8e84-6e76e7f67926',23,'','409-B4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2728.884302459683, \"y\": 2304.0936768720553}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1056,'a32c56c4-a73b-4237-864f-b769b269c011','a5418935-810f-4d4f-8e84-6e76e7f67926',23,'','409-B5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2728.884302459683, \"y\": 2275.522248300627}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1057,'f65a02ee-c603-43f4-9599-fa88cc61ef81','a5418935-810f-4d4f-8e84-6e76e7f67926',23,'','409-B6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2728.884302459683, \"y\": 2246.950819729198}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1058,'47cfabfb-ad09-4af3-9cf7-fc684f1d0f90',NULL,23,'','410','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2853.65201736722, \"y\": 2318.3793911577695}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"34d01879-9506-495a-9f91-aaa4c7d49fe8\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"410-A1\", \"capacity\": 1, \"position\": {\"x\": 2803.65201736722, \"y\": 2389.807962586341}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:48.666Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"701f79f7-90d4-4ac4-8c2d-8730cff8db2f\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"410-A2\", \"capacity\": 1, \"position\": {\"x\": 2803.65201736722, \"y\": 2361.236534014912}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:48.666Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"6ff13fe9-4c79-4705-a665-0f3d7f2017e3\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"410-A3\", \"capacity\": 1, \"position\": {\"x\": 2803.65201736722, \"y\": 2332.665105443484}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:48.666Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"4a7b264f-d7eb-498f-b725-dcf0f3c1dcf1\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"410-A4\", \"capacity\": 1, \"position\": {\"x\": 2803.65201736722, \"y\": 2304.0936768720553}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:48.666Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"1013fb7e-4428-434c-a25e-cddfac7e55b1\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"410-A5\", \"capacity\": 1, \"position\": {\"x\": 2803.65201736722, \"y\": 2275.522248300627}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:48.666Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"ff1bf7aa-25ce-4090-b5e0-b43495f73da9\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"410-A6\", \"capacity\": 1, \"position\": {\"x\": 2803.65201736722, \"y\": 2246.950819729198}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:48.666Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"047bc287-85f3-4692-9a85-33d9cc9aa605\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"410-B1\", \"capacity\": 1, \"position\": {\"x\": 2903.65201736722, \"y\": 2389.807962586341}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:48.666Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"901978de-6a2d-4e8f-a2a3-c7609a963ad9\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"410-B2\", \"capacity\": 1, \"position\": {\"x\": 2903.65201736722, \"y\": 2361.236534014912}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:48.666Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"533a41a9-c7fc-42a4-aa28-e4992f7fb373\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"410-B3\", \"capacity\": 1, \"position\": {\"x\": 2903.65201736722, \"y\": 2332.665105443484}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:48.666Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"ce2aa858-0a21-458c-a22d-0630f1e3fdc4\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"410-B4\", \"capacity\": 1, \"position\": {\"x\": 2903.65201736722, \"y\": 2304.0936768720553}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:48.666Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"527dee8c-4fce-44ed-942c-e54d3338324d\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"410-B5\", \"capacity\": 1, \"position\": {\"x\": 2903.65201736722, \"y\": 2275.522248300627}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:48.666Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}, {\"id\": \"5603df6a-c2a3-4f0f-b760-49a8f634d866\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"410-B6\", \"capacity\": 1, \"position\": {\"x\": 2903.65201736722, \"y\": 2246.950819729198}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:51:48.666Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"4aaca246-2142-4e9c-b216-095f449846a9\", \"updated_at\": \"2025-11-05T10:53:49.579Z\", \"price_tier_id\": 130}]','{\"x\": 2853.65201736722, \"y\": 2329.3793911577695}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1059,'34d01879-9506-495a-9f91-aaa4c7d49fe8','47cfabfb-ad09-4af3-9cf7-fc684f1d0f90',23,'','410-A1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2803.65201736722, \"y\": 2389.807962586341}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1060,'701f79f7-90d4-4ac4-8c2d-8730cff8db2f','47cfabfb-ad09-4af3-9cf7-fc684f1d0f90',23,'','410-A2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2803.65201736722, \"y\": 2361.236534014912}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1061,'6ff13fe9-4c79-4705-a665-0f3d7f2017e3','47cfabfb-ad09-4af3-9cf7-fc684f1d0f90',23,'','410-A3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2803.65201736722, \"y\": 2332.665105443484}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1062,'4a7b264f-d7eb-498f-b725-dcf0f3c1dcf1','47cfabfb-ad09-4af3-9cf7-fc684f1d0f90',23,'','410-A4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2803.65201736722, \"y\": 2304.0936768720553}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1063,'1013fb7e-4428-434c-a25e-cddfac7e55b1','47cfabfb-ad09-4af3-9cf7-fc684f1d0f90',23,'','410-A5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2803.65201736722, \"y\": 2275.522248300627}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1064,'ff1bf7aa-25ce-4090-b5e0-b43495f73da9','47cfabfb-ad09-4af3-9cf7-fc684f1d0f90',23,'','410-A6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2803.65201736722, \"y\": 2246.950819729198}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1065,'047bc287-85f3-4692-9a85-33d9cc9aa605','47cfabfb-ad09-4af3-9cf7-fc684f1d0f90',23,'','410-B1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2903.65201736722, \"y\": 2389.807962586341}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1066,'901978de-6a2d-4e8f-a2a3-c7609a963ad9','47cfabfb-ad09-4af3-9cf7-fc684f1d0f90',23,'','410-B2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2903.65201736722, \"y\": 2361.236534014912}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1067,'533a41a9-c7fc-42a4-aa28-e4992f7fb373','47cfabfb-ad09-4af3-9cf7-fc684f1d0f90',23,'','410-B3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2903.65201736722, \"y\": 2332.665105443484}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1068,'ce2aa858-0a21-458c-a22d-0630f1e3fdc4','47cfabfb-ad09-4af3-9cf7-fc684f1d0f90',23,'','410-B4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2903.65201736722, \"y\": 2304.0936768720553}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1069,'527dee8c-4fce-44ed-942c-e54d3338324d','47cfabfb-ad09-4af3-9cf7-fc684f1d0f90',23,'','410-B5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2903.65201736722, \"y\": 2275.522248300627}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1070,'5603df6a-c2a3-4f0f-b760-49a8f634d866','47cfabfb-ad09-4af3-9cf7-fc684f1d0f90',23,'','410-B6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 2903.65201736722, \"y\": 2246.950819729198}','4aaca246-2142-4e9c-b216-095f449846a9',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1071,'037a9676-45c9-47a8-9bd5-39649082d995',NULL,23,'','601','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 940.0749457065278, \"y\": 1052.4411652566312}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"fbf009d2-20cc-4739-9161-5eead95ae92c\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"601-A1\", \"capacity\": 1, \"position\": {\"x\": 854.2119794195899, \"y\": 1067.5934534249143}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:25.161Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.942Z\", \"price_tier_id\": 126}, {\"id\": \"dc85451e-b6d8-442c-a4db-78f265e7bf7a\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"601-A2\", \"capacity\": 1, \"position\": {\"x\": 874.4150303106342, \"y\": 1047.39040253387}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:25.161Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.942Z\", \"price_tier_id\": 126}, {\"id\": \"6540934d-430f-4dda-a556-2698f8b594ea\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"601-A3\", \"capacity\": 1, \"position\": {\"x\": 894.6180812016785, \"y\": 1027.187351642826}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:25.161Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.942Z\", \"price_tier_id\": 126}, {\"id\": \"53e464bd-6227-4829-b7c5-d410cf44f03c\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"601-A4\", \"capacity\": 1, \"position\": {\"x\": 914.8211320927228, \"y\": 1006.9843007517816}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:25.161Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.942Z\", \"price_tier_id\": 126}, {\"id\": \"0bc13240-dfda-44c3-8a36-1f03150a4928\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"601-A5\", \"capacity\": 1, \"position\": {\"x\": 935.0241829837668, \"y\": 986.7812498607376}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:25.161Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.942Z\", \"price_tier_id\": 126}, {\"id\": \"3750f199-09ba-4dd7-a83e-26825504ad71\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"601-A6\", \"capacity\": 1, \"position\": {\"x\": 955.2272338748112, \"y\": 966.5781989696932}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:25.161Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.942Z\", \"price_tier_id\": 126}, {\"id\": \"f459308c-d8a3-440d-bd15-27482224efba\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"601-B1\", \"capacity\": 1, \"position\": {\"x\": 924.9226575382444, \"y\": 1138.3041315435692}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:25.161Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.942Z\", \"price_tier_id\": 126}, {\"id\": \"b18cc6e6-1044-4b5d-bdfa-775b9ee2ffa3\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"601-B2\", \"capacity\": 1, \"position\": {\"x\": 945.1257084292888, \"y\": 1118.1010806525248}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:25.161Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.942Z\", \"price_tier_id\": 126}, {\"id\": \"c62c0b57-6d78-4ce8-a508-e6eecdb1c6bd\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"601-B3\", \"capacity\": 1, \"position\": {\"x\": 965.3287593203332, \"y\": 1097.8980297614808}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:25.161Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.942Z\", \"price_tier_id\": 126}, {\"id\": \"8bce8ac3-5acd-46c3-bbcb-79eae22a3c0d\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"601-B4\", \"capacity\": 1, \"position\": {\"x\": 985.5318102113774, \"y\": 1077.6949788704364}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:25.161Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.942Z\", \"price_tier_id\": 126}, {\"id\": \"3a1833d2-c159-48c3-baed-703e9ed6b794\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"601-B5\", \"capacity\": 1, \"position\": {\"x\": 1005.7348611024214, \"y\": 1057.491927979392}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:25.161Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.942Z\", \"price_tier_id\": 126}, {\"id\": \"d2baab49-db45-4a50-8a04-93aec1cc2baa\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"601-B6\", \"capacity\": 1, \"position\": {\"x\": 1025.9379119934658, \"y\": 1037.288877088348}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:25.161Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.942Z\", \"price_tier_id\": 126}]','{\"x\": 940.0749457065278, \"y\": 1052.4411652566312}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1072,'fbf009d2-20cc-4739-9161-5eead95ae92c','037a9676-45c9-47a8-9bd5-39649082d995',23,'','601-A1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 854.2119794195899, \"y\": 1067.5934534249143}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1073,'dc85451e-b6d8-442c-a4db-78f265e7bf7a','037a9676-45c9-47a8-9bd5-39649082d995',23,'','601-A2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 874.4150303106342, \"y\": 1047.39040253387}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1074,'6540934d-430f-4dda-a556-2698f8b594ea','037a9676-45c9-47a8-9bd5-39649082d995',23,'','601-A3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 894.6180812016785, \"y\": 1027.187351642826}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1075,'53e464bd-6227-4829-b7c5-d410cf44f03c','037a9676-45c9-47a8-9bd5-39649082d995',23,'','601-A4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 914.8211320927228, \"y\": 1006.9843007517816}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1076,'0bc13240-dfda-44c3-8a36-1f03150a4928','037a9676-45c9-47a8-9bd5-39649082d995',23,'','601-A5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 935.0241829837668, \"y\": 986.7812498607376}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1077,'3750f199-09ba-4dd7-a83e-26825504ad71','037a9676-45c9-47a8-9bd5-39649082d995',23,'','601-A6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 955.2272338748112, \"y\": 966.5781989696932}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1078,'f459308c-d8a3-440d-bd15-27482224efba','037a9676-45c9-47a8-9bd5-39649082d995',23,'','601-B1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 924.9226575382444, \"y\": 1138.3041315435692}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1079,'b18cc6e6-1044-4b5d-bdfa-775b9ee2ffa3','037a9676-45c9-47a8-9bd5-39649082d995',23,'','601-B2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 945.1257084292888, \"y\": 1118.1010806525248}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1080,'c62c0b57-6d78-4ce8-a508-e6eecdb1c6bd','037a9676-45c9-47a8-9bd5-39649082d995',23,'','601-B3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 965.3287593203332, \"y\": 1097.8980297614808}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1081,'8bce8ac3-5acd-46c3-bbcb-79eae22a3c0d','037a9676-45c9-47a8-9bd5-39649082d995',23,'','601-B4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 985.5318102113774, \"y\": 1077.6949788704364}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1082,'3a1833d2-c159-48c3-baed-703e9ed6b794','037a9676-45c9-47a8-9bd5-39649082d995',23,'','601-B5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1005.7348611024214, \"y\": 1057.491927979392}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1083,'d2baab49-db45-4a50-8a04-93aec1cc2baa','037a9676-45c9-47a8-9bd5-39649082d995',23,'','601-B6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1025.9379119934658, \"y\": 1037.288877088348}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1084,'307ac156-6fc7-4f21-9470-c9689ec8c312',NULL,23,'','602','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1168.2369586658951, \"y\": 1052.4411652566312}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"54647958-b372-4538-92fa-3b71099bc3ca\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"602-A1\", \"capacity\": 1, \"position\": {\"x\": 1082.3739923789572, \"y\": 1067.5934534249143}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:26.634Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.950Z\", \"price_tier_id\": 126}, {\"id\": \"00007e3b-6cdc-4958-a7a9-74e9cbd242e6\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"602-A2\", \"capacity\": 1, \"position\": {\"x\": 1102.5770432700012, \"y\": 1047.3904025338702}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:26.634Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.950Z\", \"price_tier_id\": 126}, {\"id\": \"11a0a8bf-e573-4c5e-a19b-45699b95e401\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"602-A3\", \"capacity\": 1, \"position\": {\"x\": 1122.7800941610456, \"y\": 1027.187351642826}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:26.634Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.950Z\", \"price_tier_id\": 126}, {\"id\": \"a4cb56cf-5295-45ef-b21f-668d1507cb46\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"602-A4\", \"capacity\": 1, \"position\": {\"x\": 1142.98314505209, \"y\": 1006.9843007517816}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:26.634Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.950Z\", \"price_tier_id\": 126}, {\"id\": \"73fe0e2e-192a-4370-9a3c-b6b720417f67\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"602-A5\", \"capacity\": 1, \"position\": {\"x\": 1163.1861959431342, \"y\": 986.7812498607376}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:26.634Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.950Z\", \"price_tier_id\": 126}, {\"id\": \"3a94f4ad-fa87-490c-8ed1-7c6be414510c\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"602-A6\", \"capacity\": 1, \"position\": {\"x\": 1183.3892468341785, \"y\": 966.5781989696934}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:26.634Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.950Z\", \"price_tier_id\": 126}, {\"id\": \"9dfa7a7e-c157-4832-aaf5-67134cdfe780\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"602-B1\", \"capacity\": 1, \"position\": {\"x\": 1153.084670497612, \"y\": 1138.3041315435692}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:26.634Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.950Z\", \"price_tier_id\": 126}, {\"id\": \"898c9932-8b48-4d6c-9d8b-317c89c7a8b6\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"602-B2\", \"capacity\": 1, \"position\": {\"x\": 1173.2877213886563, \"y\": 1118.1010806525248}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:26.634Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.950Z\", \"price_tier_id\": 126}, {\"id\": \"0c6ae1fd-6da1-4cd2-afc9-191e6be796b4\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"602-B3\", \"capacity\": 1, \"position\": {\"x\": 1193.4907722797004, \"y\": 1097.8980297614808}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:26.634Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.950Z\", \"price_tier_id\": 126}, {\"id\": \"d02754b8-157b-4e4e-a2fc-1281de26b2dc\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"602-B4\", \"capacity\": 1, \"position\": {\"x\": 1213.6938231707447, \"y\": 1077.6949788704364}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:26.634Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.950Z\", \"price_tier_id\": 126}, {\"id\": \"e458aa8e-e332-4e5e-ad59-19d36e55e663\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"602-B5\", \"capacity\": 1, \"position\": {\"x\": 1233.896874061789, \"y\": 1057.491927979392}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:26.634Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.950Z\", \"price_tier_id\": 126}, {\"id\": \"3c2253b7-a636-4a84-918a-97bfce8a3fe7\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"602-B6\", \"capacity\": 1, \"position\": {\"x\": 1254.0999249528331, \"y\": 1037.2888770883478}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:26.634Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.950Z\", \"price_tier_id\": 126}]','{\"x\": 1168.2369586658951, \"y\": 1052.4411652566312}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1085,'54647958-b372-4538-92fa-3b71099bc3ca','307ac156-6fc7-4f21-9470-c9689ec8c312',23,'','602-A1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1082.3739923789572, \"y\": 1067.5934534249143}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1086,'00007e3b-6cdc-4958-a7a9-74e9cbd242e6','307ac156-6fc7-4f21-9470-c9689ec8c312',23,'','602-A2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1102.5770432700012, \"y\": 1047.3904025338702}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1087,'11a0a8bf-e573-4c5e-a19b-45699b95e401','307ac156-6fc7-4f21-9470-c9689ec8c312',23,'','602-A3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1122.7800941610456, \"y\": 1027.187351642826}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1088,'a4cb56cf-5295-45ef-b21f-668d1507cb46','307ac156-6fc7-4f21-9470-c9689ec8c312',23,'','602-A4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1142.98314505209, \"y\": 1006.9843007517816}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1089,'73fe0e2e-192a-4370-9a3c-b6b720417f67','307ac156-6fc7-4f21-9470-c9689ec8c312',23,'','602-A5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1163.1861959431342, \"y\": 986.7812498607376}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1090,'3a94f4ad-fa87-490c-8ed1-7c6be414510c','307ac156-6fc7-4f21-9470-c9689ec8c312',23,'','602-A6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1183.3892468341785, \"y\": 966.5781989696934}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1091,'9dfa7a7e-c157-4832-aaf5-67134cdfe780','307ac156-6fc7-4f21-9470-c9689ec8c312',23,'','602-B1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1153.084670497612, \"y\": 1138.3041315435692}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1092,'898c9932-8b48-4d6c-9d8b-317c89c7a8b6','307ac156-6fc7-4f21-9470-c9689ec8c312',23,'','602-B2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1173.2877213886563, \"y\": 1118.1010806525248}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1093,'0c6ae1fd-6da1-4cd2-afc9-191e6be796b4','307ac156-6fc7-4f21-9470-c9689ec8c312',23,'','602-B3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1193.4907722797004, \"y\": 1097.8980297614808}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1094,'d02754b8-157b-4e4e-a2fc-1281de26b2dc','307ac156-6fc7-4f21-9470-c9689ec8c312',23,'','602-B4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1213.6938231707447, \"y\": 1077.6949788704364}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1095,'e458aa8e-e332-4e5e-ad59-19d36e55e663','307ac156-6fc7-4f21-9470-c9689ec8c312',23,'','602-B5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1233.896874061789, \"y\": 1057.491927979392}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1096,'3c2253b7-a636-4a84-918a-97bfce8a3fe7','307ac156-6fc7-4f21-9470-c9689ec8c312',23,'','602-B6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1254.0999249528331, \"y\": 1037.2888770883478}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1097,'c6bf04b2-fb69-4aae-934e-092b2ec11d47',NULL,23,'','603','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 940.0749457065278, \"y\": 1265.053383143032}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"ac8365e9-de79-4ca6-927d-42fd7c16ee8e\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"603-A1\", \"capacity\": 1, \"position\": {\"x\": 854.2119794195899, \"y\": 1280.205671311315}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.117Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.958Z\", \"price_tier_id\": 128}, {\"id\": \"9697e2f1-4a25-4419-acbb-81e9b66b767a\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"603-A2\", \"capacity\": 1, \"position\": {\"x\": 874.4150303106343, \"y\": 1260.002620420271}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.117Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.958Z\", \"price_tier_id\": 128}, {\"id\": \"1dc73ba1-3671-43da-a05d-893b2605b36a\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"603-A3\", \"capacity\": 1, \"position\": {\"x\": 894.6180812016785, \"y\": 1239.7995695292266}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.117Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.958Z\", \"price_tier_id\": 128}, {\"id\": \"84b7ea68-23de-40e9-aa49-6528650d091f\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"603-A4\", \"capacity\": 1, \"position\": {\"x\": 914.8211320927228, \"y\": 1219.5965186381825}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.117Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.958Z\", \"price_tier_id\": 128}, {\"id\": \"cbf7d90a-79aa-43e1-86a8-a436810cdee1\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"603-A5\", \"capacity\": 1, \"position\": {\"x\": 935.0241829837668, \"y\": 1199.3934677471382}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.117Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.958Z\", \"price_tier_id\": 128}, {\"id\": \"4880ec17-3d81-4259-a3af-4bed9fe0ff98\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"603-A6\", \"capacity\": 1, \"position\": {\"x\": 955.2272338748112, \"y\": 1179.190416856094}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.117Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.958Z\", \"price_tier_id\": 128}, {\"id\": \"b4f3453f-c576-46c4-9ff8-59ede016f9c0\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"603-B1\", \"capacity\": 1, \"position\": {\"x\": 924.9226575382444, \"y\": 1350.9163494299698}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.117Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.958Z\", \"price_tier_id\": 128}, {\"id\": \"c8664c13-c36c-4369-9724-b93fa74830d0\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"603-B2\", \"capacity\": 1, \"position\": {\"x\": 945.1257084292888, \"y\": 1330.7132985389255}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.117Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.958Z\", \"price_tier_id\": 128}, {\"id\": \"b2a99db5-3799-4886-9265-c9cd14cb417b\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"603-B3\", \"capacity\": 1, \"position\": {\"x\": 965.3287593203332, \"y\": 1310.5102476478814}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.117Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.958Z\", \"price_tier_id\": 128}, {\"id\": \"e1816bf5-256b-4797-a81c-f763c4f81372\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"603-B4\", \"capacity\": 1, \"position\": {\"x\": 985.5318102113774, \"y\": 1290.3071967568371}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.117Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.958Z\", \"price_tier_id\": 128}, {\"id\": \"6d3b20e1-f84e-4a4c-8ece-db801d912e06\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"603-B5\", \"capacity\": 1, \"position\": {\"x\": 1005.7348611024214, \"y\": 1270.1041458657928}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.117Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.958Z\", \"price_tier_id\": 128}, {\"id\": \"1768c073-8023-4ea5-a4ef-b65db7af6408\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"603-B6\", \"capacity\": 1, \"position\": {\"x\": 1025.9379119934658, \"y\": 1249.9010949747487}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.117Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.958Z\", \"price_tier_id\": 128}]','{\"x\": 940.0749457065278, \"y\": 1265.053383143032}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1098,'ac8365e9-de79-4ca6-927d-42fd7c16ee8e','c6bf04b2-fb69-4aae-934e-092b2ec11d47',23,'','603-A1','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 854.2119794195899, \"y\": 1280.205671311315}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1099,'9697e2f1-4a25-4419-acbb-81e9b66b767a','c6bf04b2-fb69-4aae-934e-092b2ec11d47',23,'','603-A2','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 874.4150303106343, \"y\": 1260.002620420271}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1100,'1dc73ba1-3671-43da-a05d-893b2605b36a','c6bf04b2-fb69-4aae-934e-092b2ec11d47',23,'','603-A3','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 894.6180812016785, \"y\": 1239.7995695292266}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1101,'84b7ea68-23de-40e9-aa49-6528650d091f','c6bf04b2-fb69-4aae-934e-092b2ec11d47',23,'','603-A4','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 914.8211320927228, \"y\": 1219.5965186381825}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1102,'cbf7d90a-79aa-43e1-86a8-a436810cdee1','c6bf04b2-fb69-4aae-934e-092b2ec11d47',23,'','603-A5','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 935.0241829837668, \"y\": 1199.3934677471382}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1103,'4880ec17-3d81-4259-a3af-4bed9fe0ff98','c6bf04b2-fb69-4aae-934e-092b2ec11d47',23,'','603-A6','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 955.2272338748112, \"y\": 1179.190416856094}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1104,'b4f3453f-c576-46c4-9ff8-59ede016f9c0','c6bf04b2-fb69-4aae-934e-092b2ec11d47',23,'','603-B1','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 924.9226575382444, \"y\": 1350.9163494299698}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1105,'c8664c13-c36c-4369-9724-b93fa74830d0','c6bf04b2-fb69-4aae-934e-092b2ec11d47',23,'','603-B2','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 945.1257084292888, \"y\": 1330.7132985389255}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1106,'b2a99db5-3799-4886-9265-c9cd14cb417b','c6bf04b2-fb69-4aae-934e-092b2ec11d47',23,'','603-B3','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 965.3287593203332, \"y\": 1310.5102476478814}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1107,'e1816bf5-256b-4797-a81c-f763c4f81372','c6bf04b2-fb69-4aae-934e-092b2ec11d47',23,'','603-B4','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 985.5318102113774, \"y\": 1290.3071967568371}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1108,'6d3b20e1-f84e-4a4c-8ece-db801d912e06','c6bf04b2-fb69-4aae-934e-092b2ec11d47',23,'','603-B5','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1005.7348611024214, \"y\": 1270.1041458657928}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1109,'1768c073-8023-4ea5-a4ef-b65db7af6408','c6bf04b2-fb69-4aae-934e-092b2ec11d47',23,'','603-B6','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1025.9379119934658, \"y\": 1249.9010949747487}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1110,'3febfc8e-d7d6-41d4-b193-7e42181a0042',NULL,23,'','604','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1168.2369586658951, \"y\": 1265.053383143032}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"ec4d8881-dc0e-49ee-934e-709dc3e7615f\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"604-A1\", \"capacity\": 1, \"position\": {\"x\": 1082.3739923789572, \"y\": 1280.205671311315}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.600Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.965Z\", \"price_tier_id\": 126}, {\"id\": \"10b4ca78-342f-4470-89f1-cb58a1df8fe7\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"604-A2\", \"capacity\": 1, \"position\": {\"x\": 1102.5770432700012, \"y\": 1260.002620420271}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.600Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.965Z\", \"price_tier_id\": 126}, {\"id\": \"2d7686e1-2d24-4403-8f78-74850c6991fb\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"604-A3\", \"capacity\": 1, \"position\": {\"x\": 1122.7800941610456, \"y\": 1239.7995695292266}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.600Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.965Z\", \"price_tier_id\": 126}, {\"id\": \"b286242e-5b40-43ee-a1ab-a94f9e00f5cc\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"604-A4\", \"capacity\": 1, \"position\": {\"x\": 1142.98314505209, \"y\": 1219.5965186381825}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.600Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.965Z\", \"price_tier_id\": 126}, {\"id\": \"0ea36d01-4a39-4c77-8244-63416b037400\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"604-A5\", \"capacity\": 1, \"position\": {\"x\": 1163.186195943134, \"y\": 1199.3934677471382}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.600Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.965Z\", \"price_tier_id\": 126}, {\"id\": \"629b9c77-51f2-4348-9237-2260c92736fb\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"604-A6\", \"capacity\": 1, \"position\": {\"x\": 1183.3892468341785, \"y\": 1179.190416856094}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.600Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.965Z\", \"price_tier_id\": 126}, {\"id\": \"55a44d26-ab81-4c4f-a9bc-94771d00e868\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"604-B1\", \"capacity\": 1, \"position\": {\"x\": 1153.084670497612, \"y\": 1350.9163494299698}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.600Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.965Z\", \"price_tier_id\": 126}, {\"id\": \"bfb2037b-992d-4eee-bdcc-fb9a01309c60\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"604-B2\", \"capacity\": 1, \"position\": {\"x\": 1173.2877213886563, \"y\": 1330.7132985389255}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.600Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.965Z\", \"price_tier_id\": 126}, {\"id\": \"c987b97a-9000-4528-bc2a-7af7f15f8b0d\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"604-B3\", \"capacity\": 1, \"position\": {\"x\": 1193.4907722797004, \"y\": 1310.5102476478814}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.600Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.965Z\", \"price_tier_id\": 126}, {\"id\": \"aab2b8a1-207d-4a04-99be-7d55cf19fe06\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"604-B4\", \"capacity\": 1, \"position\": {\"x\": 1213.6938231707447, \"y\": 1290.3071967568371}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.600Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.965Z\", \"price_tier_id\": 126}, {\"id\": \"844daed2-fef6-4c3a-b3ed-1938b7823e59\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"604-B5\", \"capacity\": 1, \"position\": {\"x\": 1233.896874061789, \"y\": 1270.1041458657928}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.600Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.965Z\", \"price_tier_id\": 126}, {\"id\": \"5745077e-4b48-4876-9db1-11ca11c625e7\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"604-B6\", \"capacity\": 1, \"position\": {\"x\": 1254.0999249528331, \"y\": 1249.9010949747487}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:29.600Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.965Z\", \"price_tier_id\": 126}]','{\"x\": 1168.2369586658951, \"y\": 1265.053383143032}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1111,'ec4d8881-dc0e-49ee-934e-709dc3e7615f','3febfc8e-d7d6-41d4-b193-7e42181a0042',23,'','604-A1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1082.3739923789572, \"y\": 1280.205671311315}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1112,'10b4ca78-342f-4470-89f1-cb58a1df8fe7','3febfc8e-d7d6-41d4-b193-7e42181a0042',23,'','604-A2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1102.5770432700012, \"y\": 1260.002620420271}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1113,'2d7686e1-2d24-4403-8f78-74850c6991fb','3febfc8e-d7d6-41d4-b193-7e42181a0042',23,'','604-A3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1122.7800941610456, \"y\": 1239.7995695292266}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1114,'b286242e-5b40-43ee-a1ab-a94f9e00f5cc','3febfc8e-d7d6-41d4-b193-7e42181a0042',23,'','604-A4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1142.98314505209, \"y\": 1219.5965186381825}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1115,'0ea36d01-4a39-4c77-8244-63416b037400','3febfc8e-d7d6-41d4-b193-7e42181a0042',23,'','604-A5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1163.186195943134, \"y\": 1199.3934677471382}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1116,'629b9c77-51f2-4348-9237-2260c92736fb','3febfc8e-d7d6-41d4-b193-7e42181a0042',23,'','604-A6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1183.3892468341785, \"y\": 1179.190416856094}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1117,'55a44d26-ab81-4c4f-a9bc-94771d00e868','3febfc8e-d7d6-41d4-b193-7e42181a0042',23,'','604-B1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1153.084670497612, \"y\": 1350.9163494299698}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1118,'bfb2037b-992d-4eee-bdcc-fb9a01309c60','3febfc8e-d7d6-41d4-b193-7e42181a0042',23,'','604-B2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1173.2877213886563, \"y\": 1330.7132985389255}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1119,'c987b97a-9000-4528-bc2a-7af7f15f8b0d','3febfc8e-d7d6-41d4-b193-7e42181a0042',23,'','604-B3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1193.4907722797004, \"y\": 1310.5102476478814}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1120,'aab2b8a1-207d-4a04-99be-7d55cf19fe06','3febfc8e-d7d6-41d4-b193-7e42181a0042',23,'','604-B4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1213.6938231707447, \"y\": 1290.3071967568371}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1121,'844daed2-fef6-4c3a-b3ed-1938b7823e59','3febfc8e-d7d6-41d4-b193-7e42181a0042',23,'','604-B5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1233.896874061789, \"y\": 1270.1041458657928}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1122,'5745077e-4b48-4876-9db1-11ca11c625e7','3febfc8e-d7d6-41d4-b193-7e42181a0042',23,'','604-B6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1254.0999249528331, \"y\": 1249.9010949747487}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1123,'caefce39-a72d-452a-9899-be2a827d0e37',NULL,23,'','605','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 711.9129327471603, \"y\": 1359.3036077340664}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"67d63180-f924-44ab-bbe6-6edde723b03e\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"605-A1\", \"capacity\": 1, \"position\": {\"x\": 626.0499664602223, \"y\": 1374.4558959023495}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:30.517Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.976Z\", \"price_tier_id\": 130}, {\"id\": \"47a7f803-05c5-45fe-99d0-c1f62a6a6452\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"605-A2\", \"capacity\": 1, \"position\": {\"x\": 646.2530173512667, \"y\": 1354.2528450113057}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:30.517Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.976Z\", \"price_tier_id\": 130}, {\"id\": \"b8a560b5-abe2-4e12-bbfd-14fd6724676d\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"605-A3\", \"capacity\": 1, \"position\": {\"x\": 666.456068242311, \"y\": 1334.0497941202611}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:30.517Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.976Z\", \"price_tier_id\": 130}, {\"id\": \"ffb73589-845e-4a63-9b0d-44eec33551ba\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"605-A4\", \"capacity\": 1, \"position\": {\"x\": 686.6591191333553, \"y\": 1313.8467432292168}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:30.517Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.976Z\", \"price_tier_id\": 130}, {\"id\": \"734e46d4-8060-4fe1-b93e-822fbd7ba8e0\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"605-A5\", \"capacity\": 1, \"position\": {\"x\": 706.8621700243992, \"y\": 1293.6436923381727}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:30.517Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.976Z\", \"price_tier_id\": 130}, {\"id\": \"c2be1e66-0ee8-45de-aaf9-39f5d28cb4db\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"605-A6\", \"capacity\": 1, \"position\": {\"x\": 727.0652209154437, \"y\": 1273.4406414471284}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:30.517Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.976Z\", \"price_tier_id\": 130}, {\"id\": \"5f627a4c-a96a-4ec4-b0ac-0000c4acb5c4\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"605-B1\", \"capacity\": 1, \"position\": {\"x\": 696.760644578877, \"y\": 1445.1665740210044}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:30.517Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.976Z\", \"price_tier_id\": 130}, {\"id\": \"fc7ea627-81a3-4b1a-a8f7-7d7f5490712e\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"605-B2\", \"capacity\": 1, \"position\": {\"x\": 716.9636954699214, \"y\": 1424.96352312996}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:30.517Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.976Z\", \"price_tier_id\": 130}, {\"id\": \"c9d6b2bf-b931-4c88-a23b-0f25ea3e7986\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"605-B3\", \"capacity\": 1, \"position\": {\"x\": 737.1667463609656, \"y\": 1404.760472238916}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:30.517Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.976Z\", \"price_tier_id\": 130}, {\"id\": \"681dd636-a4ca-422b-8e9f-4dc681925ebc\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"605-B4\", \"capacity\": 1, \"position\": {\"x\": 757.3697972520099, \"y\": 1384.5574213478717}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:30.517Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.976Z\", \"price_tier_id\": 130}, {\"id\": \"f424f703-b3e5-4a5e-b822-5e148a14babc\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"605-B5\", \"capacity\": 1, \"position\": {\"x\": 777.5728481430539, \"y\": 1364.3543704568274}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:30.517Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.976Z\", \"price_tier_id\": 130}, {\"id\": \"32464886-7631-4599-8655-de26096c6169\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"605-B6\", \"capacity\": 1, \"position\": {\"x\": 797.7758990340983, \"y\": 1344.1513195657833}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:30.517Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.976Z\", \"price_tier_id\": 130}]','{\"x\": 711.9129327471603, \"y\": 1315.053383143032}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1124,'67d63180-f924-44ab-bbe6-6edde723b03e','caefce39-a72d-452a-9899-be2a827d0e37',23,'','605-A1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 626.0499664602223, \"y\": 1374.4558959023495}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1125,'47a7f803-05c5-45fe-99d0-c1f62a6a6452','caefce39-a72d-452a-9899-be2a827d0e37',23,'','605-A2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 646.2530173512667, \"y\": 1354.2528450113057}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1126,'b8a560b5-abe2-4e12-bbfd-14fd6724676d','caefce39-a72d-452a-9899-be2a827d0e37',23,'','605-A3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 666.456068242311, \"y\": 1334.0497941202611}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1127,'ffb73589-845e-4a63-9b0d-44eec33551ba','caefce39-a72d-452a-9899-be2a827d0e37',23,'','605-A4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 686.6591191333553, \"y\": 1313.8467432292168}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1128,'734e46d4-8060-4fe1-b93e-822fbd7ba8e0','caefce39-a72d-452a-9899-be2a827d0e37',23,'','605-A5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 706.8621700243992, \"y\": 1293.6436923381727}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1129,'c2be1e66-0ee8-45de-aaf9-39f5d28cb4db','caefce39-a72d-452a-9899-be2a827d0e37',23,'','605-A6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 727.0652209154437, \"y\": 1273.4406414471284}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1130,'5f627a4c-a96a-4ec4-b0ac-0000c4acb5c4','caefce39-a72d-452a-9899-be2a827d0e37',23,'','605-B1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 696.760644578877, \"y\": 1445.1665740210044}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1131,'fc7ea627-81a3-4b1a-a8f7-7d7f5490712e','caefce39-a72d-452a-9899-be2a827d0e37',23,'','605-B2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 716.9636954699214, \"y\": 1424.96352312996}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1132,'c9d6b2bf-b931-4c88-a23b-0f25ea3e7986','caefce39-a72d-452a-9899-be2a827d0e37',23,'','605-B3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 737.1667463609656, \"y\": 1404.760472238916}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1133,'681dd636-a4ca-422b-8e9f-4dc681925ebc','caefce39-a72d-452a-9899-be2a827d0e37',23,'','605-B4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 757.3697972520099, \"y\": 1384.5574213478717}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1134,'f424f703-b3e5-4a5e-b822-5e148a14babc','caefce39-a72d-452a-9899-be2a827d0e37',23,'','605-B5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 777.5728481430539, \"y\": 1364.3543704568274}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1135,'32464886-7631-4599-8655-de26096c6169','caefce39-a72d-452a-9899-be2a827d0e37',23,'','605-B6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 797.7758990340983, \"y\": 1344.1513195657833}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1136,'4d6e39e1-cf89-4f01-b96c-17798b9e0626',NULL,23,'','606','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 940.0749457065278, \"y\": 1477.6656010294323}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"582f68c8-7698-4b6d-897f-b5ae53ea1aca\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"606-A1\", \"capacity\": 1, \"position\": {\"x\": 854.2119794195899, \"y\": 1492.8178891977157}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.150Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.984Z\", \"price_tier_id\": 128}, {\"id\": \"b048ad86-84b3-44a1-b899-97b0169c3bf6\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"606-A2\", \"capacity\": 1, \"position\": {\"x\": 874.4150303106343, \"y\": 1472.6148383066716}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.150Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.984Z\", \"price_tier_id\": 128}, {\"id\": \"a2447a1b-f11c-426c-9752-97c553e6b8ff\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"606-A3\", \"capacity\": 1, \"position\": {\"x\": 894.6180812016785, \"y\": 1452.4117874156273}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.150Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.984Z\", \"price_tier_id\": 128}, {\"id\": \"2d3b9f35-d577-4cc1-a2c1-8e86dffbd21b\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"606-A4\", \"capacity\": 1, \"position\": {\"x\": 914.8211320927228, \"y\": 1432.208736524583}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.150Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.984Z\", \"price_tier_id\": 128}, {\"id\": \"1ed7b29e-4154-4bc2-a54c-10f6ff13dc2e\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"606-A5\", \"capacity\": 1, \"position\": {\"x\": 935.0241829837668, \"y\": 1412.0056856335389}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.150Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.984Z\", \"price_tier_id\": 128}, {\"id\": \"3daae845-4db5-4028-8c97-d4141ee56e42\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"606-A6\", \"capacity\": 1, \"position\": {\"x\": 955.2272338748112, \"y\": 1391.8026347424943}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.150Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.984Z\", \"price_tier_id\": 128}, {\"id\": \"fcf95d84-dd38-417f-b8c9-708f6260c0e3\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"606-B1\", \"capacity\": 1, \"position\": {\"x\": 924.9226575382444, \"y\": 1563.5285673163703}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.150Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.984Z\", \"price_tier_id\": 128}, {\"id\": \"a64967a3-6993-42a1-bc2b-2a08ead7c8b9\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"606-B2\", \"capacity\": 1, \"position\": {\"x\": 945.1257084292888, \"y\": 1543.3255164253262}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.150Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.984Z\", \"price_tier_id\": 128}, {\"id\": \"83b32018-30a2-4f0c-8fad-732b495b15dc\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"606-B3\", \"capacity\": 1, \"position\": {\"x\": 965.3287593203332, \"y\": 1523.122465534282}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.150Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.984Z\", \"price_tier_id\": 128}, {\"id\": \"ca321edf-5935-49fb-a46a-7ce6b41cc71f\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"606-B4\", \"capacity\": 1, \"position\": {\"x\": 985.5318102113774, \"y\": 1502.9194146432378}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.150Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.984Z\", \"price_tier_id\": 128}, {\"id\": \"7f812ce7-aa45-418a-9340-7c4b6ec0aedd\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"606-B5\", \"capacity\": 1, \"position\": {\"x\": 1005.7348611024214, \"y\": 1482.7163637521935}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.150Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.984Z\", \"price_tier_id\": 128}, {\"id\": \"a571fb46-aa5d-4d92-ac89-69f74f641ddb\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"606-B6\", \"capacity\": 1, \"position\": {\"x\": 1025.9379119934658, \"y\": 1462.5133128611494}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.150Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.984Z\", \"price_tier_id\": 128}]','{\"x\": 940.0749457065278, \"y\": 1477.6656010294323}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1137,'582f68c8-7698-4b6d-897f-b5ae53ea1aca','4d6e39e1-cf89-4f01-b96c-17798b9e0626',23,'','606-A1','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 854.2119794195899, \"y\": 1492.8178891977157}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1138,'b048ad86-84b3-44a1-b899-97b0169c3bf6','4d6e39e1-cf89-4f01-b96c-17798b9e0626',23,'','606-A2','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 874.4150303106343, \"y\": 1472.6148383066716}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1139,'a2447a1b-f11c-426c-9752-97c553e6b8ff','4d6e39e1-cf89-4f01-b96c-17798b9e0626',23,'','606-A3','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 894.6180812016785, \"y\": 1452.4117874156273}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1140,'2d3b9f35-d577-4cc1-a2c1-8e86dffbd21b','4d6e39e1-cf89-4f01-b96c-17798b9e0626',23,'','606-A4','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 914.8211320927228, \"y\": 1432.208736524583}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1141,'1ed7b29e-4154-4bc2-a54c-10f6ff13dc2e','4d6e39e1-cf89-4f01-b96c-17798b9e0626',23,'','606-A5','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 935.0241829837668, \"y\": 1412.0056856335389}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1142,'3daae845-4db5-4028-8c97-d4141ee56e42','4d6e39e1-cf89-4f01-b96c-17798b9e0626',23,'','606-A6','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 955.2272338748112, \"y\": 1391.8026347424943}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1143,'fcf95d84-dd38-417f-b8c9-708f6260c0e3','4d6e39e1-cf89-4f01-b96c-17798b9e0626',23,'','606-B1','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 924.9226575382444, \"y\": 1563.5285673163703}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1144,'a64967a3-6993-42a1-bc2b-2a08ead7c8b9','4d6e39e1-cf89-4f01-b96c-17798b9e0626',23,'','606-B2','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 945.1257084292888, \"y\": 1543.3255164253262}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1145,'83b32018-30a2-4f0c-8fad-732b495b15dc','4d6e39e1-cf89-4f01-b96c-17798b9e0626',23,'','606-B3','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 965.3287593203332, \"y\": 1523.122465534282}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1146,'ca321edf-5935-49fb-a46a-7ce6b41cc71f','4d6e39e1-cf89-4f01-b96c-17798b9e0626',23,'','606-B4','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 985.5318102113774, \"y\": 1502.9194146432378}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1147,'7f812ce7-aa45-418a-9340-7c4b6ec0aedd','4d6e39e1-cf89-4f01-b96c-17798b9e0626',23,'','606-B5','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1005.7348611024214, \"y\": 1482.7163637521935}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1148,'a571fb46-aa5d-4d92-ac89-69f74f641ddb','4d6e39e1-cf89-4f01-b96c-17798b9e0626',23,'','606-B6','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1025.9379119934658, \"y\": 1462.5133128611494}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1149,'d4e8d5f3-a930-487f-b60c-5b12875b9978',NULL,23,'','607','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1168.2369586658951, \"y\": 1477.6656010294323}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"16625a45-7edb-43b7-90e4-bccdbf531688\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"607-A1\", \"capacity\": 1, \"position\": {\"x\": 1082.3739923789572, \"y\": 1492.8178891977157}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.717Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.992Z\", \"price_tier_id\": 126}, {\"id\": \"1bda15be-7d52-47c2-9e2e-ce0f68fecbf5\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"607-A2\", \"capacity\": 1, \"position\": {\"x\": 1102.5770432700012, \"y\": 1472.6148383066716}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.717Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.992Z\", \"price_tier_id\": 126}, {\"id\": \"1dc6d8ff-5c57-4811-95d7-2dbfb91ad0d1\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"607-A3\", \"capacity\": 1, \"position\": {\"x\": 1122.7800941610456, \"y\": 1452.4117874156273}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.717Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.992Z\", \"price_tier_id\": 126}, {\"id\": \"555317f1-5f85-489f-bcfd-36597cde5443\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"607-A4\", \"capacity\": 1, \"position\": {\"x\": 1142.98314505209, \"y\": 1432.208736524583}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.717Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.992Z\", \"price_tier_id\": 126}, {\"id\": \"7e0315a9-362f-4a7a-8f75-09c954410407\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"607-A5\", \"capacity\": 1, \"position\": {\"x\": 1163.186195943134, \"y\": 1412.0056856335389}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.717Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.992Z\", \"price_tier_id\": 126}, {\"id\": \"7751cb53-232c-467c-ac21-bcc1320017ca\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"607-A6\", \"capacity\": 1, \"position\": {\"x\": 1183.3892468341785, \"y\": 1391.8026347424943}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.717Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.992Z\", \"price_tier_id\": 126}, {\"id\": \"d4410b87-7f3e-45dd-9b61-dd8d9ea85709\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"607-B1\", \"capacity\": 1, \"position\": {\"x\": 1153.084670497612, \"y\": 1563.5285673163703}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.717Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.992Z\", \"price_tier_id\": 126}, {\"id\": \"c9f3a7bd-d4aa-4eff-8a14-18ea9aa34652\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"607-B2\", \"capacity\": 1, \"position\": {\"x\": 1173.2877213886563, \"y\": 1543.3255164253262}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.717Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.992Z\", \"price_tier_id\": 126}, {\"id\": \"45512f68-b9f7-4395-8de9-6d5dcbc7a867\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"607-B3\", \"capacity\": 1, \"position\": {\"x\": 1193.4907722797004, \"y\": 1523.122465534282}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.717Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.992Z\", \"price_tier_id\": 126}, {\"id\": \"0fae9e66-61bc-4dfb-8db0-aea1b60fc6bb\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"607-B4\", \"capacity\": 1, \"position\": {\"x\": 1213.6938231707447, \"y\": 1502.9194146432378}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.717Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.992Z\", \"price_tier_id\": 126}, {\"id\": \"f1a93192-6a0e-4929-b665-a69583a7687b\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"607-B5\", \"capacity\": 1, \"position\": {\"x\": 1233.896874061789, \"y\": 1482.7163637521935}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.717Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.992Z\", \"price_tier_id\": 126}, {\"id\": \"a66f5b78-2df2-4c52-8e8b-42dd046cd2c7\", \"type\": \"seat\", \"price\": 500, \"seat_id\": \"607-B6\", \"capacity\": 1, \"position\": {\"x\": 1254.0999249528331, \"y\": 1462.5133128611494}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:31.717Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.992Z\", \"price_tier_id\": 126}]','{\"x\": 1168.2369586658951, \"y\": 1477.6656010294323}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1150,'16625a45-7edb-43b7-90e4-bccdbf531688','d4e8d5f3-a930-487f-b60c-5b12875b9978',23,'','607-A1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1082.3739923789572, \"y\": 1492.8178891977157}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1151,'1bda15be-7d52-47c2-9e2e-ce0f68fecbf5','d4e8d5f3-a930-487f-b60c-5b12875b9978',23,'','607-A2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1102.5770432700012, \"y\": 1472.6148383066716}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1152,'1dc6d8ff-5c57-4811-95d7-2dbfb91ad0d1','d4e8d5f3-a930-487f-b60c-5b12875b9978',23,'','607-A3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1122.7800941610456, \"y\": 1452.4117874156273}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1153,'555317f1-5f85-489f-bcfd-36597cde5443','d4e8d5f3-a930-487f-b60c-5b12875b9978',23,'','607-A4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1142.98314505209, \"y\": 1432.208736524583}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1154,'7e0315a9-362f-4a7a-8f75-09c954410407','d4e8d5f3-a930-487f-b60c-5b12875b9978',23,'','607-A5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1163.186195943134, \"y\": 1412.0056856335389}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1155,'7751cb53-232c-467c-ac21-bcc1320017ca','d4e8d5f3-a930-487f-b60c-5b12875b9978',23,'','607-A6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1183.3892468341785, \"y\": 1391.8026347424943}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1156,'d4410b87-7f3e-45dd-9b61-dd8d9ea85709','d4e8d5f3-a930-487f-b60c-5b12875b9978',23,'','607-B1','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1153.084670497612, \"y\": 1563.5285673163703}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1157,'c9f3a7bd-d4aa-4eff-8a14-18ea9aa34652','d4e8d5f3-a930-487f-b60c-5b12875b9978',23,'','607-B2','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1173.2877213886563, \"y\": 1543.3255164253262}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1158,'45512f68-b9f7-4395-8de9-6d5dcbc7a867','d4e8d5f3-a930-487f-b60c-5b12875b9978',23,'','607-B3','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1193.4907722797004, \"y\": 1523.122465534282}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1159,'0fae9e66-61bc-4dfb-8db0-aea1b60fc6bb','d4e8d5f3-a930-487f-b60c-5b12875b9978',23,'','607-B4','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1213.6938231707447, \"y\": 1502.9194146432378}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1160,'f1a93192-6a0e-4929-b665-a69583a7687b','d4e8d5f3-a930-487f-b60c-5b12875b9978',23,'','607-B5','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1233.896874061789, \"y\": 1482.7163637521935}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1161,'a66f5b78-2df2-4c52-8e8b-42dd046cd2c7','d4e8d5f3-a930-487f-b60c-5b12875b9978',23,'','607-B6','table_child',500.00,1,NULL,'general',NULL,NULL,'{\"x\": 1254.0999249528331, \"y\": 1462.5133128611494}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1162,'23aa993e-acc4-436c-876a-65e2bc5c8f56',NULL,23,'','608','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 711.9129327471603, \"y\": 1577.6656010294323}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"69be3cf8-7663-4ae0-b593-53233b29f02d\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"608-A1\", \"capacity\": 1, \"position\": {\"x\": 626.0499664602223, \"y\": 1592.8178891977157}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:32.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.998Z\", \"price_tier_id\": 130}, {\"id\": \"a67cdb59-6cdf-427a-9a4a-44647d51e186\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"608-A2\", \"capacity\": 1, \"position\": {\"x\": 646.2530173512667, \"y\": 1572.6148383066716}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:32.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.998Z\", \"price_tier_id\": 130}, {\"id\": \"a90b2404-14c9-4985-8ad5-b0a5d9baae98\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"608-A3\", \"capacity\": 1, \"position\": {\"x\": 666.456068242311, \"y\": 1552.4117874156273}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:32.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.998Z\", \"price_tier_id\": 130}, {\"id\": \"303812b3-8394-431c-a378-98a3801e9754\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"608-A4\", \"capacity\": 1, \"position\": {\"x\": 686.6591191333553, \"y\": 1532.208736524583}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:32.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.998Z\", \"price_tier_id\": 130}, {\"id\": \"c21df307-ef40-46f6-81e9-551406a47764\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"608-A5\", \"capacity\": 1, \"position\": {\"x\": 706.8621700243992, \"y\": 1512.0056856335389}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:32.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.998Z\", \"price_tier_id\": 130}, {\"id\": \"c2342461-1b18-48ba-a32f-e946a5ed5049\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"608-A6\", \"capacity\": 1, \"position\": {\"x\": 727.0652209154437, \"y\": 1491.8026347424943}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:32.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.998Z\", \"price_tier_id\": 130}, {\"id\": \"55559aa2-7b31-40c7-9e34-97c19c500c03\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"608-B1\", \"capacity\": 1, \"position\": {\"x\": 696.760644578877, \"y\": 1663.5285673163703}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:32.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.998Z\", \"price_tier_id\": 130}, {\"id\": \"5e55af92-baa7-45fe-8c75-06670ca48c83\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"608-B2\", \"capacity\": 1, \"position\": {\"x\": 716.9636954699214, \"y\": 1643.3255164253262}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:32.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.998Z\", \"price_tier_id\": 130}, {\"id\": \"51996d20-96b4-4f52-bf77-f122658cc696\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"608-B3\", \"capacity\": 1, \"position\": {\"x\": 737.1667463609656, \"y\": 1623.122465534282}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:32.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.998Z\", \"price_tier_id\": 130}, {\"id\": \"2e569616-e106-4677-9c6f-23cb5a769c3a\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"608-B4\", \"capacity\": 1, \"position\": {\"x\": 757.3697972520099, \"y\": 1602.9194146432378}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:32.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.998Z\", \"price_tier_id\": 130}, {\"id\": \"d25210fc-eb29-4660-886e-04aaf9f50963\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"608-B5\", \"capacity\": 1, \"position\": {\"x\": 777.5728481430539, \"y\": 1582.7163637521935}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:32.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.998Z\", \"price_tier_id\": 130}, {\"id\": \"d8bca9c1-6848-4c20-b188-b879047d9789\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"608-B6\", \"capacity\": 1, \"position\": {\"x\": 797.7758990340983, \"y\": 1562.5133128611494}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:32.283Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:47.998Z\", \"price_tier_id\": 130}]','{\"x\": 711.9129327471603, \"y\": 1577.6656010294323}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1163,'69be3cf8-7663-4ae0-b593-53233b29f02d','23aa993e-acc4-436c-876a-65e2bc5c8f56',23,'','608-A1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 626.0499664602223, \"y\": 1592.8178891977157}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1164,'a67cdb59-6cdf-427a-9a4a-44647d51e186','23aa993e-acc4-436c-876a-65e2bc5c8f56',23,'','608-A2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 646.2530173512667, \"y\": 1572.6148383066716}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1165,'a90b2404-14c9-4985-8ad5-b0a5d9baae98','23aa993e-acc4-436c-876a-65e2bc5c8f56',23,'','608-A3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 666.456068242311, \"y\": 1552.4117874156273}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1166,'303812b3-8394-431c-a378-98a3801e9754','23aa993e-acc4-436c-876a-65e2bc5c8f56',23,'','608-A4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 686.6591191333553, \"y\": 1532.208736524583}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1167,'c21df307-ef40-46f6-81e9-551406a47764','23aa993e-acc4-436c-876a-65e2bc5c8f56',23,'','608-A5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 706.8621700243992, \"y\": 1512.0056856335389}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1168,'c2342461-1b18-48ba-a32f-e946a5ed5049','23aa993e-acc4-436c-876a-65e2bc5c8f56',23,'','608-A6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 727.0652209154437, \"y\": 1491.8026347424943}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1169,'55559aa2-7b31-40c7-9e34-97c19c500c03','23aa993e-acc4-436c-876a-65e2bc5c8f56',23,'','608-B1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 696.760644578877, \"y\": 1663.5285673163703}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1170,'5e55af92-baa7-45fe-8c75-06670ca48c83','23aa993e-acc4-436c-876a-65e2bc5c8f56',23,'','608-B2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 716.9636954699214, \"y\": 1643.3255164253262}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1171,'51996d20-96b4-4f52-bf77-f122658cc696','23aa993e-acc4-436c-876a-65e2bc5c8f56',23,'','608-B3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 737.1667463609656, \"y\": 1623.122465534282}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1172,'2e569616-e106-4677-9c6f-23cb5a769c3a','23aa993e-acc4-436c-876a-65e2bc5c8f56',23,'','608-B4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 757.3697972520099, \"y\": 1602.9194146432378}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1173,'d25210fc-eb29-4660-886e-04aaf9f50963','23aa993e-acc4-436c-876a-65e2bc5c8f56',23,'','608-B5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 777.5728481430539, \"y\": 1582.7163637521935}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1174,'d8bca9c1-6848-4c20-b188-b879047d9789','23aa993e-acc4-436c-876a-65e2bc5c8f56',23,'','608-B6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 797.7758990340983, \"y\": 1562.5133128611494}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1175,'0595604e-b968-4252-af65-fc5347aaff76',NULL,23,'','609','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 940.0749457065278, \"y\": 1690.2778189158332}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"fa8a51d0-e32b-4e7d-8034-5cbdd4ac5c8b\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"609-A1\", \"capacity\": 1, \"position\": {\"x\": 854.2119794195899, \"y\": 1705.4301070841163}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.008Z\", \"price_tier_id\": 128}, {\"id\": \"9540ac6a-7544-4cec-99a2-dadc7bb06602\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"609-A2\", \"capacity\": 1, \"position\": {\"x\": 874.4150303106343, \"y\": 1685.2270561930725}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.008Z\", \"price_tier_id\": 128}, {\"id\": \"089973af-69f2-4ebc-9e28-ddc3fc595c4a\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"609-A3\", \"capacity\": 1, \"position\": {\"x\": 894.6180812016785, \"y\": 1665.024005302028}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.008Z\", \"price_tier_id\": 128}, {\"id\": \"8f0c54cb-0659-46ac-beda-613288182c9e\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"609-A4\", \"capacity\": 1, \"position\": {\"x\": 914.8211320927228, \"y\": 1644.8209544109836}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.008Z\", \"price_tier_id\": 128}, {\"id\": \"9d6da0bd-f7dd-4bff-ac31-c6ab53d88734\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"609-A5\", \"capacity\": 1, \"position\": {\"x\": 935.0241829837668, \"y\": 1624.6179035199395}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.008Z\", \"price_tier_id\": 128}, {\"id\": \"0c9816d9-20d1-44bf-97df-f098479cfb9d\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"609-A6\", \"capacity\": 1, \"position\": {\"x\": 955.2272338748112, \"y\": 1604.4148526288952}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.008Z\", \"price_tier_id\": 128}, {\"id\": \"7222010e-0e17-4d40-b561-8362b4a11140\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"609-B1\", \"capacity\": 1, \"position\": {\"x\": 924.9226575382444, \"y\": 1776.1407852027712}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.008Z\", \"price_tier_id\": 128}, {\"id\": \"62407eaf-8bc7-4cc6-8065-00804c451675\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"609-B2\", \"capacity\": 1, \"position\": {\"x\": 945.1257084292888, \"y\": 1755.937734311727}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.008Z\", \"price_tier_id\": 128}, {\"id\": \"36034dae-40ee-4bab-a874-10460146e44e\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"609-B3\", \"capacity\": 1, \"position\": {\"x\": 965.3287593203332, \"y\": 1735.7346834206828}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.008Z\", \"price_tier_id\": 128}, {\"id\": \"5e490013-ee43-4017-9378-bc11aeeb0576\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"609-B4\", \"capacity\": 1, \"position\": {\"x\": 985.5318102113774, \"y\": 1715.5316325296385}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.008Z\", \"price_tier_id\": 128}, {\"id\": \"1e423efb-f07d-4816-9777-ec8678ce721c\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"609-B5\", \"capacity\": 1, \"position\": {\"x\": 1005.7348611024214, \"y\": 1695.3285816385942}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.008Z\", \"price_tier_id\": 128}, {\"id\": \"28c51946-002c-4918-858b-68fd047cb6a4\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"609-B6\", \"capacity\": 1, \"position\": {\"x\": 1025.9379119934658, \"y\": 1675.12553074755}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.000Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.008Z\", \"price_tier_id\": 128}]','{\"x\": 940.0749457065278, \"y\": 1690.2778189158332}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1176,'fa8a51d0-e32b-4e7d-8034-5cbdd4ac5c8b','0595604e-b968-4252-af65-fc5347aaff76',23,'','609-A1','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 854.2119794195899, \"y\": 1705.4301070841163}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1177,'9540ac6a-7544-4cec-99a2-dadc7bb06602','0595604e-b968-4252-af65-fc5347aaff76',23,'','609-A2','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 874.4150303106343, \"y\": 1685.2270561930725}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1178,'089973af-69f2-4ebc-9e28-ddc3fc595c4a','0595604e-b968-4252-af65-fc5347aaff76',23,'','609-A3','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 894.6180812016785, \"y\": 1665.024005302028}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1179,'8f0c54cb-0659-46ac-beda-613288182c9e','0595604e-b968-4252-af65-fc5347aaff76',23,'','609-A4','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 914.8211320927228, \"y\": 1644.8209544109836}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1180,'9d6da0bd-f7dd-4bff-ac31-c6ab53d88734','0595604e-b968-4252-af65-fc5347aaff76',23,'','609-A5','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 935.0241829837668, \"y\": 1624.6179035199395}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1181,'0c9816d9-20d1-44bf-97df-f098479cfb9d','0595604e-b968-4252-af65-fc5347aaff76',23,'','609-A6','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 955.2272338748112, \"y\": 1604.4148526288952}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1182,'7222010e-0e17-4d40-b561-8362b4a11140','0595604e-b968-4252-af65-fc5347aaff76',23,'','609-B1','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 924.9226575382444, \"y\": 1776.1407852027712}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1183,'62407eaf-8bc7-4cc6-8065-00804c451675','0595604e-b968-4252-af65-fc5347aaff76',23,'','609-B2','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 945.1257084292888, \"y\": 1755.937734311727}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1184,'36034dae-40ee-4bab-a874-10460146e44e','0595604e-b968-4252-af65-fc5347aaff76',23,'','609-B3','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 965.3287593203332, \"y\": 1735.7346834206828}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1185,'5e490013-ee43-4017-9378-bc11aeeb0576','0595604e-b968-4252-af65-fc5347aaff76',23,'','609-B4','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 985.5318102113774, \"y\": 1715.5316325296385}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1186,'1e423efb-f07d-4816-9777-ec8678ce721c','0595604e-b968-4252-af65-fc5347aaff76',23,'','609-B5','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1005.7348611024214, \"y\": 1695.3285816385942}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1187,'28c51946-002c-4918-858b-68fd047cb6a4','0595604e-b968-4252-af65-fc5347aaff76',23,'','609-B6','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1025.9379119934658, \"y\": 1675.12553074755}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1188,'2765a9ee-4c8e-4644-b54a-b737b4673cd1',NULL,23,'','610','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1168.2369586658951, \"y\": 1690.2778189158332}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"e1b00227-48f7-44fa-bb81-a3878dd2641a\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"610-A1\", \"capacity\": 1, \"position\": {\"x\": 1082.3739923789572, \"y\": 1705.4301070841163}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.684Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.015Z\", \"price_tier_id\": 128}, {\"id\": \"a72c2063-f374-475c-b7f9-45f824973630\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"610-A2\", \"capacity\": 1, \"position\": {\"x\": 1102.5770432700012, \"y\": 1685.2270561930725}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.684Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.015Z\", \"price_tier_id\": 128}, {\"id\": \"1df6a62d-07ea-47cd-8517-ac38ddc2eabd\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"610-A3\", \"capacity\": 1, \"position\": {\"x\": 1122.7800941610456, \"y\": 1665.024005302028}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.684Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.015Z\", \"price_tier_id\": 128}, {\"id\": \"6f4ea8d0-609d-4f8b-abd9-5039ebe26500\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"610-A4\", \"capacity\": 1, \"position\": {\"x\": 1142.98314505209, \"y\": 1644.8209544109836}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.684Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.015Z\", \"price_tier_id\": 128}, {\"id\": \"5467ec63-dca6-4dee-be5b-54e56004ef84\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"610-A5\", \"capacity\": 1, \"position\": {\"x\": 1163.186195943134, \"y\": 1624.6179035199395}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.684Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.015Z\", \"price_tier_id\": 128}, {\"id\": \"18ce4d2b-4d3e-4d61-af25-c92be8f8a02b\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"610-A6\", \"capacity\": 1, \"position\": {\"x\": 1183.3892468341785, \"y\": 1604.4148526288952}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.684Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.015Z\", \"price_tier_id\": 128}, {\"id\": \"8c24f339-acb5-4dbe-99f0-871e4dd694ba\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"610-B1\", \"capacity\": 1, \"position\": {\"x\": 1153.084670497612, \"y\": 1776.1407852027712}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.684Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.015Z\", \"price_tier_id\": 128}, {\"id\": \"4c4d8ba8-fac0-4b56-8180-4b155b9781eb\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"610-B2\", \"capacity\": 1, \"position\": {\"x\": 1173.2877213886563, \"y\": 1755.937734311727}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.684Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.015Z\", \"price_tier_id\": 128}, {\"id\": \"fc9b4344-ee5f-4275-bf99-d1173378606f\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"610-B3\", \"capacity\": 1, \"position\": {\"x\": 1193.4907722797004, \"y\": 1735.7346834206828}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.684Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.015Z\", \"price_tier_id\": 128}, {\"id\": \"bed81cbe-7646-4038-876c-b11be0905ba8\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"610-B4\", \"capacity\": 1, \"position\": {\"x\": 1213.6938231707447, \"y\": 1715.5316325296385}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.684Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.015Z\", \"price_tier_id\": 128}, {\"id\": \"653ca7de-28e6-4dd5-ba7a-933c453b59b5\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"610-B5\", \"capacity\": 1, \"position\": {\"x\": 1233.896874061789, \"y\": 1695.3285816385942}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.684Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.015Z\", \"price_tier_id\": 128}, {\"id\": \"e4ba9e09-c939-4a57-a079-8ed90fb83d81\", \"type\": \"seat\", \"price\": 300, \"seat_id\": \"610-B6\", \"capacity\": 1, \"position\": {\"x\": 1254.0999249528331, \"y\": 1675.12553074755}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:33.684Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.015Z\", \"price_tier_id\": 128}]','{\"x\": 1168.2369586658951, \"y\": 1690.2778189158332}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1189,'e1b00227-48f7-44fa-bb81-a3878dd2641a','2765a9ee-4c8e-4644-b54a-b737b4673cd1',23,'','610-A1','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1082.3739923789572, \"y\": 1705.4301070841163}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1190,'a72c2063-f374-475c-b7f9-45f824973630','2765a9ee-4c8e-4644-b54a-b737b4673cd1',23,'','610-A2','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1102.5770432700012, \"y\": 1685.2270561930725}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1191,'1df6a62d-07ea-47cd-8517-ac38ddc2eabd','2765a9ee-4c8e-4644-b54a-b737b4673cd1',23,'','610-A3','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1122.7800941610456, \"y\": 1665.024005302028}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1192,'6f4ea8d0-609d-4f8b-abd9-5039ebe26500','2765a9ee-4c8e-4644-b54a-b737b4673cd1',23,'','610-A4','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1142.98314505209, \"y\": 1644.8209544109836}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1193,'5467ec63-dca6-4dee-be5b-54e56004ef84','2765a9ee-4c8e-4644-b54a-b737b4673cd1',23,'','610-A5','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1163.186195943134, \"y\": 1624.6179035199395}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1194,'18ce4d2b-4d3e-4d61-af25-c92be8f8a02b','2765a9ee-4c8e-4644-b54a-b737b4673cd1',23,'','610-A6','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1183.3892468341785, \"y\": 1604.4148526288952}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1195,'8c24f339-acb5-4dbe-99f0-871e4dd694ba','2765a9ee-4c8e-4644-b54a-b737b4673cd1',23,'','610-B1','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1153.084670497612, \"y\": 1776.1407852027712}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1196,'4c4d8ba8-fac0-4b56-8180-4b155b9781eb','2765a9ee-4c8e-4644-b54a-b737b4673cd1',23,'','610-B2','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1173.2877213886563, \"y\": 1755.937734311727}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1197,'fc9b4344-ee5f-4275-bf99-d1173378606f','2765a9ee-4c8e-4644-b54a-b737b4673cd1',23,'','610-B3','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1193.4907722797004, \"y\": 1735.7346834206828}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1198,'bed81cbe-7646-4038-876c-b11be0905ba8','2765a9ee-4c8e-4644-b54a-b737b4673cd1',23,'','610-B4','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1213.6938231707447, \"y\": 1715.5316325296385}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1199,'653ca7de-28e6-4dd5-ba7a-933c453b59b5','2765a9ee-4c8e-4644-b54a-b737b4673cd1',23,'','610-B5','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1233.896874061789, \"y\": 1695.3285816385942}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1200,'e4ba9e09-c939-4a57-a079-8ed90fb83d81','2765a9ee-4c8e-4644-b54a-b737b4673cd1',23,'','610-B6','table_child',300.00,1,NULL,'general',NULL,NULL,'{\"x\": 1254.0999249528331, \"y\": 1675.12553074755}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1201,'1ea3f64a-70f3-4d0d-9044-d57ac6a60ac3',NULL,23,'','611','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 940.0749457065278, \"y\": 1902.890036802234}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"515737e9-ff2e-4215-9f2d-4b865728c0bd\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"611-A1\", \"capacity\": 1, \"position\": {\"x\": 854.2119794195899, \"y\": 1918.042324970517}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:35.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.023Z\", \"price_tier_id\": 129}, {\"id\": \"6bc4a337-3e92-4e75-baa7-c37d750c3484\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"611-A2\", \"capacity\": 1, \"position\": {\"x\": 874.4150303106343, \"y\": 1897.839274079473}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:35.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.023Z\", \"price_tier_id\": 129}, {\"id\": \"5a1db3a5-4bfc-443f-887c-f98c92f02675\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"611-A3\", \"capacity\": 1, \"position\": {\"x\": 894.6180812016785, \"y\": 1877.6362231884289}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:35.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.023Z\", \"price_tier_id\": 129}, {\"id\": \"3feb9aab-2808-437a-b6fe-dea9c666bcf8\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"611-A4\", \"capacity\": 1, \"position\": {\"x\": 914.8211320927228, \"y\": 1857.4331722973843}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:35.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.023Z\", \"price_tier_id\": 129}, {\"id\": \"6ccbad92-ccea-412a-9f55-e8a7de2e076c\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"611-A5\", \"capacity\": 1, \"position\": {\"x\": 935.0241829837668, \"y\": 1837.23012140634}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:35.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.023Z\", \"price_tier_id\": 129}, {\"id\": \"8c034b01-a176-4de7-a5b6-3482c999dab3\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"611-A6\", \"capacity\": 1, \"position\": {\"x\": 955.2272338748112, \"y\": 1817.027070515296}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:35.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.023Z\", \"price_tier_id\": 129}, {\"id\": \"e1f86543-974d-4919-aa81-2592f7c3a187\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"611-B1\", \"capacity\": 1, \"position\": {\"x\": 924.9226575382444, \"y\": 1988.753003089172}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:35.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.023Z\", \"price_tier_id\": 129}, {\"id\": \"3e382a0f-40e4-442f-a2ea-32741a0adcee\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"611-B2\", \"capacity\": 1, \"position\": {\"x\": 945.1257084292888, \"y\": 1968.5499521981276}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:35.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.023Z\", \"price_tier_id\": 129}, {\"id\": \"a645dcdb-35a3-4fa8-bdc4-a808f93cf244\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"611-B3\", \"capacity\": 1, \"position\": {\"x\": 965.3287593203332, \"y\": 1948.3469013070835}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:35.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.023Z\", \"price_tier_id\": 129}, {\"id\": \"6d7c8640-91f2-4ff5-98c6-f1ea6a8e5b92\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"611-B4\", \"capacity\": 1, \"position\": {\"x\": 985.5318102113774, \"y\": 1928.1438504160392}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:35.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.023Z\", \"price_tier_id\": 129}, {\"id\": \"3a6c3cf0-cbaa-454e-8704-0eea50c835cd\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"611-B5\", \"capacity\": 1, \"position\": {\"x\": 1005.7348611024214, \"y\": 1907.9407995249949}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:35.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.023Z\", \"price_tier_id\": 129}, {\"id\": \"af3a5086-ccea-4951-91f2-aa932b63e47c\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"611-B6\", \"capacity\": 1, \"position\": {\"x\": 1025.9379119934658, \"y\": 1887.7377486339508}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:35.591Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.023Z\", \"price_tier_id\": 129}]','{\"x\": 940.0749457065278, \"y\": 1902.890036802234}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1202,'515737e9-ff2e-4215-9f2d-4b865728c0bd','1ea3f64a-70f3-4d0d-9044-d57ac6a60ac3',23,'','611-A1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 854.2119794195899, \"y\": 1918.042324970517}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1203,'6bc4a337-3e92-4e75-baa7-c37d750c3484','1ea3f64a-70f3-4d0d-9044-d57ac6a60ac3',23,'','611-A2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 874.4150303106343, \"y\": 1897.839274079473}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1204,'5a1db3a5-4bfc-443f-887c-f98c92f02675','1ea3f64a-70f3-4d0d-9044-d57ac6a60ac3',23,'','611-A3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 894.6180812016785, \"y\": 1877.6362231884289}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1205,'3feb9aab-2808-437a-b6fe-dea9c666bcf8','1ea3f64a-70f3-4d0d-9044-d57ac6a60ac3',23,'','611-A4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 914.8211320927228, \"y\": 1857.4331722973843}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1206,'6ccbad92-ccea-412a-9f55-e8a7de2e076c','1ea3f64a-70f3-4d0d-9044-d57ac6a60ac3',23,'','611-A5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 935.0241829837668, \"y\": 1837.23012140634}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1207,'8c034b01-a176-4de7-a5b6-3482c999dab3','1ea3f64a-70f3-4d0d-9044-d57ac6a60ac3',23,'','611-A6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 955.2272338748112, \"y\": 1817.027070515296}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1208,'e1f86543-974d-4919-aa81-2592f7c3a187','1ea3f64a-70f3-4d0d-9044-d57ac6a60ac3',23,'','611-B1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 924.9226575382444, \"y\": 1988.753003089172}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1209,'3e382a0f-40e4-442f-a2ea-32741a0adcee','1ea3f64a-70f3-4d0d-9044-d57ac6a60ac3',23,'','611-B2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 945.1257084292888, \"y\": 1968.5499521981276}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1210,'a645dcdb-35a3-4fa8-bdc4-a808f93cf244','1ea3f64a-70f3-4d0d-9044-d57ac6a60ac3',23,'','611-B3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 965.3287593203332, \"y\": 1948.3469013070835}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1211,'6d7c8640-91f2-4ff5-98c6-f1ea6a8e5b92','1ea3f64a-70f3-4d0d-9044-d57ac6a60ac3',23,'','611-B4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 985.5318102113774, \"y\": 1928.1438504160392}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1212,'3a6c3cf0-cbaa-454e-8704-0eea50c835cd','1ea3f64a-70f3-4d0d-9044-d57ac6a60ac3',23,'','611-B5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1005.7348611024214, \"y\": 1907.9407995249949}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1213,'af3a5086-ccea-4951-91f2-aa932b63e47c','1ea3f64a-70f3-4d0d-9044-d57ac6a60ac3',23,'','611-B6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1025.9379119934658, \"y\": 1887.7377486339508}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1214,'4879c864-a3c2-456a-a392-0031dad2e43f',NULL,23,'','612','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1168.2369586658951, \"y\": 1902.890036802234}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"b23cd521-1a9a-4a07-a1cb-5843db4c9c8b\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"612-A1\", \"capacity\": 1, \"position\": {\"x\": 1082.3739923789572, \"y\": 1918.042324970517}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:36.252Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.030Z\", \"price_tier_id\": 129}, {\"id\": \"229a55e4-87c0-48c0-9155-b71498e4574c\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"612-A2\", \"capacity\": 1, \"position\": {\"x\": 1102.5770432700012, \"y\": 1897.839274079473}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:36.252Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.030Z\", \"price_tier_id\": 129}, {\"id\": \"28f98e83-b255-41b3-88b8-7c88371e7897\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"612-A3\", \"capacity\": 1, \"position\": {\"x\": 1122.7800941610456, \"y\": 1877.6362231884289}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:36.252Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.030Z\", \"price_tier_id\": 129}, {\"id\": \"d59f2e9a-714b-48da-aaa4-c57fe466d6e5\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"612-A4\", \"capacity\": 1, \"position\": {\"x\": 1142.98314505209, \"y\": 1857.4331722973843}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:36.252Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.030Z\", \"price_tier_id\": 129}, {\"id\": \"878fe682-3d21-473d-a14e-06ba44705bbb\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"612-A5\", \"capacity\": 1, \"position\": {\"x\": 1163.186195943134, \"y\": 1837.23012140634}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:36.252Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.030Z\", \"price_tier_id\": 129}, {\"id\": \"ca41f34e-453b-49a1-8d1f-efcfee903af2\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"612-A6\", \"capacity\": 1, \"position\": {\"x\": 1183.3892468341785, \"y\": 1817.027070515296}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:36.252Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.030Z\", \"price_tier_id\": 129}, {\"id\": \"efd2d284-5d46-4555-ae73-ca3372f949b7\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"612-B1\", \"capacity\": 1, \"position\": {\"x\": 1153.084670497612, \"y\": 1988.753003089172}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:36.252Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.030Z\", \"price_tier_id\": 129}, {\"id\": \"ebd4c306-e629-45ff-a53d-3e28acefc78e\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"612-B2\", \"capacity\": 1, \"position\": {\"x\": 1173.2877213886563, \"y\": 1968.5499521981276}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:36.252Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.030Z\", \"price_tier_id\": 129}, {\"id\": \"4552044a-92a7-420f-a6ad-fc55af8f10fa\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"612-B3\", \"capacity\": 1, \"position\": {\"x\": 1193.4907722797004, \"y\": 1948.3469013070835}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:36.252Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.030Z\", \"price_tier_id\": 129}, {\"id\": \"39299fee-4e66-437f-a1fb-a5c5b15c0fd6\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"612-B4\", \"capacity\": 1, \"position\": {\"x\": 1213.6938231707447, \"y\": 1928.1438504160392}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:36.252Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.030Z\", \"price_tier_id\": 129}, {\"id\": \"73b1dc4f-0058-485c-a572-32c805b5f64d\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"612-B5\", \"capacity\": 1, \"position\": {\"x\": 1233.896874061789, \"y\": 1907.9407995249949}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:36.252Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.030Z\", \"price_tier_id\": 129}, {\"id\": \"fcfeb5a6-6108-46b2-8650-116662d4c18b\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"612-B6\", \"capacity\": 1, \"position\": {\"x\": 1254.0999249528331, \"y\": 1887.7377486339508}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:36.252Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.030Z\", \"price_tier_id\": 129}]','{\"x\": 1168.2369586658951, \"y\": 1902.890036802234}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1215,'b23cd521-1a9a-4a07-a1cb-5843db4c9c8b','4879c864-a3c2-456a-a392-0031dad2e43f',23,'','612-A1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1082.3739923789572, \"y\": 1918.042324970517}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1216,'229a55e4-87c0-48c0-9155-b71498e4574c','4879c864-a3c2-456a-a392-0031dad2e43f',23,'','612-A2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1102.5770432700012, \"y\": 1897.839274079473}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1217,'28f98e83-b255-41b3-88b8-7c88371e7897','4879c864-a3c2-456a-a392-0031dad2e43f',23,'','612-A3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1122.7800941610456, \"y\": 1877.6362231884289}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1218,'d59f2e9a-714b-48da-aaa4-c57fe466d6e5','4879c864-a3c2-456a-a392-0031dad2e43f',23,'','612-A4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1142.98314505209, \"y\": 1857.4331722973843}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1219,'878fe682-3d21-473d-a14e-06ba44705bbb','4879c864-a3c2-456a-a392-0031dad2e43f',23,'','612-A5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1163.186195943134, \"y\": 1837.23012140634}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1220,'ca41f34e-453b-49a1-8d1f-efcfee903af2','4879c864-a3c2-456a-a392-0031dad2e43f',23,'','612-A6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1183.3892468341785, \"y\": 1817.027070515296}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1221,'efd2d284-5d46-4555-ae73-ca3372f949b7','4879c864-a3c2-456a-a392-0031dad2e43f',23,'','612-B1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1153.084670497612, \"y\": 1988.753003089172}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1222,'ebd4c306-e629-45ff-a53d-3e28acefc78e','4879c864-a3c2-456a-a392-0031dad2e43f',23,'','612-B2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1173.2877213886563, \"y\": 1968.5499521981276}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1223,'4552044a-92a7-420f-a6ad-fc55af8f10fa','4879c864-a3c2-456a-a392-0031dad2e43f',23,'','612-B3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1193.4907722797004, \"y\": 1948.3469013070835}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1224,'39299fee-4e66-437f-a1fb-a5c5b15c0fd6','4879c864-a3c2-456a-a392-0031dad2e43f',23,'','612-B4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1213.6938231707447, \"y\": 1928.1438504160392}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1225,'73b1dc4f-0058-485c-a572-32c805b5f64d','4879c864-a3c2-456a-a392-0031dad2e43f',23,'','612-B5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1233.896874061789, \"y\": 1907.9407995249949}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1226,'fcfeb5a6-6108-46b2-8650-116662d4c18b','4879c864-a3c2-456a-a392-0031dad2e43f',23,'','612-B6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1254.0999249528331, \"y\": 1887.7377486339508}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1227,'12b72534-6acc-483d-bab1-fa692b439ea1',NULL,23,'','613','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1168.2369586658951, \"y\": 2104.2627666578846}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"a1617cd9-62fb-41e0-9c4e-1f9b99a167a3\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"613-A1\", \"capacity\": 1, \"position\": {\"x\": 1082.3739923789572, \"y\": 2119.415054826168}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:37.011Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.036Z\", \"price_tier_id\": 129}, {\"id\": \"5c3ae713-62d4-4c32-8a49-15624261b4b0\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"613-A2\", \"capacity\": 1, \"position\": {\"x\": 1102.5770432700017, \"y\": 2099.2120039351244}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:37.011Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.036Z\", \"price_tier_id\": 129}, {\"id\": \"176dad97-583d-41d0-98cc-079598c2a25a\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"613-A3\", \"capacity\": 1, \"position\": {\"x\": 1122.7800941610456, \"y\": 2079.008953044079}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:37.011Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.036Z\", \"price_tier_id\": 129}, {\"id\": \"146791c6-3aee-441c-8883-6b126b1c6088\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"613-A4\", \"capacity\": 1, \"position\": {\"x\": 1142.98314505209, \"y\": 2058.8059021530353}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:37.011Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.036Z\", \"price_tier_id\": 129}, {\"id\": \"ed3457f5-7f73-4bfb-94d2-9a29e056fccb\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"613-A5\", \"capacity\": 1, \"position\": {\"x\": 1163.1861959431342, \"y\": 2038.6028512619905}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:37.011Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.036Z\", \"price_tier_id\": 129}, {\"id\": \"8ab7da58-a075-4532-b321-d58b39dc8019\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"613-A6\", \"capacity\": 1, \"position\": {\"x\": 1183.3892468341785, \"y\": 2018.3998003709469}, \"arc_angle\": 180, \"direction\": 45, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:37.011Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.036Z\", \"price_tier_id\": 129}, {\"id\": \"13243560-31e3-4c78-9167-714be70ddccc\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"613-B1\", \"capacity\": 1, \"position\": {\"x\": 1153.084670497612, \"y\": 2190.125732944822}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:37.011Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.036Z\", \"price_tier_id\": 129}, {\"id\": \"b9b2eb20-ebf2-415b-9883-8e437117d52c\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"613-B2\", \"capacity\": 1, \"position\": {\"x\": 1173.287721388656, \"y\": 2169.9226820537788}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:37.011Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.036Z\", \"price_tier_id\": 129}, {\"id\": \"4e2cc8c8-c20c-477b-8ffe-d9516c404948\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"613-B3\", \"capacity\": 1, \"position\": {\"x\": 1193.4907722797004, \"y\": 2149.719631162734}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:37.011Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.036Z\", \"price_tier_id\": 129}, {\"id\": \"2ea299d9-6205-428c-b9c9-bbf848711ff1\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"613-B4\", \"capacity\": 1, \"position\": {\"x\": 1213.6938231707447, \"y\": 2129.51658027169}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:37.011Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.036Z\", \"price_tier_id\": 129}, {\"id\": \"d3f2fd29-e2e6-4716-95cc-9c3e649ccb4c\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"613-B5\", \"capacity\": 1, \"position\": {\"x\": 1233.8968740617886, \"y\": 2109.313529380645}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:37.011Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.036Z\", \"price_tier_id\": 129}, {\"id\": \"131a4059-acab-430e-8f58-bfd6d0fb8db3\", \"type\": \"seat\", \"price\": 200, \"seat_id\": \"613-B6\", \"capacity\": 1, \"position\": {\"x\": 1254.099924952833, \"y\": 2089.110478489601}, \"arc_angle\": 180, \"direction\": 225, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:54:37.011Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"ccbb7571-4395-46c1-a4b0-210e882dd330\", \"updated_at\": \"2025-11-05T10:56:48.036Z\", \"price_tier_id\": 129}]','{\"x\": 1168.2369586658951, \"y\": 1971.5839278590336}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1228,'a1617cd9-62fb-41e0-9c4e-1f9b99a167a3','12b72534-6acc-483d-bab1-fa692b439ea1',23,'','613-A1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1082.3739923789572, \"y\": 2119.415054826168}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1229,'5c3ae713-62d4-4c32-8a49-15624261b4b0','12b72534-6acc-483d-bab1-fa692b439ea1',23,'','613-A2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1102.5770432700017, \"y\": 2099.2120039351244}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1230,'176dad97-583d-41d0-98cc-079598c2a25a','12b72534-6acc-483d-bab1-fa692b439ea1',23,'','613-A3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1122.7800941610456, \"y\": 2079.008953044079}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1231,'146791c6-3aee-441c-8883-6b126b1c6088','12b72534-6acc-483d-bab1-fa692b439ea1',23,'','613-A4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1142.98314505209, \"y\": 2058.8059021530353}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1232,'ed3457f5-7f73-4bfb-94d2-9a29e056fccb','12b72534-6acc-483d-bab1-fa692b439ea1',23,'','613-A5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1163.1861959431342, \"y\": 2038.6028512619905}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1233,'8ab7da58-a075-4532-b321-d58b39dc8019','12b72534-6acc-483d-bab1-fa692b439ea1',23,'','613-A6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1183.3892468341785, \"y\": 2018.3998003709469}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1234,'13243560-31e3-4c78-9167-714be70ddccc','12b72534-6acc-483d-bab1-fa692b439ea1',23,'','613-B1','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1153.084670497612, \"y\": 2190.125732944822}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1235,'b9b2eb20-ebf2-415b-9883-8e437117d52c','12b72534-6acc-483d-bab1-fa692b439ea1',23,'','613-B2','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1173.287721388656, \"y\": 2169.9226820537788}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1236,'4e2cc8c8-c20c-477b-8ffe-d9516c404948','12b72534-6acc-483d-bab1-fa692b439ea1',23,'','613-B3','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1193.4907722797004, \"y\": 2149.719631162734}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1237,'2ea299d9-6205-428c-b9c9-bbf848711ff1','12b72534-6acc-483d-bab1-fa692b439ea1',23,'','613-B4','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1213.6938231707447, \"y\": 2129.51658027169}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1238,'d3f2fd29-e2e6-4716-95cc-9c3e649ccb4c','12b72534-6acc-483d-bab1-fa692b439ea1',23,'','613-B5','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1233.8968740617886, \"y\": 2109.313529380645}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1239,'131a4059-acab-430e-8f58-bfd6d0fb8db3','12b72534-6acc-483d-bab1-fa692b439ea1',23,'','613-B6','table_child',200.00,1,NULL,'general',NULL,NULL,'{\"x\": 1254.099924952833, \"y\": 2089.110478489601}','ccbb7571-4395-46c1-a4b0-210e882dd330',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1240,'cb0bac61-e9c1-43a4-9ae1-ca2aa2d234fd',NULL,23,'','701','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 496.7051374400048, \"y\": 759.3884807030778}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"d314507b-f11b-4dfe-9f6b-b1bfa5f98bed\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"701-A1\", \"capacity\": 1, \"position\": {\"x\": 415.0564228767703, \"y\": 789.9748866131872}, \"arc_angle\": 180, \"direction\": 34.47153926507542, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:58:56.348Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:44.937Z\", \"price_tier_id\": 131}, {\"id\": \"f2da4856-3ffc-403c-b4cc-6c2dc00b60f4\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"701-A2\", \"capacity\": 1, \"position\": {\"x\": 431.2277599039269, \"y\": 766.4203883301341}, \"arc_angle\": 180, \"direction\": 34.47153926507542, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:58:56.348Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:44.937Z\", \"price_tier_id\": 131}, {\"id\": \"d533289c-bc34-4f50-a9d5-d34104e8a8b6\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"701-A3\", \"capacity\": 1, \"position\": {\"x\": 447.39909693108336, \"y\": 742.8658900470805}, \"arc_angle\": 180, \"direction\": 34.47153926507542, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:58:56.348Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:44.937Z\", \"price_tier_id\": 131}, {\"id\": \"32d89855-c023-4552-97d2-06c701bacb57\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"701-A4\", \"capacity\": 1, \"position\": {\"x\": 463.57043395823973, \"y\": 719.3113917640271}, \"arc_angle\": 180, \"direction\": 34.47153926507542, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:58:56.348Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:44.937Z\", \"price_tier_id\": 131}, {\"id\": \"a83d1602-be5d-4274-86e7-391f8b76a741\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"701-A5\", \"capacity\": 1, \"position\": {\"x\": 479.7417709853962, \"y\": 695.7568934809741}, \"arc_angle\": 180, \"direction\": 34.47153926507542, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:58:56.348Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:44.937Z\", \"price_tier_id\": 131}, {\"id\": \"234d089c-920f-42eb-8da6-2b9ce028d631\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"701-A6\", \"capacity\": 1, \"position\": {\"x\": 495.9131080125527, \"y\": 672.2023951979206}, \"arc_angle\": 180, \"direction\": 34.47153926507542, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:58:56.348Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:44.937Z\", \"price_tier_id\": 131}, {\"id\": \"8e161fed-3c48-4973-9c1b-95afce8b7fa8\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"701-B1\", \"capacity\": 1, \"position\": {\"x\": 497.49716686745694, \"y\": 846.574566208235}, \"arc_angle\": 180, \"direction\": 214.47153926507545, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:58:56.348Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:44.937Z\", \"price_tier_id\": 131}, {\"id\": \"ba76adc4-3f8a-4e39-a9a7-0d42b57c0355\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"701-B2\", \"capacity\": 1, \"position\": {\"x\": 513.6685038946134, \"y\": 823.0200679251816}, \"arc_angle\": 180, \"direction\": 214.47153926507545, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:58:56.348Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:44.937Z\", \"price_tier_id\": 131}, {\"id\": \"d9808164-e06d-4a3a-be38-47590b29e194\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"701-B3\", \"capacity\": 1, \"position\": {\"x\": 529.8398409217699, \"y\": 799.4655696421285}, \"arc_angle\": 180, \"direction\": 214.47153926507545, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:58:56.348Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:44.937Z\", \"price_tier_id\": 131}, {\"id\": \"66521ff7-8c42-4ebf-b500-4e766f2b5989\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"701-B4\", \"capacity\": 1, \"position\": {\"x\": 546.0111779489264, \"y\": 775.9110713590751}, \"arc_angle\": 180, \"direction\": 214.47153926507545, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:58:56.348Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:44.937Z\", \"price_tier_id\": 131}, {\"id\": \"d09cf9aa-e0b1-43e8-8893-186eda01b4fb\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"701-B5\", \"capacity\": 1, \"position\": {\"x\": 562.1825149760828, \"y\": 752.3565730760216}, \"arc_angle\": 180, \"direction\": 214.47153926507545, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:58:56.348Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:44.937Z\", \"price_tier_id\": 131}, {\"id\": \"4ed497bb-cf1f-470e-8418-e3d21833146e\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"701-B6\", \"capacity\": 1, \"position\": {\"x\": 578.3538520032394, \"y\": 728.8020747929684}, \"arc_angle\": 180, \"direction\": 214.47153926507545, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:58:56.348Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:44.937Z\", \"price_tier_id\": 131}]','{\"x\": 480.90293308752314, \"y\": 765.9413094634708}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1241,'d314507b-f11b-4dfe-9f6b-b1bfa5f98bed','cb0bac61-e9c1-43a4-9ae1-ca2aa2d234fd',23,'','701-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 415.0564228767703, \"y\": 789.9748866131872}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1242,'f2da4856-3ffc-403c-b4cc-6c2dc00b60f4','cb0bac61-e9c1-43a4-9ae1-ca2aa2d234fd',23,'','701-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 431.2277599039269, \"y\": 766.4203883301341}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1243,'d533289c-bc34-4f50-a9d5-d34104e8a8b6','cb0bac61-e9c1-43a4-9ae1-ca2aa2d234fd',23,'','701-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 447.39909693108336, \"y\": 742.8658900470805}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1244,'32d89855-c023-4552-97d2-06c701bacb57','cb0bac61-e9c1-43a4-9ae1-ca2aa2d234fd',23,'','701-A4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 463.57043395823973, \"y\": 719.3113917640271}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1245,'a83d1602-be5d-4274-86e7-391f8b76a741','cb0bac61-e9c1-43a4-9ae1-ca2aa2d234fd',23,'','701-A5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 479.7417709853962, \"y\": 695.7568934809741}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1246,'234d089c-920f-42eb-8da6-2b9ce028d631','cb0bac61-e9c1-43a4-9ae1-ca2aa2d234fd',23,'','701-A6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 495.9131080125527, \"y\": 672.2023951979206}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1247,'8e161fed-3c48-4973-9c1b-95afce8b7fa8','cb0bac61-e9c1-43a4-9ae1-ca2aa2d234fd',23,'','701-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 497.49716686745694, \"y\": 846.574566208235}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1248,'ba76adc4-3f8a-4e39-a9a7-0d42b57c0355','cb0bac61-e9c1-43a4-9ae1-ca2aa2d234fd',23,'','701-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 513.6685038946134, \"y\": 823.0200679251816}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1249,'d9808164-e06d-4a3a-be38-47590b29e194','cb0bac61-e9c1-43a4-9ae1-ca2aa2d234fd',23,'','701-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 529.8398409217699, \"y\": 799.4655696421285}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1250,'66521ff7-8c42-4ebf-b500-4e766f2b5989','cb0bac61-e9c1-43a4-9ae1-ca2aa2d234fd',23,'','701-B4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 546.0111779489264, \"y\": 775.9110713590751}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1251,'d09cf9aa-e0b1-43e8-8893-186eda01b4fb','cb0bac61-e9c1-43a4-9ae1-ca2aa2d234fd',23,'','701-B5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 562.1825149760828, \"y\": 752.3565730760216}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1252,'4ed497bb-cf1f-470e-8418-e3d21833146e','cb0bac61-e9c1-43a4-9ae1-ca2aa2d234fd',23,'','701-B6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 578.3538520032394, \"y\": 728.8020747929684}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1253,'c5e7b6cb-c623-4141-a75e-34ca5282b751',NULL,23,'','702','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 353.01713820517233, \"y\": 1127.8398250408322}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"874a8b36-9805-430f-89e6-2a34e9e23ef6\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"702-A1\", \"capacity\": 1, \"position\": {\"x\": 303.01713820517233, \"y\": 1199.2683964694038}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:29.119Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:35.023Z\", \"price_tier_id\": 131}, {\"id\": \"f3d47ba6-5b89-4468-9270-8d6da5fa68af\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"702-A2\", \"capacity\": 1, \"position\": {\"x\": 303.01713820517233, \"y\": 1170.6969678979751}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:29.119Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:35.023Z\", \"price_tier_id\": 131}, {\"id\": \"4bff0bf9-eb52-4f80-a851-87fded821d65\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"702-A3\", \"capacity\": 1, \"position\": {\"x\": 303.01713820517233, \"y\": 1142.1255393265465}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:29.119Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:35.023Z\", \"price_tier_id\": 131}, {\"id\": \"991064dc-3be9-4bc7-a284-4d7c55d5adc1\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"702-A4\", \"capacity\": 1, \"position\": {\"x\": 303.01713820517233, \"y\": 1113.554110755118}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:29.119Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:35.023Z\", \"price_tier_id\": 131}, {\"id\": \"78a3e625-bebb-4e21-be70-48d36c3df98f\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"702-A5\", \"capacity\": 1, \"position\": {\"x\": 303.01713820517233, \"y\": 1084.9826821836891}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:29.119Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:35.023Z\", \"price_tier_id\": 131}, {\"id\": \"3d27c8f1-4218-484e-ab47-081af27fca33\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"702-A6\", \"capacity\": 1, \"position\": {\"x\": 303.01713820517233, \"y\": 1056.411253612261}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:29.119Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:35.023Z\", \"price_tier_id\": 131}, {\"id\": \"bab68c58-c432-43c1-a9e2-980e7b64ca60\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"702-B1\", \"capacity\": 1, \"position\": {\"x\": 403.01713820517233, \"y\": 1199.2683964694038}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:29.119Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:35.023Z\", \"price_tier_id\": 131}, {\"id\": \"7c4c7cf8-10c5-4bb6-b9d3-b2febddec2e7\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"702-B2\", \"capacity\": 1, \"position\": {\"x\": 403.01713820517233, \"y\": 1170.6969678979751}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:29.119Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:35.023Z\", \"price_tier_id\": 131}, {\"id\": \"81dd13b2-8ce3-47b9-b93a-81d24a82e965\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"702-B3\", \"capacity\": 1, \"position\": {\"x\": 403.01713820517233, \"y\": 1142.1255393265465}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:29.119Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:35.023Z\", \"price_tier_id\": 131}, {\"id\": \"476bddbe-207b-49a8-94e2-c01b5d6de840\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"702-B4\", \"capacity\": 1, \"position\": {\"x\": 403.01713820517233, \"y\": 1113.554110755118}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:29.119Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:35.023Z\", \"price_tier_id\": 131}, {\"id\": \"e1ce3dfe-ae0f-4836-a3f0-f9acd7ab4713\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"702-B5\", \"capacity\": 1, \"position\": {\"x\": 403.01713820517233, \"y\": 1084.9826821836891}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:29.119Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:35.023Z\", \"price_tier_id\": 131}, {\"id\": \"aaad6c34-cdf6-48cd-a465-3039c1a17667\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"702-B6\", \"capacity\": 1, \"position\": {\"x\": 403.01713820517233, \"y\": 1056.411253612261}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:29.119Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:58:35.023Z\", \"price_tier_id\": 131}]','{\"x\": 353.01713820517233, \"y\": 1087.8398250408322}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1254,'874a8b36-9805-430f-89e6-2a34e9e23ef6','c5e7b6cb-c623-4141-a75e-34ca5282b751',23,'','702-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 303.01713820517233, \"y\": 1199.2683964694038}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1255,'f3d47ba6-5b89-4468-9270-8d6da5fa68af','c5e7b6cb-c623-4141-a75e-34ca5282b751',23,'','702-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 303.01713820517233, \"y\": 1170.6969678979751}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1256,'4bff0bf9-eb52-4f80-a851-87fded821d65','c5e7b6cb-c623-4141-a75e-34ca5282b751',23,'','702-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 303.01713820517233, \"y\": 1142.1255393265465}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1257,'991064dc-3be9-4bc7-a284-4d7c55d5adc1','c5e7b6cb-c623-4141-a75e-34ca5282b751',23,'','702-A4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 303.01713820517233, \"y\": 1113.554110755118}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1258,'78a3e625-bebb-4e21-be70-48d36c3df98f','c5e7b6cb-c623-4141-a75e-34ca5282b751',23,'','702-A5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 303.01713820517233, \"y\": 1084.9826821836891}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1259,'3d27c8f1-4218-484e-ab47-081af27fca33','c5e7b6cb-c623-4141-a75e-34ca5282b751',23,'','702-A6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 303.01713820517233, \"y\": 1056.411253612261}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1260,'bab68c58-c432-43c1-a9e2-980e7b64ca60','c5e7b6cb-c623-4141-a75e-34ca5282b751',23,'','702-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 403.01713820517233, \"y\": 1199.2683964694038}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1261,'7c4c7cf8-10c5-4bb6-b9d3-b2febddec2e7','c5e7b6cb-c623-4141-a75e-34ca5282b751',23,'','702-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 403.01713820517233, \"y\": 1170.6969678979751}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1262,'81dd13b2-8ce3-47b9-b93a-81d24a82e965','c5e7b6cb-c623-4141-a75e-34ca5282b751',23,'','702-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 403.01713820517233, \"y\": 1142.1255393265465}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1263,'476bddbe-207b-49a8-94e2-c01b5d6de840','c5e7b6cb-c623-4141-a75e-34ca5282b751',23,'','702-B4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 403.01713820517233, \"y\": 1113.554110755118}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1264,'e1ce3dfe-ae0f-4836-a3f0-f9acd7ab4713','c5e7b6cb-c623-4141-a75e-34ca5282b751',23,'','702-B5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 403.01713820517233, \"y\": 1084.9826821836891}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1265,'aaad6c34-cdf6-48cd-a465-3039c1a17667','c5e7b6cb-c623-4141-a75e-34ca5282b751',23,'','702-B6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 403.01713820517233, \"y\": 1056.411253612261}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1266,'33e4a5c5-882f-47ff-b7cb-c205d6ca224d',NULL,23,'','703','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 582.5304517566777, \"y\": 2268.3618835762563}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"f02ee4b9-492c-49ca-8b40-372315bf10c7\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"703-A1\", \"capacity\": 1, \"position\": {\"x\": 574.9434672817416, \"y\": 2355.2208409894306}, \"arc_angle\": 180, \"direction\": 330, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:30.892Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:38.214Z\", \"price_tier_id\": 131}, {\"id\": \"ea31f3b7-5bee-45ab-8818-8bcf69952975\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"703-A2\", \"capacity\": 1, \"position\": {\"x\": 560.6577529960273, \"y\": 2330.477258024161}, \"arc_angle\": 180, \"direction\": 330, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:30.892Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:38.214Z\", \"price_tier_id\": 131}, {\"id\": \"36bad722-23bb-4577-9123-7734d9969bd1\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"703-A3\", \"capacity\": 1, \"position\": {\"x\": 546.3720387103131, \"y\": 2305.733675058891}, \"arc_angle\": 180, \"direction\": 330, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:30.892Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:38.214Z\", \"price_tier_id\": 131}, {\"id\": \"05f7b15b-6671-424a-a6d2-7b775694dfd9\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"703-A4\", \"capacity\": 1, \"position\": {\"x\": 532.0863244245985, \"y\": 2280.9900920936216}, \"arc_angle\": 180, \"direction\": 330, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:30.892Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:38.214Z\", \"price_tier_id\": 131}, {\"id\": \"42d758cd-eebe-49ae-aeb3-1fbbee45ca33\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"703-A5\", \"capacity\": 1, \"position\": {\"x\": 517.8006101388844, \"y\": 2256.246509128352}, \"arc_angle\": 180, \"direction\": 330, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:30.892Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:38.214Z\", \"price_tier_id\": 131}, {\"id\": \"6760d3a5-ca34-4726-a50f-c71ffac8daf6\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"703-A6\", \"capacity\": 1, \"position\": {\"x\": 503.5148958531702, \"y\": 2231.502926163082}, \"arc_angle\": 180, \"direction\": 330, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:30.892Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:38.214Z\", \"price_tier_id\": 131}, {\"id\": \"524d7636-60cb-437a-bfd9-71546c6575a9\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"703-B1\", \"capacity\": 1, \"position\": {\"x\": 661.5460076601854, \"y\": 2305.2208409894306}, \"arc_angle\": 180, \"direction\": 150, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:30.892Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:38.214Z\", \"price_tier_id\": 131}, {\"id\": \"06a6e8a0-f39e-49ef-be1d-495ef7ab80bf\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"703-B2\", \"capacity\": 1, \"position\": {\"x\": 647.2602933744711, \"y\": 2280.4772580241606}, \"arc_angle\": 180, \"direction\": 150, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:30.892Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:38.214Z\", \"price_tier_id\": 131}, {\"id\": \"fc4ec946-5e74-4af0-b2bf-423354116cdf\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"703-B3\", \"capacity\": 1, \"position\": {\"x\": 632.974579088757, \"y\": 2255.733675058891}, \"arc_angle\": 180, \"direction\": 150, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:30.892Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:38.214Z\", \"price_tier_id\": 131}, {\"id\": \"57de65c4-a276-46e3-b854-5231e651b447\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"703-B4\", \"capacity\": 1, \"position\": {\"x\": 618.6888648030424, \"y\": 2230.9900920936216}, \"arc_angle\": 180, \"direction\": 150, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:30.892Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:38.214Z\", \"price_tier_id\": 131}, {\"id\": \"05ed82ab-64ee-4f70-90fc-7aa5c777900b\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"703-B5\", \"capacity\": 1, \"position\": {\"x\": 604.4031505173282, \"y\": 2206.2465091283516}, \"arc_angle\": 180, \"direction\": 150, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:30.892Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:38.214Z\", \"price_tier_id\": 131}, {\"id\": \"5fff887c-6c70-4cce-972d-ee45ea87070d\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"703-B6\", \"capacity\": 1, \"position\": {\"x\": 590.1174362316139, \"y\": 2181.502926163082}, \"arc_angle\": 180, \"direction\": 150, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:30.892Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:38.214Z\", \"price_tier_id\": 131}]','{\"x\": 592.5304517566777, \"y\": 2278.3618835762563}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1267,'f02ee4b9-492c-49ca-8b40-372315bf10c7','33e4a5c5-882f-47ff-b7cb-c205d6ca224d',23,'','703-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 574.9434672817416, \"y\": 2355.2208409894306}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1268,'ea31f3b7-5bee-45ab-8818-8bcf69952975','33e4a5c5-882f-47ff-b7cb-c205d6ca224d',23,'','703-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 560.6577529960273, \"y\": 2330.477258024161}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1269,'36bad722-23bb-4577-9123-7734d9969bd1','33e4a5c5-882f-47ff-b7cb-c205d6ca224d',23,'','703-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 546.3720387103131, \"y\": 2305.733675058891}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1270,'05f7b15b-6671-424a-a6d2-7b775694dfd9','33e4a5c5-882f-47ff-b7cb-c205d6ca224d',23,'','703-A4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 532.0863244245985, \"y\": 2280.9900920936216}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1271,'42d758cd-eebe-49ae-aeb3-1fbbee45ca33','33e4a5c5-882f-47ff-b7cb-c205d6ca224d',23,'','703-A5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 517.8006101388844, \"y\": 2256.246509128352}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1272,'6760d3a5-ca34-4726-a50f-c71ffac8daf6','33e4a5c5-882f-47ff-b7cb-c205d6ca224d',23,'','703-A6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 503.5148958531702, \"y\": 2231.502926163082}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1273,'524d7636-60cb-437a-bfd9-71546c6575a9','33e4a5c5-882f-47ff-b7cb-c205d6ca224d',23,'','703-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 661.5460076601854, \"y\": 2305.2208409894306}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1274,'06a6e8a0-f39e-49ef-be1d-495ef7ab80bf','33e4a5c5-882f-47ff-b7cb-c205d6ca224d',23,'','703-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 647.2602933744711, \"y\": 2280.4772580241606}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1275,'fc4ec946-5e74-4af0-b2bf-423354116cdf','33e4a5c5-882f-47ff-b7cb-c205d6ca224d',23,'','703-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 632.974579088757, \"y\": 2255.733675058891}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1276,'57de65c4-a276-46e3-b854-5231e651b447','33e4a5c5-882f-47ff-b7cb-c205d6ca224d',23,'','703-B4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 618.6888648030424, \"y\": 2230.9900920936216}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1277,'05ed82ab-64ee-4f70-90fc-7aa5c777900b','33e4a5c5-882f-47ff-b7cb-c205d6ca224d',23,'','703-B5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 604.4031505173282, \"y\": 2206.2465091283516}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1278,'5fff887c-6c70-4cce-972d-ee45ea87070d','33e4a5c5-882f-47ff-b7cb-c205d6ca224d',23,'','703-B6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 590.1174362316139, \"y\": 2181.502926163082}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1279,'a066ab5a-b111-44b9-a668-6ed757728dae',NULL,23,'','704','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 700.5868170329665, \"y\": 2457.656473063403}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"b9e9535f-324f-433a-8c66-23a670dd7b5c\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"704-A1\", \"capacity\": 1, \"position\": {\"x\": 692.9998325580303, \"y\": 2544.5154304765774}, \"arc_angle\": 180, \"direction\": 330, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:31.630Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:42.537Z\", \"price_tier_id\": 131}, {\"id\": \"56478752-d580-4f7c-bf9a-381b096c658c\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"704-A2\", \"capacity\": 1, \"position\": {\"x\": 678.714118272316, \"y\": 2519.771847511308}, \"arc_angle\": 180, \"direction\": 330, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:31.630Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:42.537Z\", \"price_tier_id\": 131}, {\"id\": \"28290ffd-b31a-4632-85c2-b3cdda6e4c42\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"704-A3\", \"capacity\": 1, \"position\": {\"x\": 664.4284039866018, \"y\": 2495.028264546038}, \"arc_angle\": 180, \"direction\": 330, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:31.630Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:42.537Z\", \"price_tier_id\": 131}, {\"id\": \"ebbdc494-429b-4e0c-8bfc-71c50a89831d\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"704-A4\", \"capacity\": 1, \"position\": {\"x\": 650.1426897008872, \"y\": 2470.2846815807684}, \"arc_angle\": 180, \"direction\": 330, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:31.630Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:42.537Z\", \"price_tier_id\": 131}, {\"id\": \"d726344f-308b-48ff-a163-bf426bf9971b\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"704-A5\", \"capacity\": 1, \"position\": {\"x\": 635.8569754151731, \"y\": 2445.541098615499}, \"arc_angle\": 180, \"direction\": 330, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:31.630Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:42.537Z\", \"price_tier_id\": 131}, {\"id\": \"4892a216-ec63-42a9-a438-6d6e14bdac6e\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"704-A6\", \"capacity\": 1, \"position\": {\"x\": 621.5712611294589, \"y\": 2420.797515650229}, \"arc_angle\": 180, \"direction\": 330, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:31.630Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:42.537Z\", \"price_tier_id\": 131}, {\"id\": \"7f238bb8-714c-4d63-ac36-fecb027ef4d2\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"704-B1\", \"capacity\": 1, \"position\": {\"x\": 779.602372936474, \"y\": 2494.5154304765774}, \"arc_angle\": 180, \"direction\": 150, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:31.630Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:42.537Z\", \"price_tier_id\": 131}, {\"id\": \"6d8ad076-a820-484c-a53a-e847a1556a9e\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"704-B2\", \"capacity\": 1, \"position\": {\"x\": 765.3166586507598, \"y\": 2469.771847511307}, \"arc_angle\": 180, \"direction\": 150, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:31.630Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:42.537Z\", \"price_tier_id\": 131}, {\"id\": \"ea5d18dd-1457-4fd3-8743-ab4d62b8c78f\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"704-B3\", \"capacity\": 1, \"position\": {\"x\": 751.0309443650457, \"y\": 2445.028264546038}, \"arc_angle\": 180, \"direction\": 150, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:31.630Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:42.537Z\", \"price_tier_id\": 131}, {\"id\": \"b2ee86c6-eee2-49ab-b3a4-4db5ac75558a\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"704-B4\", \"capacity\": 1, \"position\": {\"x\": 736.7452300793311, \"y\": 2420.2846815807684}, \"arc_angle\": 180, \"direction\": 150, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:31.630Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:42.537Z\", \"price_tier_id\": 131}, {\"id\": \"174f865c-a80b-4b94-a31a-cd9b05a01ce5\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"704-B5\", \"capacity\": 1, \"position\": {\"x\": 722.4595157936169, \"y\": 2395.5410986154984}, \"arc_angle\": 180, \"direction\": 150, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:31.630Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:42.537Z\", \"price_tier_id\": 131}, {\"id\": \"b1ca0d2f-7780-4d0a-92e3-f2915b33f811\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"704-B6\", \"capacity\": 1, \"position\": {\"x\": 708.1738015079026, \"y\": 2370.797515650229}, \"arc_angle\": 180, \"direction\": 150, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:31.630Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:00:42.537Z\", \"price_tier_id\": 131}]','{\"x\": 680.5868170329665, \"y\": 2429.818831851473}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1280,'b9e9535f-324f-433a-8c66-23a670dd7b5c','a066ab5a-b111-44b9-a668-6ed757728dae',23,'','704-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 692.9998325580303, \"y\": 2544.5154304765774}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1281,'56478752-d580-4f7c-bf9a-381b096c658c','a066ab5a-b111-44b9-a668-6ed757728dae',23,'','704-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 678.714118272316, \"y\": 2519.771847511308}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1282,'28290ffd-b31a-4632-85c2-b3cdda6e4c42','a066ab5a-b111-44b9-a668-6ed757728dae',23,'','704-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 664.4284039866018, \"y\": 2495.028264546038}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1283,'ebbdc494-429b-4e0c-8bfc-71c50a89831d','a066ab5a-b111-44b9-a668-6ed757728dae',23,'','704-A4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 650.1426897008872, \"y\": 2470.2846815807684}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1284,'d726344f-308b-48ff-a163-bf426bf9971b','a066ab5a-b111-44b9-a668-6ed757728dae',23,'','704-A5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 635.8569754151731, \"y\": 2445.541098615499}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1285,'4892a216-ec63-42a9-a438-6d6e14bdac6e','a066ab5a-b111-44b9-a668-6ed757728dae',23,'','704-A6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 621.5712611294589, \"y\": 2420.797515650229}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1286,'7f238bb8-714c-4d63-ac36-fecb027ef4d2','a066ab5a-b111-44b9-a668-6ed757728dae',23,'','704-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 779.602372936474, \"y\": 2494.5154304765774}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1287,'6d8ad076-a820-484c-a53a-e847a1556a9e','a066ab5a-b111-44b9-a668-6ed757728dae',23,'','704-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 765.3166586507598, \"y\": 2469.771847511307}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1288,'ea5d18dd-1457-4fd3-8743-ab4d62b8c78f','a066ab5a-b111-44b9-a668-6ed757728dae',23,'','704-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 751.0309443650457, \"y\": 2445.028264546038}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1289,'b2ee86c6-eee2-49ab-b3a4-4db5ac75558a','a066ab5a-b111-44b9-a668-6ed757728dae',23,'','704-B4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 736.7452300793311, \"y\": 2420.2846815807684}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1290,'174f865c-a80b-4b94-a31a-cd9b05a01ce5','a066ab5a-b111-44b9-a668-6ed757728dae',23,'','704-B5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 722.4595157936169, \"y\": 2395.5410986154984}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1291,'b1ca0d2f-7780-4d0a-92e3-f2915b33f811','a066ab5a-b111-44b9-a668-6ed757728dae',23,'','704-B6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 708.1738015079026, \"y\": 2370.797515650229}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1292,'98f0fbc0-2876-4373-a088-892f29cf97b1',NULL,23,'','705','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1208.925008690699, \"y\": 2688.704545763762}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"9f37cdfe-9f77-4d39-b308-532cdef7c617\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"705-A1\", \"capacity\": 1, \"position\": {\"x\": 1137.4964372621278, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:32.683Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:32.683Z\", \"price_tier_id\": 131}, {\"id\": \"e472b3e8-ea72-4c13-975b-647aec11a48d\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"705-A2\", \"capacity\": 1, \"position\": {\"x\": 1166.0678658335562, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:32.683Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:32.683Z\", \"price_tier_id\": 131}, {\"id\": \"e2af6487-7db4-4f8d-81c1-c6845818a087\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"705-A3\", \"capacity\": 1, \"position\": {\"x\": 1194.6392944049849, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:32.683Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:32.683Z\", \"price_tier_id\": 131}, {\"id\": \"aa3a4768-03b1-4e67-b8d7-727bc77af326\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"705-A4\", \"capacity\": 1, \"position\": {\"x\": 1223.2107229764133, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:32.683Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:32.683Z\", \"price_tier_id\": 131}, {\"id\": \"89949c74-9be3-43f6-a310-11b8ad03fa9c\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"705-A5\", \"capacity\": 1, \"position\": {\"x\": 1251.782151547842, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:32.683Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:32.683Z\", \"price_tier_id\": 131}, {\"id\": \"4f7732ed-10f9-4a44-9050-1ce50570adb0\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"705-A6\", \"capacity\": 1, \"position\": {\"x\": 1280.3535801192706, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:32.683Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:32.683Z\", \"price_tier_id\": 131}, {\"id\": \"f30aad89-bb6d-4fc1-bdcf-0197a2e94aa3\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"705-B1\", \"capacity\": 1, \"position\": {\"x\": 1137.4964372621278, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:32.683Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:32.683Z\", \"price_tier_id\": 131}, {\"id\": \"e44831c8-e18a-453a-870f-993e6e81bbcf\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"705-B2\", \"capacity\": 1, \"position\": {\"x\": 1166.0678658335562, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:32.683Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:32.683Z\", \"price_tier_id\": 131}, {\"id\": \"4118ca64-c73c-46c3-abf7-6ef41589ce36\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"705-B3\", \"capacity\": 1, \"position\": {\"x\": 1194.6392944049849, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:32.683Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:32.683Z\", \"price_tier_id\": 131}, {\"id\": \"6615fbc4-7644-46aa-8e15-4780696fdfbe\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"705-B4\", \"capacity\": 1, \"position\": {\"x\": 1223.2107229764133, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:32.683Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:32.683Z\", \"price_tier_id\": 131}, {\"id\": \"dc6d0454-7b83-47a1-86b9-b3c16028d2f3\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"705-B5\", \"capacity\": 1, \"position\": {\"x\": 1251.782151547842, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:32.683Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:32.683Z\", \"price_tier_id\": 131}, {\"id\": \"97abd20a-55f2-461f-b4c7-4b462ce4a660\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"705-B6\", \"capacity\": 1, \"position\": {\"x\": 1280.3535801192706, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:32.683Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:32.683Z\", \"price_tier_id\": 131}]','{\"x\": 1208.925008690699, \"y\": 2688.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1293,'9f37cdfe-9f77-4d39-b308-532cdef7c617','98f0fbc0-2876-4373-a088-892f29cf97b1',23,'','705-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1137.4964372621278, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1294,'e472b3e8-ea72-4c13-975b-647aec11a48d','98f0fbc0-2876-4373-a088-892f29cf97b1',23,'','705-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1166.0678658335562, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1295,'e2af6487-7db4-4f8d-81c1-c6845818a087','98f0fbc0-2876-4373-a088-892f29cf97b1',23,'','705-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1194.6392944049849, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1296,'aa3a4768-03b1-4e67-b8d7-727bc77af326','98f0fbc0-2876-4373-a088-892f29cf97b1',23,'','705-A4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1223.2107229764133, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1297,'89949c74-9be3-43f6-a310-11b8ad03fa9c','98f0fbc0-2876-4373-a088-892f29cf97b1',23,'','705-A5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1251.782151547842, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1298,'4f7732ed-10f9-4a44-9050-1ce50570adb0','98f0fbc0-2876-4373-a088-892f29cf97b1',23,'','705-A6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1280.3535801192706, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1299,'f30aad89-bb6d-4fc1-bdcf-0197a2e94aa3','98f0fbc0-2876-4373-a088-892f29cf97b1',23,'','705-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1137.4964372621278, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1300,'e44831c8-e18a-453a-870f-993e6e81bbcf','98f0fbc0-2876-4373-a088-892f29cf97b1',23,'','705-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1166.0678658335562, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1301,'4118ca64-c73c-46c3-abf7-6ef41589ce36','98f0fbc0-2876-4373-a088-892f29cf97b1',23,'','705-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1194.6392944049849, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1302,'6615fbc4-7644-46aa-8e15-4780696fdfbe','98f0fbc0-2876-4373-a088-892f29cf97b1',23,'','705-B4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1223.2107229764133, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1303,'dc6d0454-7b83-47a1-86b9-b3c16028d2f3','98f0fbc0-2876-4373-a088-892f29cf97b1',23,'','705-B5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1251.782151547842, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1304,'97abd20a-55f2-461f-b4c7-4b462ce4a660','98f0fbc0-2876-4373-a088-892f29cf97b1',23,'','705-B6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1280.3535801192706, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1305,'99b662a3-7414-4fd1-946d-e3f4a58c4847',NULL,23,'','706','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1624.5510527947818, \"y\": 2688.704545763762}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"d35c74bf-c131-470e-a5ae-bd96f9cfcd8a\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"706-A1\", \"capacity\": 1, \"position\": {\"x\": 1553.1224813662104, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.247Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.247Z\", \"price_tier_id\": 131}, {\"id\": \"db028062-a6bf-4a4a-b1ca-bbb079a6b542\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"706-A2\", \"capacity\": 1, \"position\": {\"x\": 1581.6939099376389, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.247Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.247Z\", \"price_tier_id\": 131}, {\"id\": \"4f839d1e-9325-4f22-b2c4-49e862c4285b\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"706-A3\", \"capacity\": 1, \"position\": {\"x\": 1610.2653385090675, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.247Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.247Z\", \"price_tier_id\": 131}, {\"id\": \"b1988a45-d54c-4f9a-9578-84c3a6d81c09\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"706-A4\", \"capacity\": 1, \"position\": {\"x\": 1638.836767080496, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.247Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.247Z\", \"price_tier_id\": 131}, {\"id\": \"c2f6a153-0535-4bb9-9152-62b28e030fad\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"706-A5\", \"capacity\": 1, \"position\": {\"x\": 1667.4081956519246, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.247Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.247Z\", \"price_tier_id\": 131}, {\"id\": \"76f1c9a3-377a-4d8f-a4dc-782c8d3d77db\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"706-A6\", \"capacity\": 1, \"position\": {\"x\": 1695.9796242233533, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.247Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.247Z\", \"price_tier_id\": 131}, {\"id\": \"ce163413-1a1e-44dc-9582-285019a96456\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"706-B1\", \"capacity\": 1, \"position\": {\"x\": 1553.1224813662104, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.247Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.247Z\", \"price_tier_id\": 131}, {\"id\": \"48162927-699e-4c5d-8161-9ebeabdbcaeb\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"706-B2\", \"capacity\": 1, \"position\": {\"x\": 1581.6939099376389, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.247Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.247Z\", \"price_tier_id\": 131}, {\"id\": \"8d658954-3f50-44ca-ad1e-afd631dfec21\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"706-B3\", \"capacity\": 1, \"position\": {\"x\": 1610.2653385090675, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.247Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.247Z\", \"price_tier_id\": 131}, {\"id\": \"45bd4c0d-79c5-400b-9b48-4d409c26107e\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"706-B4\", \"capacity\": 1, \"position\": {\"x\": 1638.836767080496, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.247Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.247Z\", \"price_tier_id\": 131}, {\"id\": \"be0b9dd1-ce95-4ec9-b309-b4bfb8bf55b5\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"706-B5\", \"capacity\": 1, \"position\": {\"x\": 1667.4081956519246, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.247Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.247Z\", \"price_tier_id\": 131}, {\"id\": \"f64b3dfc-4d5d-4ee1-a632-81810671a71a\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"706-B6\", \"capacity\": 1, \"position\": {\"x\": 1695.9796242233533, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.247Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.247Z\", \"price_tier_id\": 131}]','{\"x\": 1624.5510527947818, \"y\": 2688.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1306,'d35c74bf-c131-470e-a5ae-bd96f9cfcd8a','99b662a3-7414-4fd1-946d-e3f4a58c4847',23,'','706-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1553.1224813662104, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1307,'db028062-a6bf-4a4a-b1ca-bbb079a6b542','99b662a3-7414-4fd1-946d-e3f4a58c4847',23,'','706-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1581.6939099376389, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1308,'4f839d1e-9325-4f22-b2c4-49e862c4285b','99b662a3-7414-4fd1-946d-e3f4a58c4847',23,'','706-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1610.2653385090675, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1309,'b1988a45-d54c-4f9a-9578-84c3a6d81c09','99b662a3-7414-4fd1-946d-e3f4a58c4847',23,'','706-A4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1638.836767080496, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1310,'c2f6a153-0535-4bb9-9152-62b28e030fad','99b662a3-7414-4fd1-946d-e3f4a58c4847',23,'','706-A5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1667.4081956519246, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1311,'76f1c9a3-377a-4d8f-a4dc-782c8d3d77db','99b662a3-7414-4fd1-946d-e3f4a58c4847',23,'','706-A6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1695.9796242233533, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1312,'ce163413-1a1e-44dc-9582-285019a96456','99b662a3-7414-4fd1-946d-e3f4a58c4847',23,'','706-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1553.1224813662104, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1313,'48162927-699e-4c5d-8161-9ebeabdbcaeb','99b662a3-7414-4fd1-946d-e3f4a58c4847',23,'','706-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1581.6939099376389, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1314,'8d658954-3f50-44ca-ad1e-afd631dfec21','99b662a3-7414-4fd1-946d-e3f4a58c4847',23,'','706-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1610.2653385090675, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1315,'45bd4c0d-79c5-400b-9b48-4d409c26107e','99b662a3-7414-4fd1-946d-e3f4a58c4847',23,'','706-B4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1638.836767080496, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1316,'be0b9dd1-ce95-4ec9-b309-b4bfb8bf55b5','99b662a3-7414-4fd1-946d-e3f4a58c4847',23,'','706-B5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1667.4081956519246, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1317,'f64b3dfc-4d5d-4ee1-a632-81810671a71a','99b662a3-7414-4fd1-946d-e3f4a58c4847',23,'','706-B6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1695.9796242233533, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1318,'68b2a280-2752-473c-b945-b59ac21be9ff',NULL,23,'','707','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 1916.8981855120603, \"y\": 2688.704545763762}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"fe1dea6a-928c-4ff0-b261-4ffc7359c32c\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"707-A1\", \"capacity\": 1, \"position\": {\"x\": 1845.4696140834892, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.891Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.891Z\", \"price_tier_id\": 131}, {\"id\": \"98c9d241-100f-4018-b264-42fd2862f7c4\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"707-A2\", \"capacity\": 1, \"position\": {\"x\": 1874.0410426549176, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.891Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.891Z\", \"price_tier_id\": 131}, {\"id\": \"dd1efd4c-3ae6-4976-bca2-1b18740b67e0\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"707-A3\", \"capacity\": 1, \"position\": {\"x\": 1902.6124712263463, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.891Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.891Z\", \"price_tier_id\": 131}, {\"id\": \"758110fa-239b-48d4-9114-7df9376c5753\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"707-A4\", \"capacity\": 1, \"position\": {\"x\": 1931.1838997977748, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.891Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.891Z\", \"price_tier_id\": 131}, {\"id\": \"e354a8aa-fcff-4154-9f05-f3b2ddb834c8\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"707-A5\", \"capacity\": 1, \"position\": {\"x\": 1959.7553283692032, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.891Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.891Z\", \"price_tier_id\": 131}, {\"id\": \"ef5e4d4e-dcbd-4ed0-bd5b-7edce1d69502\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"707-A6\", \"capacity\": 1, \"position\": {\"x\": 1988.326756940632, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.891Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.891Z\", \"price_tier_id\": 131}, {\"id\": \"9c207b48-2904-43e1-9657-e270b3f0880f\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"707-B1\", \"capacity\": 1, \"position\": {\"x\": 1845.4696140834892, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.891Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.891Z\", \"price_tier_id\": 131}, {\"id\": \"a722e3ec-3294-489b-b356-399be61b0d39\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"707-B2\", \"capacity\": 1, \"position\": {\"x\": 1874.0410426549176, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.891Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.891Z\", \"price_tier_id\": 131}, {\"id\": \"12db76b5-d4fe-4502-b5d8-2ebacc2e41e4\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"707-B3\", \"capacity\": 1, \"position\": {\"x\": 1902.6124712263463, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.891Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.891Z\", \"price_tier_id\": 131}, {\"id\": \"b18d90a9-fd4a-45ec-b320-a155603364ad\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"707-B4\", \"capacity\": 1, \"position\": {\"x\": 1931.1838997977748, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.891Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.891Z\", \"price_tier_id\": 131}, {\"id\": \"4f39995b-dd5b-4ba0-add6-887e673ae5dd\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"707-B5\", \"capacity\": 1, \"position\": {\"x\": 1959.7553283692032, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.891Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.891Z\", \"price_tier_id\": 131}, {\"id\": \"098f9b30-f387-4596-a3ed-ef37b076c6ac\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"707-B6\", \"capacity\": 1, \"position\": {\"x\": 1988.326756940632, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:34.891Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:34.891Z\", \"price_tier_id\": 131}]','{\"x\": 1916.8981855120603, \"y\": 2688.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1319,'fe1dea6a-928c-4ff0-b261-4ffc7359c32c','68b2a280-2752-473c-b945-b59ac21be9ff',23,'','707-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1845.4696140834892, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1320,'98c9d241-100f-4018-b264-42fd2862f7c4','68b2a280-2752-473c-b945-b59ac21be9ff',23,'','707-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1874.0410426549176, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1321,'dd1efd4c-3ae6-4976-bca2-1b18740b67e0','68b2a280-2752-473c-b945-b59ac21be9ff',23,'','707-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1902.6124712263463, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1322,'758110fa-239b-48d4-9114-7df9376c5753','68b2a280-2752-473c-b945-b59ac21be9ff',23,'','707-A4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1931.1838997977748, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1323,'e354a8aa-fcff-4154-9f05-f3b2ddb834c8','68b2a280-2752-473c-b945-b59ac21be9ff',23,'','707-A5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1959.7553283692032, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1324,'ef5e4d4e-dcbd-4ed0-bd5b-7edce1d69502','68b2a280-2752-473c-b945-b59ac21be9ff',23,'','707-A6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1988.326756940632, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1325,'9c207b48-2904-43e1-9657-e270b3f0880f','68b2a280-2752-473c-b945-b59ac21be9ff',23,'','707-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1845.4696140834892, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1326,'a722e3ec-3294-489b-b356-399be61b0d39','68b2a280-2752-473c-b945-b59ac21be9ff',23,'','707-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1874.0410426549176, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1327,'12db76b5-d4fe-4502-b5d8-2ebacc2e41e4','68b2a280-2752-473c-b945-b59ac21be9ff',23,'','707-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1902.6124712263463, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1328,'b18d90a9-fd4a-45ec-b320-a155603364ad','68b2a280-2752-473c-b945-b59ac21be9ff',23,'','707-B4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1931.1838997977748, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1329,'4f39995b-dd5b-4ba0-add6-887e673ae5dd','68b2a280-2752-473c-b945-b59ac21be9ff',23,'','707-B5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1959.7553283692032, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1330,'098f9b30-f387-4596-a3ed-ef37b076c6ac','68b2a280-2752-473c-b945-b59ac21be9ff',23,'','707-B6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 1988.326756940632, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1331,'5a413e62-9ddd-4d5f-b727-6527b6694fc8',NULL,23,'','708','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2427.6251041145356, \"y\": 2688.704545763762}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"5d8a4cdd-bb05-4e47-9145-d820418c6000\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"708-A1\", \"capacity\": 1, \"position\": {\"x\": 2356.196532685964, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:35.786Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:35.786Z\", \"price_tier_id\": 131}, {\"id\": \"91a91428-fc38-4b67-860d-35ae28b79936\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"708-A2\", \"capacity\": 1, \"position\": {\"x\": 2384.767961257393, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:35.786Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:35.786Z\", \"price_tier_id\": 131}, {\"id\": \"5daae556-cbf0-467a-8305-56cf983e67a8\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"708-A3\", \"capacity\": 1, \"position\": {\"x\": 2413.339389828822, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:35.786Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:35.786Z\", \"price_tier_id\": 131}, {\"id\": \"2678fdb0-0f00-46d9-9085-b51f56ca5fd8\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"708-A4\", \"capacity\": 1, \"position\": {\"x\": 2441.91081840025, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:35.786Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:35.786Z\", \"price_tier_id\": 131}, {\"id\": \"e7ca4f18-3229-4d39-8121-0470a7f20a74\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"708-A5\", \"capacity\": 1, \"position\": {\"x\": 2470.4822469716783, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:35.786Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:35.786Z\", \"price_tier_id\": 131}, {\"id\": \"00b4c829-04d3-4581-ab42-191aac01f690\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"708-A6\", \"capacity\": 1, \"position\": {\"x\": 2499.053675543107, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:35.786Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:35.786Z\", \"price_tier_id\": 131}, {\"id\": \"89592016-adb1-459e-b2e0-6eb882d5d21f\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"708-B1\", \"capacity\": 1, \"position\": {\"x\": 2356.196532685964, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:35.786Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:35.786Z\", \"price_tier_id\": 131}, {\"id\": \"1aa3f34a-1ed4-4cae-a024-321e9d6e503c\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"708-B2\", \"capacity\": 1, \"position\": {\"x\": 2384.767961257393, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:35.786Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:35.786Z\", \"price_tier_id\": 131}, {\"id\": \"7224250f-c052-48de-b4c3-357c5747f887\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"708-B3\", \"capacity\": 1, \"position\": {\"x\": 2413.339389828822, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:35.786Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:35.786Z\", \"price_tier_id\": 131}, {\"id\": \"ea71106a-7104-463f-b0ec-3dd2eca8ab0f\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"708-B4\", \"capacity\": 1, \"position\": {\"x\": 2441.91081840025, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:35.786Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:35.786Z\", \"price_tier_id\": 131}, {\"id\": \"48d72532-1e61-4501-b913-acd0593f9a5f\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"708-B5\", \"capacity\": 1, \"position\": {\"x\": 2470.4822469716783, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:35.786Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:35.786Z\", \"price_tier_id\": 131}, {\"id\": \"5655c670-02c4-4054-bf59-e5ee5c655976\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"708-B6\", \"capacity\": 1, \"position\": {\"x\": 2499.053675543107, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:35.786Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:35.786Z\", \"price_tier_id\": 131}]','{\"x\": 2427.6251041145356, \"y\": 2688.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1332,'5d8a4cdd-bb05-4e47-9145-d820418c6000','5a413e62-9ddd-4d5f-b727-6527b6694fc8',23,'','708-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2356.196532685964, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1333,'91a91428-fc38-4b67-860d-35ae28b79936','5a413e62-9ddd-4d5f-b727-6527b6694fc8',23,'','708-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2384.767961257393, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1334,'5daae556-cbf0-467a-8305-56cf983e67a8','5a413e62-9ddd-4d5f-b727-6527b6694fc8',23,'','708-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2413.339389828822, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1335,'2678fdb0-0f00-46d9-9085-b51f56ca5fd8','5a413e62-9ddd-4d5f-b727-6527b6694fc8',23,'','708-A4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2441.91081840025, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1336,'e7ca4f18-3229-4d39-8121-0470a7f20a74','5a413e62-9ddd-4d5f-b727-6527b6694fc8',23,'','708-A5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2470.4822469716783, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1337,'00b4c829-04d3-4581-ab42-191aac01f690','5a413e62-9ddd-4d5f-b727-6527b6694fc8',23,'','708-A6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2499.053675543107, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1338,'89592016-adb1-459e-b2e0-6eb882d5d21f','5a413e62-9ddd-4d5f-b727-6527b6694fc8',23,'','708-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2356.196532685964, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1339,'1aa3f34a-1ed4-4cae-a024-321e9d6e503c','5a413e62-9ddd-4d5f-b727-6527b6694fc8',23,'','708-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2384.767961257393, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1340,'7224250f-c052-48de-b4c3-357c5747f887','5a413e62-9ddd-4d5f-b727-6527b6694fc8',23,'','708-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2413.339389828822, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1341,'ea71106a-7104-463f-b0ec-3dd2eca8ab0f','5a413e62-9ddd-4d5f-b727-6527b6694fc8',23,'','708-B4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2441.91081840025, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1342,'48d72532-1e61-4501-b913-acd0593f9a5f','5a413e62-9ddd-4d5f-b727-6527b6694fc8',23,'','708-B5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2470.4822469716783, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1343,'5655c670-02c4-4054-bf59-e5ee5c655976','5a413e62-9ddd-4d5f-b727-6527b6694fc8',23,'','708-B6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2499.053675543107, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1344,'1b276657-23cc-4753-9c2e-69ead5a20e4a',NULL,23,'','709','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2714.628019109175, \"y\": 2688.704545763762}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"0b14370a-7ad0-4735-87f4-d80bf44891e5\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"709-A1\", \"capacity\": 1, \"position\": {\"x\": 2643.1994476806035, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.208Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:03.946Z\", \"price_tier_id\": 131}, {\"id\": \"7dd88669-1895-49a5-939e-2800b531efd6\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"709-A2\", \"capacity\": 1, \"position\": {\"x\": 2671.7708762520324, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.208Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:03.946Z\", \"price_tier_id\": 131}, {\"id\": \"0e533e55-b8ca-4dac-a567-18fca861e909\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"709-A3\", \"capacity\": 1, \"position\": {\"x\": 2700.342304823461, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.208Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:03.946Z\", \"price_tier_id\": 131}, {\"id\": \"2959ae92-40a2-4ed2-84a6-f43b0ab8ae9e\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"709-A4\", \"capacity\": 1, \"position\": {\"x\": 2728.9137333948893, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.208Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:03.946Z\", \"price_tier_id\": 131}, {\"id\": \"6546e761-6352-4383-bf31-6a21b15dd50c\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"709-A5\", \"capacity\": 1, \"position\": {\"x\": 2757.4851619663177, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.208Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:03.946Z\", \"price_tier_id\": 131}, {\"id\": \"951688f6-51a9-4f5a-9d8b-1b78eca8ec19\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"709-A6\", \"capacity\": 1, \"position\": {\"x\": 2786.0565905377466, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.208Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:03.946Z\", \"price_tier_id\": 131}, {\"id\": \"06111395-3740-4568-9449-950f82fc5597\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"709-B1\", \"capacity\": 1, \"position\": {\"x\": 2643.1994476806035, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.208Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:03.946Z\", \"price_tier_id\": 131}, {\"id\": \"5cb2665c-f326-43d7-b0b0-14c6ddfe959b\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"709-B2\", \"capacity\": 1, \"position\": {\"x\": 2671.7708762520324, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.208Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:03.946Z\", \"price_tier_id\": 131}, {\"id\": \"1933da8b-3562-4f5e-8c05-51398ebc0723\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"709-B3\", \"capacity\": 1, \"position\": {\"x\": 2700.342304823461, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.208Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:03.946Z\", \"price_tier_id\": 131}, {\"id\": \"57fc3875-a2a4-4855-99da-aef4f01fded0\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"709-B4\", \"capacity\": 1, \"position\": {\"x\": 2728.9137333948893, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.208Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:03.946Z\", \"price_tier_id\": 131}, {\"id\": \"5b4be08c-8ee7-491b-b97c-98cef3bd3b5b\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"709-B5\", \"capacity\": 1, \"position\": {\"x\": 2757.4851619663177, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.208Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:03.946Z\", \"price_tier_id\": 131}, {\"id\": \"40184c63-6c39-4394-ae35-05a551ffe64d\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"709-B6\", \"capacity\": 1, \"position\": {\"x\": 2786.0565905377466, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.208Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:03.946Z\", \"price_tier_id\": 131}]','{\"x\": 2744.628019109175, \"y\": 2688.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1345,'0b14370a-7ad0-4735-87f4-d80bf44891e5','1b276657-23cc-4753-9c2e-69ead5a20e4a',23,'','709-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2643.1994476806035, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1346,'7dd88669-1895-49a5-939e-2800b531efd6','1b276657-23cc-4753-9c2e-69ead5a20e4a',23,'','709-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2671.7708762520324, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1347,'0e533e55-b8ca-4dac-a567-18fca861e909','1b276657-23cc-4753-9c2e-69ead5a20e4a',23,'','709-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2700.342304823461, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1348,'2959ae92-40a2-4ed2-84a6-f43b0ab8ae9e','1b276657-23cc-4753-9c2e-69ead5a20e4a',23,'','709-A4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2728.9137333948893, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1349,'6546e761-6352-4383-bf31-6a21b15dd50c','1b276657-23cc-4753-9c2e-69ead5a20e4a',23,'','709-A5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2757.4851619663177, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1350,'951688f6-51a9-4f5a-9d8b-1b78eca8ec19','1b276657-23cc-4753-9c2e-69ead5a20e4a',23,'','709-A6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2786.0565905377466, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1351,'06111395-3740-4568-9449-950f82fc5597','1b276657-23cc-4753-9c2e-69ead5a20e4a',23,'','709-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2643.1994476806035, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1352,'5cb2665c-f326-43d7-b0b0-14c6ddfe959b','1b276657-23cc-4753-9c2e-69ead5a20e4a',23,'','709-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2671.7708762520324, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1353,'1933da8b-3562-4f5e-8c05-51398ebc0723','1b276657-23cc-4753-9c2e-69ead5a20e4a',23,'','709-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2700.342304823461, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1354,'57fc3875-a2a4-4855-99da-aef4f01fded0','1b276657-23cc-4753-9c2e-69ead5a20e4a',23,'','709-B4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2728.9137333948893, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1355,'5b4be08c-8ee7-491b-b97c-98cef3bd3b5b','1b276657-23cc-4753-9c2e-69ead5a20e4a',23,'','709-B5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2757.4851619663177, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1356,'40184c63-6c39-4394-ae35-05a551ffe64d','1b276657-23cc-4753-9c2e-69ead5a20e4a',23,'','709-B6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2786.0565905377466, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1357,'feb6c351-fc01-470d-b1e1-814976bd529c',NULL,23,'','710','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 2952.441041161216, \"y\": 2688.704545763762}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"842bf93f-7105-4b3f-bab7-60395d7bfa9f\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"710-A1\", \"capacity\": 1, \"position\": {\"x\": 2881.0124697326446, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.963Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:36.963Z\", \"price_tier_id\": 131}, {\"id\": \"97dd0caa-ad80-47e2-a5ae-bfe4160ac260\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"710-A2\", \"capacity\": 1, \"position\": {\"x\": 2909.5838983040735, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.963Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:36.963Z\", \"price_tier_id\": 131}, {\"id\": \"3e58ff2b-1a3e-4c8b-ae0e-6cfddea4adf3\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"710-A3\", \"capacity\": 1, \"position\": {\"x\": 2938.155326875502, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.963Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:36.963Z\", \"price_tier_id\": 131}, {\"id\": \"2510bb99-ce9c-444a-ac33-5aea258dec6c\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"710-A4\", \"capacity\": 1, \"position\": {\"x\": 2966.7267554469304, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.963Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:36.963Z\", \"price_tier_id\": 131}, {\"id\": \"dda06d3c-994d-4ae3-8c6d-508da44a193c\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"710-A5\", \"capacity\": 1, \"position\": {\"x\": 2995.298184018359, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.963Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:36.963Z\", \"price_tier_id\": 131}, {\"id\": \"ca0c5c3c-7ea9-4c76-bc04-cc220b0db83f\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"710-A6\", \"capacity\": 1, \"position\": {\"x\": 3023.8696125897877, \"y\": 2638.704545763762}, \"arc_angle\": 180, \"direction\": 90, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.963Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:36.963Z\", \"price_tier_id\": 131}, {\"id\": \"eb5f0099-699b-448b-9827-5bf6960489fa\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"710-B1\", \"capacity\": 1, \"position\": {\"x\": 2881.0124697326446, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.963Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:36.963Z\", \"price_tier_id\": 131}, {\"id\": \"8c9bab2c-4205-4828-9720-cfd3faacee79\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"710-B2\", \"capacity\": 1, \"position\": {\"x\": 2909.5838983040735, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.963Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:36.963Z\", \"price_tier_id\": 131}, {\"id\": \"d3b12a5e-cb3a-495b-9774-c4594244096d\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"710-B3\", \"capacity\": 1, \"position\": {\"x\": 2938.155326875502, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.963Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:36.963Z\", \"price_tier_id\": 131}, {\"id\": \"b9172045-8dbd-4ef3-b31f-a26f5501be8c\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"710-B4\", \"capacity\": 1, \"position\": {\"x\": 2966.7267554469304, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.963Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:36.963Z\", \"price_tier_id\": 131}, {\"id\": \"4f41b778-b038-4d51-a1cf-76220dea8531\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"710-B5\", \"capacity\": 1, \"position\": {\"x\": 2995.298184018359, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.963Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:36.963Z\", \"price_tier_id\": 131}, {\"id\": \"d83d74f4-a197-454c-a69a-a93d819801bd\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"710-B6\", \"capacity\": 1, \"position\": {\"x\": 3023.8696125897877, \"y\": 2738.704545763762}, \"arc_angle\": 180, \"direction\": 270, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:36.963Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T10:59:36.963Z\", \"price_tier_id\": 131}]','{\"x\": 2952.441041161216, \"y\": 2688.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1358,'842bf93f-7105-4b3f-bab7-60395d7bfa9f','feb6c351-fc01-470d-b1e1-814976bd529c',23,'','710-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2881.0124697326446, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1359,'97dd0caa-ad80-47e2-a5ae-bfe4160ac260','feb6c351-fc01-470d-b1e1-814976bd529c',23,'','710-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2909.5838983040735, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1360,'3e58ff2b-1a3e-4c8b-ae0e-6cfddea4adf3','feb6c351-fc01-470d-b1e1-814976bd529c',23,'','710-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2938.155326875502, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1361,'2510bb99-ce9c-444a-ac33-5aea258dec6c','feb6c351-fc01-470d-b1e1-814976bd529c',23,'','710-A4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2966.7267554469304, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1362,'dda06d3c-994d-4ae3-8c6d-508da44a193c','feb6c351-fc01-470d-b1e1-814976bd529c',23,'','710-A5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2995.298184018359, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1363,'ca0c5c3c-7ea9-4c76-bc04-cc220b0db83f','feb6c351-fc01-470d-b1e1-814976bd529c',23,'','710-A6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3023.8696125897877, \"y\": 2638.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1364,'eb5f0099-699b-448b-9827-5bf6960489fa','feb6c351-fc01-470d-b1e1-814976bd529c',23,'','710-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2881.0124697326446, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1365,'8c9bab2c-4205-4828-9720-cfd3faacee79','feb6c351-fc01-470d-b1e1-814976bd529c',23,'','710-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2909.5838983040735, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1366,'d3b12a5e-cb3a-495b-9774-c4594244096d','feb6c351-fc01-470d-b1e1-814976bd529c',23,'','710-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2938.155326875502, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1367,'b9172045-8dbd-4ef3-b31f-a26f5501be8c','feb6c351-fc01-470d-b1e1-814976bd529c',23,'','710-B4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2966.7267554469304, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1368,'4f41b778-b038-4d51-a1cf-76220dea8531','feb6c351-fc01-470d-b1e1-814976bd529c',23,'','710-B5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 2995.298184018359, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1369,'d83d74f4-a197-454c-a69a-a93d819801bd','feb6c351-fc01-470d-b1e1-814976bd529c',23,'','710-B6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3023.8696125897877, \"y\": 2738.704545763762}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1370,'3937226c-8dbc-4bb2-9555-2c79237156ef',NULL,23,'','711','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 3280.126729959628, \"y\": 2566.869569508691}, \"dimensions\": {\"width\": 130, \"height\": 80}, \"seat_count\": 6, \"seat_spacing\": 25}','[{\"id\": \"d1bfdd50-555b-4be5-a963-93dca344d138\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"711-A1\", \"capacity\": 1, \"position\": {\"x\": 3223.031909517177, \"y\": 2549.652383947621}, \"arc_angle\": 180, \"direction\": 49.804775670740014, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:51.834Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:57:44.432Z\", \"price_tier_id\": 131}, {\"id\": \"d42f80ec-1797-450a-9bf7-f2a57e598198\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"711-A2\", \"capacity\": 1, \"position\": {\"x\": 3247.857028850486, \"y\": 2528.677078226678}, \"arc_angle\": 180, \"direction\": 49.804775670740014, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:51.834Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:57:44.432Z\", \"price_tier_id\": 131}, {\"id\": \"534dc45a-ac08-42fa-9771-572ff8990701\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"711-A3\", \"capacity\": 1, \"position\": {\"x\": 3272.6821481837937, \"y\": 2507.701772505736}, \"arc_angle\": 180, \"direction\": 49.804775670740014, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:51.834Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:57:44.432Z\", \"price_tier_id\": 131}, {\"id\": \"6b2bb0b6-6f27-4ab5-99e8-a702fe8a4919\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"711-B1\", \"capacity\": 1, \"position\": {\"x\": 3287.571311735462, \"y\": 2626.037366511646}, \"arc_angle\": 180, \"direction\": 229.80477567074, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:51.834Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:57:44.432Z\", \"price_tier_id\": 131}, {\"id\": \"5a114231-4822-4bcd-9e20-5b633b7ae966\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"711-B2\", \"capacity\": 1, \"position\": {\"x\": 3312.3964310687697, \"y\": 2605.0620607907035}, \"arc_angle\": 180, \"direction\": 229.80477567074, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:51.834Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:57:44.432Z\", \"price_tier_id\": 131}, {\"id\": \"baa521b3-a399-46b5-922e-6b0a1ca06d81\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"711-B3\", \"capacity\": 1, \"position\": {\"x\": 3337.2215504020787, \"y\": 2584.086755069761}, \"arc_angle\": 180, \"direction\": 229.80477567074, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:51.834Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-06T18:57:44.432Z\", \"price_tier_id\": 131}]','{\"x\": 3265.9217015448044, \"y\": 2574.2312709045864}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1371,'d1bfdd50-555b-4be5-a963-93dca344d138','3937226c-8dbc-4bb2-9555-2c79237156ef',23,'','711-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3223.031909517177, \"y\": 2549.652383947621}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1372,'d42f80ec-1797-450a-9bf7-f2a57e598198','3937226c-8dbc-4bb2-9555-2c79237156ef',23,'','711-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3247.857028850486, \"y\": 2528.677078226678}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1373,'534dc45a-ac08-42fa-9771-572ff8990701','3937226c-8dbc-4bb2-9555-2c79237156ef',23,'','711-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3272.6821481837937, \"y\": 2507.701772505736}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1374,'6b2bb0b6-6f27-4ab5-99e8-a702fe8a4919','3937226c-8dbc-4bb2-9555-2c79237156ef',23,'','711-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3287.571311735462, \"y\": 2626.037366511646}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1375,'5a114231-4822-4bcd-9e20-5b633b7ae966','3937226c-8dbc-4bb2-9555-2c79237156ef',23,'','711-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3312.3964310687697, \"y\": 2605.0620607907035}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1376,'baa521b3-a399-46b5-922e-6b0a1ca06d81','3937226c-8dbc-4bb2-9555-2c79237156ef',23,'','711-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3337.2215504020787, \"y\": 2584.086755069761}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1377,'b0c5bbc8-b6af-49f8-985c-27ce52462c30',NULL,23,'','712','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 4122.436893067527, \"y\": 1697.1898727527505}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"fcae14bb-dc32-4750-8ba9-2b7da7349e7b\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"712-A1\", \"capacity\": 1, \"position\": {\"x\": 4072.4368930675273, \"y\": 1768.6184441813216}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:59.719Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"d5f943dc-4db7-45fa-a1aa-3ce2d77a0123\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"712-A2\", \"capacity\": 1, \"position\": {\"x\": 4072.4368930675273, \"y\": 1740.0470156098932}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:59.719Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"bbbc7892-71a4-4a1c-90d9-278e434d10e1\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"712-A3\", \"capacity\": 1, \"position\": {\"x\": 4072.4368930675273, \"y\": 1711.4755870384645}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:59.719Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"eae51293-2a58-4334-b10b-f023415075e7\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"712-A4\", \"capacity\": 1, \"position\": {\"x\": 4072.4368930675273, \"y\": 1682.904158467036}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:59.719Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"729047e3-56f6-484d-b08e-35c0755c65b4\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"712-A5\", \"capacity\": 1, \"position\": {\"x\": 4072.4368930675273, \"y\": 1654.3327298956074}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:59.719Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"c2d55cff-28c1-4884-ac6c-3f3f7a1eee63\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"712-A6\", \"capacity\": 1, \"position\": {\"x\": 4072.4368930675273, \"y\": 1625.761301324179}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:59.719Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"4110c3e2-527a-4fa9-b848-4c1efb326926\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"712-B1\", \"capacity\": 1, \"position\": {\"x\": 4172.436893067527, \"y\": 1768.6184441813216}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:59.719Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"43093704-2b4f-43d3-a73e-777bcb3bd998\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"712-B2\", \"capacity\": 1, \"position\": {\"x\": 4172.436893067527, \"y\": 1740.0470156098932}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:59.719Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"4bcc0f44-6f62-4bf0-9704-99bbb2b53d52\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"712-B3\", \"capacity\": 1, \"position\": {\"x\": 4172.436893067527, \"y\": 1711.4755870384645}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:59.719Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"51560947-2f7a-4239-9176-bfa0885bfc82\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"712-B4\", \"capacity\": 1, \"position\": {\"x\": 4172.436893067527, \"y\": 1682.904158467036}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:59.719Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"7d65d620-97a8-4a7d-bdd6-e10fa8bae342\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"712-B5\", \"capacity\": 1, \"position\": {\"x\": 4172.436893067527, \"y\": 1654.3327298956074}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:59.719Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"a434dfca-262a-4568-95f9-30534a04dd29\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"712-B6\", \"capacity\": 1, \"position\": {\"x\": 4172.436893067527, \"y\": 1625.761301324179}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T10:59:59.719Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}]','{\"x\": 4112.436893067527, \"y\": 1697.1898727527505}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1378,'fcae14bb-dc32-4750-8ba9-2b7da7349e7b','b0c5bbc8-b6af-49f8-985c-27ce52462c30',23,'','712-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4072.4368930675273, \"y\": 1768.6184441813216}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1379,'d5f943dc-4db7-45fa-a1aa-3ce2d77a0123','b0c5bbc8-b6af-49f8-985c-27ce52462c30',23,'','712-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4072.4368930675273, \"y\": 1740.0470156098932}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1380,'bbbc7892-71a4-4a1c-90d9-278e434d10e1','b0c5bbc8-b6af-49f8-985c-27ce52462c30',23,'','712-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4072.4368930675273, \"y\": 1711.4755870384645}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1381,'eae51293-2a58-4334-b10b-f023415075e7','b0c5bbc8-b6af-49f8-985c-27ce52462c30',23,'','712-A4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4072.4368930675273, \"y\": 1682.904158467036}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1382,'729047e3-56f6-484d-b08e-35c0755c65b4','b0c5bbc8-b6af-49f8-985c-27ce52462c30',23,'','712-A5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4072.4368930675273, \"y\": 1654.3327298956074}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1383,'c2d55cff-28c1-4884-ac6c-3f3f7a1eee63','b0c5bbc8-b6af-49f8-985c-27ce52462c30',23,'','712-A6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4072.4368930675273, \"y\": 1625.761301324179}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1384,'4110c3e2-527a-4fa9-b848-4c1efb326926','b0c5bbc8-b6af-49f8-985c-27ce52462c30',23,'','712-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4172.436893067527, \"y\": 1768.6184441813216}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1385,'43093704-2b4f-43d3-a73e-777bcb3bd998','b0c5bbc8-b6af-49f8-985c-27ce52462c30',23,'','712-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4172.436893067527, \"y\": 1740.0470156098932}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1386,'4bcc0f44-6f62-4bf0-9704-99bbb2b53d52','b0c5bbc8-b6af-49f8-985c-27ce52462c30',23,'','712-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4172.436893067527, \"y\": 1711.4755870384645}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1387,'51560947-2f7a-4239-9176-bfa0885bfc82','b0c5bbc8-b6af-49f8-985c-27ce52462c30',23,'','712-B4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4172.436893067527, \"y\": 1682.904158467036}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1388,'7d65d620-97a8-4a7d-bdd6-e10fa8bae342','b0c5bbc8-b6af-49f8-985c-27ce52462c30',23,'','712-B5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4172.436893067527, \"y\": 1654.3327298956074}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1389,'a434dfca-262a-4568-95f9-30534a04dd29','b0c5bbc8-b6af-49f8-985c-27ce52462c30',23,'','712-B6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4172.436893067527, \"y\": 1625.761301324179}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1390,'cb37e966-1409-46f0-a19b-f6e8be3f77cd',NULL,23,'','713','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 4122.436893067527, \"y\": 1464.721068423348}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"6f84ca9b-fae5-43d2-8db3-2457af8ac951\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"713-A1\", \"capacity\": 1, \"position\": {\"x\": 4072.4368930675273, \"y\": 1536.1496398519191}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:00.536Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"5b43fa6f-ce05-40cf-9fa2-b82148d2cb35\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"713-A2\", \"capacity\": 1, \"position\": {\"x\": 4072.4368930675273, \"y\": 1507.578211280491}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:00.536Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"394ef130-1c54-4b60-9bd6-565f814fcbfa\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"713-A3\", \"capacity\": 1, \"position\": {\"x\": 4072.4368930675273, \"y\": 1479.0067827090622}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:00.536Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"ceac2d46-1aec-415c-b90a-a51debc61904\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"713-A4\", \"capacity\": 1, \"position\": {\"x\": 4072.4368930675273, \"y\": 1450.4353541376338}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:00.536Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"d7d5ef6d-95e3-4b21-b2b0-3b10dcfa0612\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"713-A5\", \"capacity\": 1, \"position\": {\"x\": 4072.4368930675273, \"y\": 1421.8639255662051}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:00.536Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"1673e45d-07ef-4e33-b9dc-3c9aa97addc6\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"713-A6\", \"capacity\": 1, \"position\": {\"x\": 4072.4368930675273, \"y\": 1393.292496994777}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:00.536Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"bc4ee1ec-3c3f-41dd-8bc8-7c82cfedf36a\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"713-B1\", \"capacity\": 1, \"position\": {\"x\": 4172.436893067527, \"y\": 1536.1496398519191}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:00.536Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"560fd6fa-5392-4fd6-bf7d-5958c56b5eb5\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"713-B2\", \"capacity\": 1, \"position\": {\"x\": 4172.436893067527, \"y\": 1507.578211280491}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:00.536Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"4911f38f-abc0-406a-9b4c-1f3e4c1e8a30\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"713-B3\", \"capacity\": 1, \"position\": {\"x\": 4172.436893067527, \"y\": 1479.0067827090622}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:00.536Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"e099dd2d-6a57-403d-b9ef-0c48d1288915\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"713-B4\", \"capacity\": 1, \"position\": {\"x\": 4172.436893067527, \"y\": 1450.4353541376338}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:00.536Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"2c54eac2-ead9-4090-a048-05549108939d\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"713-B5\", \"capacity\": 1, \"position\": {\"x\": 4172.436893067527, \"y\": 1421.8639255662051}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:00.536Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"11194dec-4ada-44d7-9885-ef1ceea74175\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"713-B6\", \"capacity\": 1, \"position\": {\"x\": 4172.436893067527, \"y\": 1393.292496994777}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:00.536Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}]','{\"x\": 4112.436893067527, \"y\": 1464.721068423348}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1391,'6f84ca9b-fae5-43d2-8db3-2457af8ac951','cb37e966-1409-46f0-a19b-f6e8be3f77cd',23,'','713-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4072.4368930675273, \"y\": 1536.1496398519191}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1392,'5b43fa6f-ce05-40cf-9fa2-b82148d2cb35','cb37e966-1409-46f0-a19b-f6e8be3f77cd',23,'','713-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4072.4368930675273, \"y\": 1507.578211280491}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1393,'394ef130-1c54-4b60-9bd6-565f814fcbfa','cb37e966-1409-46f0-a19b-f6e8be3f77cd',23,'','713-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4072.4368930675273, \"y\": 1479.0067827090622}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1394,'ceac2d46-1aec-415c-b90a-a51debc61904','cb37e966-1409-46f0-a19b-f6e8be3f77cd',23,'','713-A4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4072.4368930675273, \"y\": 1450.4353541376338}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1395,'d7d5ef6d-95e3-4b21-b2b0-3b10dcfa0612','cb37e966-1409-46f0-a19b-f6e8be3f77cd',23,'','713-A5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4072.4368930675273, \"y\": 1421.8639255662051}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1396,'1673e45d-07ef-4e33-b9dc-3c9aa97addc6','cb37e966-1409-46f0-a19b-f6e8be3f77cd',23,'','713-A6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4072.4368930675273, \"y\": 1393.292496994777}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1397,'bc4ee1ec-3c3f-41dd-8bc8-7c82cfedf36a','cb37e966-1409-46f0-a19b-f6e8be3f77cd',23,'','713-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4172.436893067527, \"y\": 1536.1496398519191}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1398,'560fd6fa-5392-4fd6-bf7d-5958c56b5eb5','cb37e966-1409-46f0-a19b-f6e8be3f77cd',23,'','713-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4172.436893067527, \"y\": 1507.578211280491}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1399,'4911f38f-abc0-406a-9b4c-1f3e4c1e8a30','cb37e966-1409-46f0-a19b-f6e8be3f77cd',23,'','713-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4172.436893067527, \"y\": 1479.0067827090622}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1400,'e099dd2d-6a57-403d-b9ef-0c48d1288915','cb37e966-1409-46f0-a19b-f6e8be3f77cd',23,'','713-B4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4172.436893067527, \"y\": 1450.4353541376338}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1401,'2c54eac2-ead9-4090-a048-05549108939d','cb37e966-1409-46f0-a19b-f6e8be3f77cd',23,'','713-B5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4172.436893067527, \"y\": 1421.8639255662051}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1402,'11194dec-4ada-44d7-9885-ef1ceea74175','cb37e966-1409-46f0-a19b-f6e8be3f77cd',23,'','713-B6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4172.436893067527, \"y\": 1393.292496994777}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1403,'e1ac3e47-2856-4739-8871-803bf5958c1e',NULL,23,'','714','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 4122.436893067527, \"y\": 1232.2522640939458}, \"dimensions\": {\"width\": 200, \"height\": 80}, \"seat_count\": 12, \"seat_spacing\": 25}','[{\"id\": \"4620ced6-a229-4f47-8c36-cd3308e072bd\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"714-A1\", \"capacity\": 1, \"position\": {\"x\": 4072.4368930675273, \"y\": 1303.680835522517}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:01.661Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"0b4c0b8f-d371-469d-a78e-54b4425f3262\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"714-A2\", \"capacity\": 1, \"position\": {\"x\": 4072.4368930675273, \"y\": 1275.1094069510889}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:01.661Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"ad3c61d2-17ac-4eb7-8a13-59e379c68a58\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"714-A3\", \"capacity\": 1, \"position\": {\"x\": 4072.4368930675273, \"y\": 1246.53797837966}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:01.661Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"4dc24fca-bcab-4d5f-9318-8a7307005001\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"714-A4\", \"capacity\": 1, \"position\": {\"x\": 4072.4368930675273, \"y\": 1217.9665498082315}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:01.661Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"3927d72a-7990-486d-8ab2-476dd3e30bb6\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"714-A5\", \"capacity\": 1, \"position\": {\"x\": 4072.4368930675273, \"y\": 1189.3951212368029}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:01.661Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"ac79cef1-8dde-49b2-b4c6-e16ae0c20d31\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"714-A6\", \"capacity\": 1, \"position\": {\"x\": 4072.4368930675273, \"y\": 1160.8236926653744}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:01.661Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"d7747a1c-d038-4054-9d34-bee063098f8f\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"714-B1\", \"capacity\": 1, \"position\": {\"x\": 4172.436893067527, \"y\": 1303.680835522517}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:01.661Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"c3de9796-8280-4e28-b691-f860af094353\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"714-B2\", \"capacity\": 1, \"position\": {\"x\": 4172.436893067527, \"y\": 1275.1094069510889}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:01.661Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"b91cec58-ad03-40c1-9fbf-183a25b4ca67\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"714-B3\", \"capacity\": 1, \"position\": {\"x\": 4172.436893067527, \"y\": 1246.53797837966}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:01.661Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"243499b7-b341-414f-94cf-0bd46090019a\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"714-B4\", \"capacity\": 1, \"position\": {\"x\": 4172.436893067527, \"y\": 1217.9665498082315}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:01.661Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"dcca9b82-c550-4fcc-abe0-ccc7e1b74524\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"714-B5\", \"capacity\": 1, \"position\": {\"x\": 4172.436893067527, \"y\": 1189.3951212368029}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:01.661Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}, {\"id\": \"577f2c01-ff53-474c-848b-3ad2bf4fd8a6\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"714-B6\", \"capacity\": 1, \"position\": {\"x\": 4172.436893067527, \"y\": 1160.8236926653744}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:01.661Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T11:01:28.266Z\", \"price_tier_id\": 131}]','{\"x\": 4112.436893067527, \"y\": 1232.2522640939458}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1404,'4620ced6-a229-4f47-8c36-cd3308e072bd','e1ac3e47-2856-4739-8871-803bf5958c1e',23,'','714-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4072.4368930675273, \"y\": 1303.680835522517}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1405,'0b4c0b8f-d371-469d-a78e-54b4425f3262','e1ac3e47-2856-4739-8871-803bf5958c1e',23,'','714-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4072.4368930675273, \"y\": 1275.1094069510889}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1406,'ad3c61d2-17ac-4eb7-8a13-59e379c68a58','e1ac3e47-2856-4739-8871-803bf5958c1e',23,'','714-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4072.4368930675273, \"y\": 1246.53797837966}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1407,'4dc24fca-bcab-4d5f-9318-8a7307005001','e1ac3e47-2856-4739-8871-803bf5958c1e',23,'','714-A4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4072.4368930675273, \"y\": 1217.9665498082315}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1408,'3927d72a-7990-486d-8ab2-476dd3e30bb6','e1ac3e47-2856-4739-8871-803bf5958c1e',23,'','714-A5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4072.4368930675273, \"y\": 1189.3951212368029}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1409,'ac79cef1-8dde-49b2-b4c6-e16ae0c20d31','e1ac3e47-2856-4739-8871-803bf5958c1e',23,'','714-A6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4072.4368930675273, \"y\": 1160.8236926653744}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1410,'d7747a1c-d038-4054-9d34-bee063098f8f','e1ac3e47-2856-4739-8871-803bf5958c1e',23,'','714-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4172.436893067527, \"y\": 1303.680835522517}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1411,'c3de9796-8280-4e28-b691-f860af094353','e1ac3e47-2856-4739-8871-803bf5958c1e',23,'','714-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4172.436893067527, \"y\": 1275.1094069510889}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1412,'b91cec58-ad03-40c1-9fbf-183a25b4ca67','e1ac3e47-2856-4739-8871-803bf5958c1e',23,'','714-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4172.436893067527, \"y\": 1246.53797837966}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1413,'243499b7-b341-414f-94cf-0bd46090019a','e1ac3e47-2856-4739-8871-803bf5958c1e',23,'','714-B4','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4172.436893067527, \"y\": 1217.9665498082315}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1414,'dcca9b82-c550-4fcc-abe0-ccc7e1b74524','e1ac3e47-2856-4739-8871-803bf5958c1e',23,'','714-B5','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4172.436893067527, \"y\": 1189.3951212368029}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1415,'577f2c01-ff53-474c-848b-3ad2bf4fd8a6','e1ac3e47-2856-4739-8871-803bf5958c1e',23,'','714-B6','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 4172.436893067527, \"y\": 1160.8236926653744}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1416,'d792b4e5-6941-4973-9c6c-2162ad0fa1cc',NULL,23,'','715','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 3875.2717492567226, \"y\": 943.305714375595}, \"dimensions\": {\"width\": 150, \"height\": 80}, \"seat_count\": 6, \"seat_spacing\": 25}','[{\"id\": \"8f4a52a6-7db6-42e3-92c2-5b367e625f70\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"715-A1\", \"capacity\": 1, \"position\": {\"x\": 3825.2717492567226, \"y\": 980.805714375595}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:06.257Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T16:54:08.611Z\", \"price_tier_id\": 131}, {\"id\": \"c409599a-cb41-4ad5-b30b-096fa4fcd563\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"715-A2\", \"capacity\": 1, \"position\": {\"x\": 3825.2717492567226, \"y\": 943.305714375595}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:06.257Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T16:54:08.611Z\", \"price_tier_id\": 131}, {\"id\": \"293ac50b-ca5c-4ae6-b328-9acce0469263\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"715-A3\", \"capacity\": 1, \"position\": {\"x\": 3825.2717492567226, \"y\": 905.805714375595}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:06.257Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T16:54:08.611Z\", \"price_tier_id\": 131}, {\"id\": \"8153b801-12ab-4cf2-beb1-d04c06671e98\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"715-B1\", \"capacity\": 1, \"position\": {\"x\": 3925.2717492567226, \"y\": 980.805714375595}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:06.257Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T16:54:08.611Z\", \"price_tier_id\": 131}, {\"id\": \"6d6761ee-c426-45cd-96f2-0d52352537e4\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"715-B2\", \"capacity\": 1, \"position\": {\"x\": 3925.2717492567226, \"y\": 943.305714375595}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:06.257Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T16:54:08.611Z\", \"price_tier_id\": 131}, {\"id\": \"0af3daf0-9b48-4c99-ad67-3c424de0ad3c\", \"type\": \"seat\", \"price\": 50, \"seat_id\": \"715-B3\", \"capacity\": 1, \"position\": {\"x\": 3925.2717492567226, \"y\": 905.805714375595}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:00:06.257Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\", \"updated_at\": \"2025-11-05T16:54:08.611Z\", \"price_tier_id\": 131}]','{\"x\": 3875.2717492567226, \"y\": 1003.305714375595}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1417,'8f4a52a6-7db6-42e3-92c2-5b367e625f70','d792b4e5-6941-4973-9c6c-2162ad0fa1cc',23,'','715-A1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3825.2717492567226, \"y\": 980.805714375595}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1418,'c409599a-cb41-4ad5-b30b-096fa4fcd563','d792b4e5-6941-4973-9c6c-2162ad0fa1cc',23,'','715-A2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3825.2717492567226, \"y\": 943.305714375595}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1419,'293ac50b-ca5c-4ae6-b328-9acce0469263','d792b4e5-6941-4973-9c6c-2162ad0fa1cc',23,'','715-A3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3825.2717492567226, \"y\": 905.805714375595}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1420,'8153b801-12ab-4cf2-beb1-d04c06671e98','d792b4e5-6941-4973-9c6c-2162ad0fa1cc',23,'','715-B1','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3925.2717492567226, \"y\": 980.805714375595}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1421,'6d6761ee-c426-45cd-96f2-0d52352537e4','d792b4e5-6941-4973-9c6c-2162ad0fa1cc',23,'','715-B2','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3925.2717492567226, \"y\": 943.305714375595}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1422,'0af3daf0-9b48-4c99-ad67-3c424de0ad3c','d792b4e5-6941-4973-9c6c-2162ad0fa1cc',23,'','715-B3','table_child',50.00,1,NULL,'general',NULL,NULL,'{\"x\": 3925.2717492567226, \"y\": 905.805714375595}','308f4b6e-e3e1-458f-ad76-8b92b438cdbc',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1423,'042bfa02-62f8-42cc-b95b-2cfdc066a044',NULL,23,'','510','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 3481.6900810681136, \"y\": 1869.192756625824}, \"radius\": 40, \"seat_count\": 6, \"seat_spacing\": 45}','[{\"id\": \"17622e44-ebb5-4866-9f7e-f94ca7564ed3\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"510-A1\", \"capacity\": 1, \"position\": {\"x\": 3529.6900810681136, \"y\": 1869.192756625824}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:01:54.821Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T11:01:54.821Z\", \"price_tier_id\": 130}, {\"id\": \"82e011d2-959e-4531-9020-c21f50b94ee7\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"510-A2\", \"capacity\": 1, \"position\": {\"x\": 3505.6900810681136, \"y\": 1910.7619760074772}, \"arc_angle\": 180, \"direction\": 240, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:01:54.821Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T11:01:54.821Z\", \"price_tier_id\": 130}, {\"id\": \"65f38bee-c3f3-4e95-8ae2-fb21aa19ee5c\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"510-A3\", \"capacity\": 1, \"position\": {\"x\": 3457.6900810681136, \"y\": 1910.7619760074772}, \"arc_angle\": 180, \"direction\": 300, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:01:54.821Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T11:01:54.821Z\", \"price_tier_id\": 130}, {\"id\": \"f3e8b5b3-6bab-4c2f-a469-5ccfbde4e511\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"510-A4\", \"capacity\": 1, \"position\": {\"x\": 3433.6900810681136, \"y\": 1869.192756625824}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:01:54.821Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T11:01:54.821Z\", \"price_tier_id\": 130}, {\"id\": \"dd65d963-2aeb-4a26-a54c-a4cc883f3037\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"510-A5\", \"capacity\": 1, \"position\": {\"x\": 3457.6900810681136, \"y\": 1827.623537244171}, \"arc_angle\": 180, \"direction\": 60, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:01:54.821Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T11:01:54.821Z\", \"price_tier_id\": 130}, {\"id\": \"84f8f9f5-758e-4cc6-bd53-f0b570655363\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"510-A6\", \"capacity\": 1, \"position\": {\"x\": 3505.6900810681136, \"y\": 1827.623537244171}, \"arc_angle\": 180, \"direction\": 120, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:01:54.821Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T11:01:54.821Z\", \"price_tier_id\": 130}]','{\"x\": 3481.6900810681136, \"y\": 1869.192756625824}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1424,'17622e44-ebb5-4866-9f7e-f94ca7564ed3','042bfa02-62f8-42cc-b95b-2cfdc066a044',23,'','510-A1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3529.6900810681136, \"y\": 1869.192756625824}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1425,'82e011d2-959e-4531-9020-c21f50b94ee7','042bfa02-62f8-42cc-b95b-2cfdc066a044',23,'','510-A2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3505.6900810681136, \"y\": 1910.7619760074772}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1426,'65f38bee-c3f3-4e95-8ae2-fb21aa19ee5c','042bfa02-62f8-42cc-b95b-2cfdc066a044',23,'','510-A3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3457.6900810681136, \"y\": 1910.7619760074772}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1427,'f3e8b5b3-6bab-4c2f-a469-5ccfbde4e511','042bfa02-62f8-42cc-b95b-2cfdc066a044',23,'','510-A4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3433.6900810681136, \"y\": 1869.192756625824}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1428,'dd65d963-2aeb-4a26-a54c-a4cc883f3037','042bfa02-62f8-42cc-b95b-2cfdc066a044',23,'','510-A5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3457.6900810681136, \"y\": 1827.623537244171}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1429,'84f8f9f5-758e-4cc6-bd53-f0b570655363','042bfa02-62f8-42cc-b95b-2cfdc066a044',23,'','510-A6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3505.6900810681136, \"y\": 1827.623537244171}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1430,'eb378b81-8350-410c-8dde-8dadb866ebe7',NULL,23,'','511','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 3817.916909145019, \"y\": 1194.8711736493638}, \"radius\": 40, \"seat_count\": 6, \"seat_spacing\": 45}','[{\"id\": \"1b5d20a7-4a71-4233-858a-fe9c23ff310d\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"511-A1\", \"capacity\": 1, \"position\": {\"x\": 3865.916909145019, \"y\": 1194.8711736493638}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:01:57.778Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T11:01:57.778Z\", \"price_tier_id\": 130}, {\"id\": \"03d44296-6c04-480d-bc00-f4e4e36da19a\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"511-A2\", \"capacity\": 1, \"position\": {\"x\": 3841.916909145019, \"y\": 1236.4403930310168}, \"arc_angle\": 180, \"direction\": 240, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:01:57.778Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T11:01:57.778Z\", \"price_tier_id\": 130}, {\"id\": \"c39554dc-1895-49ab-a50d-941cfde23075\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"511-A3\", \"capacity\": 1, \"position\": {\"x\": 3793.916909145019, \"y\": 1236.4403930310168}, \"arc_angle\": 180, \"direction\": 300, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:01:57.778Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T11:01:57.778Z\", \"price_tier_id\": 130}, {\"id\": \"d439f055-9caf-4ca7-8099-f35fa1bfcbd3\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"511-A4\", \"capacity\": 1, \"position\": {\"x\": 3769.916909145019, \"y\": 1194.8711736493638}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:01:57.778Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T11:01:57.778Z\", \"price_tier_id\": 130}, {\"id\": \"e4eb94de-d2e5-4b2d-b421-83ddd84a2c2c\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"511-A5\", \"capacity\": 1, \"position\": {\"x\": 3793.916909145019, \"y\": 1153.3019542677107}, \"arc_angle\": 180, \"direction\": 60, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:01:57.778Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T11:01:57.778Z\", \"price_tier_id\": 130}, {\"id\": \"c8b148e4-38c9-4ff1-81ee-ba25378e7e41\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"511-A6\", \"capacity\": 1, \"position\": {\"x\": 3841.916909145019, \"y\": 1153.3019542677107}, \"arc_angle\": 180, \"direction\": 120, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:01:57.778Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-05T11:01:57.778Z\", \"price_tier_id\": 130}]','{\"x\": 3817.916909145019, \"y\": 1194.8711736493638}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1431,'1b5d20a7-4a71-4233-858a-fe9c23ff310d','eb378b81-8350-410c-8dde-8dadb866ebe7',23,'','511-A1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3865.916909145019, \"y\": 1194.8711736493638}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1432,'03d44296-6c04-480d-bc00-f4e4e36da19a','eb378b81-8350-410c-8dde-8dadb866ebe7',23,'','511-A2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3841.916909145019, \"y\": 1236.4403930310168}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1433,'c39554dc-1895-49ab-a50d-941cfde23075','eb378b81-8350-410c-8dde-8dadb866ebe7',23,'','511-A3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3793.916909145019, \"y\": 1236.4403930310168}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1434,'d439f055-9caf-4ca7-8099-f35fa1bfcbd3','eb378b81-8350-410c-8dde-8dadb866ebe7',23,'','511-A4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3769.916909145019, \"y\": 1194.8711736493638}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL);
INSERT INTO `seats` VALUES (1435,'e4eb94de-d2e5-4b2d-b421-83ddd84a2c2c','eb378b81-8350-410c-8dde-8dadb866ebe7',23,'','511-A5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3793.916909145019, \"y\": 1153.3019542677107}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1436,'c8b148e4-38c9-4ff1-81ee-ba25378e7e41','eb378b81-8350-410c-8dde-8dadb866ebe7',23,'','511-A6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3841.916909145019, \"y\": 1153.3019542677107}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1437,'0c712854-45ce-4172-819f-1f712bb3cdf7',NULL,23,'','512','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 3866.483006533905, \"y\": 1402.2110509634554}, \"radius\": 65, \"seat_count\": 10, \"seat_spacing\": 45}','[{\"id\": \"375c8c7f-41fc-4078-bad6-0a8ff390a348\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"512-A1\", \"capacity\": 1, \"position\": {\"x\": 3939.483006533905, \"y\": 1402.2110509634554}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:02:07.137Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-06T18:57:26.262Z\", \"price_tier_id\": 130}, {\"id\": \"39a7354f-688b-432a-ad02-f79ac0bf6205\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"512-A2\", \"capacity\": 1, \"position\": {\"x\": 3925.541247123276, \"y\": 1445.119374380806}, \"arc_angle\": 180, \"direction\": 216, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:02:07.137Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-06T18:57:26.262Z\", \"price_tier_id\": 130}, {\"id\": \"ef7f103d-e4a3-4beb-976a-204e729cf22f\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"512-A3\", \"capacity\": 1, \"position\": {\"x\": 3889.041247123276, \"y\": 1471.6381766530017}, \"arc_angle\": 180, \"direction\": 252, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:02:07.137Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-06T18:57:26.262Z\", \"price_tier_id\": 130}, {\"id\": \"421f9c23-eb1e-4d47-af10-210e5513466c\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"512-A4\", \"capacity\": 1, \"position\": {\"x\": 3843.924765944534, \"y\": 1471.6381766530017}, \"arc_angle\": 180, \"direction\": 288, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:02:07.137Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-06T18:57:26.262Z\", \"price_tier_id\": 130}, {\"id\": \"ad650f86-179b-452f-b14d-d64758020b7a\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"512-A5\", \"capacity\": 1, \"position\": {\"x\": 3807.424765944534, \"y\": 1445.119374380806}, \"arc_angle\": 180, \"direction\": 324, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:02:07.137Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-06T18:57:26.262Z\", \"price_tier_id\": 130}, {\"id\": \"7ea0a254-7a31-405c-9da4-f57be863d66e\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"512-A6\", \"capacity\": 1, \"position\": {\"x\": 3793.483006533905, \"y\": 1402.2110509634554}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:02:07.137Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-06T18:57:26.262Z\", \"price_tier_id\": 130}, {\"id\": \"a1fcf149-0867-4f74-9abf-cff066729c20\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"512-A7\", \"capacity\": 1, \"position\": {\"x\": 3807.424765944534, \"y\": 1359.3027275461047}, \"arc_angle\": 180, \"direction\": 36, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:02:07.137Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-06T18:57:26.262Z\", \"price_tier_id\": 130}, {\"id\": \"c8e077db-67b8-45bf-81b5-1b56c69c18b3\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"512-A8\", \"capacity\": 1, \"position\": {\"x\": 3843.924765944534, \"y\": 1332.783925273909}, \"arc_angle\": 180, \"direction\": 72, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:02:07.137Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-06T18:57:26.262Z\", \"price_tier_id\": 130}, {\"id\": \"e6acad91-a0c0-4e09-9f30-953ce136e8fe\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"512-A9\", \"capacity\": 1, \"position\": {\"x\": 3889.041247123276, \"y\": 1332.783925273909}, \"arc_angle\": 180, \"direction\": 108, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:02:07.137Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-06T18:57:26.262Z\", \"price_tier_id\": 130}, {\"id\": \"a7233a13-1e33-4b00-9317-f68f54170b46\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"512-A10\", \"capacity\": 1, \"position\": {\"x\": 3925.541247123276, \"y\": 1359.3027275461047}, \"arc_angle\": 180, \"direction\": 144, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:02:07.137Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-06T18:57:26.262Z\", \"price_tier_id\": 130}]','{\"x\": 3866.483006533905, \"y\": 1402.2110509634554}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1438,'375c8c7f-41fc-4078-bad6-0a8ff390a348','0c712854-45ce-4172-819f-1f712bb3cdf7',23,'','512-A1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3939.483006533905, \"y\": 1402.2110509634554}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1439,'39a7354f-688b-432a-ad02-f79ac0bf6205','0c712854-45ce-4172-819f-1f712bb3cdf7',23,'','512-A2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3925.541247123276, \"y\": 1445.119374380806}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1440,'ef7f103d-e4a3-4beb-976a-204e729cf22f','0c712854-45ce-4172-819f-1f712bb3cdf7',23,'','512-A3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3889.041247123276, \"y\": 1471.6381766530017}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1441,'421f9c23-eb1e-4d47-af10-210e5513466c','0c712854-45ce-4172-819f-1f712bb3cdf7',23,'','512-A4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3843.924765944534, \"y\": 1471.6381766530017}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1442,'ad650f86-179b-452f-b14d-d64758020b7a','0c712854-45ce-4172-819f-1f712bb3cdf7',23,'','512-A5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3807.424765944534, \"y\": 1445.119374380806}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1443,'7ea0a254-7a31-405c-9da4-f57be863d66e','0c712854-45ce-4172-819f-1f712bb3cdf7',23,'','512-A6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3793.483006533905, \"y\": 1402.2110509634554}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1444,'a1fcf149-0867-4f74-9abf-cff066729c20','0c712854-45ce-4172-819f-1f712bb3cdf7',23,'','512-A7','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3807.424765944534, \"y\": 1359.3027275461047}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1445,'c8e077db-67b8-45bf-81b5-1b56c69c18b3','0c712854-45ce-4172-819f-1f712bb3cdf7',23,'','512-A8','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3843.924765944534, \"y\": 1332.783925273909}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1446,'e6acad91-a0c0-4e09-9f30-953ce136e8fe','0c712854-45ce-4172-819f-1f712bb3cdf7',23,'','512-A9','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3889.041247123276, \"y\": 1332.783925273909}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1447,'a7233a13-1e33-4b00-9317-f68f54170b46','0c712854-45ce-4172-819f-1f712bb3cdf7',23,'','512-A10','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3925.541247123276, \"y\": 1359.3027275461047}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1448,'b0a0c679-baf9-4c71-9815-02668f563c22',NULL,23,'','513','table',0.00,NULL,NULL,'general','{\"center\": {\"x\": 3829.124470080916, \"y\": 1622.6264160360934}, \"radius\": 50, \"seat_count\": 6, \"seat_spacing\": 45}','[{\"id\": \"33dcf9b6-65d6-486d-95cf-60974529d923\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"513-A1\", \"capacity\": 1, \"position\": {\"x\": 3887.124470080916, \"y\": 1622.6264160360934}, \"arc_angle\": 180, \"direction\": 180, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:02:12.385Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-06T18:57:20.580Z\", \"price_tier_id\": 130}, {\"id\": \"c3117e39-87c9-489a-8d02-6132a6cb5607\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"513-A2\", \"capacity\": 1, \"position\": {\"x\": 3858.124470080916, \"y\": 1672.8558894555908}, \"arc_angle\": 180, \"direction\": 240, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:02:12.385Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-06T18:57:20.580Z\", \"price_tier_id\": 130}, {\"id\": \"9954d428-8055-499f-9d80-77ce13e9ab1e\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"513-A3\", \"capacity\": 1, \"position\": {\"x\": 3800.124470080916, \"y\": 1672.8558894555908}, \"arc_angle\": 180, \"direction\": 300, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:02:12.385Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-06T18:57:20.580Z\", \"price_tier_id\": 130}, {\"id\": \"a7080216-cdf3-4617-8f53-f954b355e5f6\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"513-A4\", \"capacity\": 1, \"position\": {\"x\": 3771.124470080916, \"y\": 1622.6264160360934}, \"arc_angle\": 180, \"direction\": 0, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:02:12.385Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-06T18:57:20.580Z\", \"price_tier_id\": 130}, {\"id\": \"226c7466-1f7c-4c98-bd66-e147bb946c8a\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"513-A5\", \"capacity\": 1, \"position\": {\"x\": 3800.124470080916, \"y\": 1572.396942616596}, \"arc_angle\": 180, \"direction\": 60, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:02:12.385Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-06T18:57:20.580Z\", \"price_tier_id\": 130}, {\"id\": \"177c0147-efe6-4e8e-a7a1-21ecdd8eb7bb\", \"type\": \"seat\", \"price\": 100, \"seat_id\": \"513-A6\", \"capacity\": 1, \"position\": {\"x\": 3858.124470080916, \"y\": 1572.396942616596}, \"arc_angle\": 180, \"direction\": 120, \"seat_type\": \"chair\", \"created_at\": \"2025-11-05T11:02:12.385Z\", \"seat_shape\": \"semicircle\", \"section_id\": \"74cafd5e-b6f0-402a-b6f4-28e7203884a4\", \"updated_at\": \"2025-11-06T18:57:20.580Z\", \"price_tier_id\": 130}]','{\"x\": 3829.124470080916, \"y\": 1622.6264160360934}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1449,'33dcf9b6-65d6-486d-95cf-60974529d923','b0a0c679-baf9-4c71-9815-02668f563c22',23,'','513-A1','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3887.124470080916, \"y\": 1622.6264160360934}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1450,'c3117e39-87c9-489a-8d02-6132a6cb5607','b0a0c679-baf9-4c71-9815-02668f563c22',23,'','513-A2','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3858.124470080916, \"y\": 1672.8558894555908}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1451,'9954d428-8055-499f-9d80-77ce13e9ab1e','b0a0c679-baf9-4c71-9815-02668f563c22',23,'','513-A3','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3800.124470080916, \"y\": 1672.8558894555908}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1452,'a7080216-cdf3-4617-8f53-f954b355e5f6','b0a0c679-baf9-4c71-9815-02668f563c22',23,'','513-A4','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3771.124470080916, \"y\": 1622.6264160360934}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1453,'226c7466-1f7c-4c98-bd66-e147bb946c8a','b0a0c679-baf9-4c71-9815-02668f563c22',23,'','513-A5','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3800.124470080916, \"y\": 1572.396942616596}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL),(1454,'177c0147-efe6-4e8e-a7a1-21ecdd8eb7bb','b0a0c679-baf9-4c71-9815-02668f563c22',23,'','513-A6','table_child',100.00,1,NULL,'general',NULL,NULL,'{\"x\": 3858.124470080916, \"y\": 1572.396942616596}','74cafd5e-b6f0-402a-b6f4-28e7203884a4',0,1,0,'2025-11-30 20:50:22','2025-11-30 20:50:22',NULL,NULL);
/*!40000 ALTER TABLE `seats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `special_messages`
--

DROP TABLE IF EXISTS `special_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `special_messages` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `block` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `special_messages`
--

LOCK TABLES `special_messages` WRITE;
/*!40000 ALTER TABLE `special_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `special_messages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `strava_users`
--

DROP TABLE IF EXISTS `strava_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `strava_users` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint unsigned NOT NULL,
  `strava_id` bigint unsigned NOT NULL,
  `access_token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `refresh_token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `profile_photo` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `expires_at` bigint unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `strava_users_user_id_foreign` (`user_id`),
  CONSTRAINT `strava_users_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `strava_users`
--

LOCK TABLES `strava_users` WRITE;
/*!40000 ALTER TABLE `strava_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `strava_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `stripe_webhook_events`
--

DROP TABLE IF EXISTS `stripe_webhook_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `stripe_webhook_events` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `event_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `event_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `received_at` timestamp NULL DEFAULT NULL,
  `processed_at` timestamp NULL DEFAULT NULL,
  `processing_result` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `stripe_webhook_events_event_id_unique` (`event_id`),
  KEY `stripe_webhook_events_event_id_index` (`event_id`),
  KEY `stripe_webhook_events_event_type_index` (`event_type`),
  KEY `stripe_webhook_events_received_at_index` (`received_at`),
  KEY `stripe_webhook_events_processed_at_index` (`processed_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stripe_webhook_events`
--

LOCK TABLES `stripe_webhook_events` WRITE;
/*!40000 ALTER TABLE `stripe_webhook_events` DISABLE KEYS */;
/*!40000 ALTER TABLE `stripe_webhook_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `support_conversations`
--

DROP TABLE IF EXISTS `support_conversations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `support_conversations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `version` int NOT NULL DEFAULT '1',
  `order_id` bigint unsigned DEFAULT NULL,
  `customer_id` bigint unsigned DEFAULT NULL,
  `customer_phone` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
  `subject` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Order Support',
  `status` enum('open','pending','resolved','closed') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `priority` enum('low','normal','high','urgent') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'normal',
  `last_customer_message_at` timestamp NULL DEFAULT NULL,
  `window_expires_at` timestamp NULL DEFAULT NULL,
  `is_window_active` tinyint(1) NOT NULL DEFAULT '0',
  `assigned_to_user_id` bigint unsigned DEFAULT NULL,
  `first_response_at` timestamp NULL DEFAULT NULL,
  `first_response_time_seconds` int DEFAULT NULL,
  `resolved_at` timestamp NULL DEFAULT NULL,
  `total_response_time_seconds` int DEFAULT NULL,
  `customer_message_count` int NOT NULL DEFAULT '0',
  `agent_message_count` int NOT NULL DEFAULT '0',
  `tags` json DEFAULT NULL,
  `internal_notes` text COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `support_conversations_order_id_index` (`order_id`),
  KEY `support_conversations_customer_id_index` (`customer_id`),
  KEY `support_conversations_customer_phone_index` (`customer_phone`),
  KEY `support_conversations_status_index` (`status`),
  KEY `support_conversations_assigned_to_user_id_index` (`assigned_to_user_id`),
  KEY `support_conversations_is_window_active_window_expires_at_index` (`is_window_active`,`window_expires_at`),
  KEY `support_conversations_created_at_index` (`created_at`),
  KEY `support_conversations_version_index` (`version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `support_conversations`
--

LOCK TABLES `support_conversations` WRITE;
/*!40000 ALTER TABLE `support_conversations` DISABLE KEYS */;
/*!40000 ALTER TABLE `support_conversations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `teams`
--

DROP TABLE IF EXISTS `teams`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `teams` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `teams`
--

LOCK TABLES `teams` WRITE;
/*!40000 ALTER TABLE `teams` DISABLE KEYS */;
/*!40000 ALTER TABLE `teams` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `telescope_entries`
--

DROP TABLE IF EXISTS `telescope_entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `telescope_entries` (
  `sequence` bigint unsigned NOT NULL AUTO_INCREMENT,
  `uuid` char(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `batch_id` char(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `family_hash` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `should_display_on_index` tinyint(1) NOT NULL DEFAULT '1',
  `type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` datetime DEFAULT NULL,
  PRIMARY KEY (`sequence`),
  UNIQUE KEY `telescope_entries_uuid_unique` (`uuid`),
  KEY `telescope_entries_batch_id_index` (`batch_id`),
  KEY `telescope_entries_family_hash_index` (`family_hash`),
  KEY `telescope_entries_created_at_index` (`created_at`),
  KEY `telescope_entries_type_should_display_on_index_index` (`type`,`should_display_on_index`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `telescope_entries`
--

LOCK TABLES `telescope_entries` WRITE;
/*!40000 ALTER TABLE `telescope_entries` DISABLE KEYS */;
/*!40000 ALTER TABLE `telescope_entries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `telescope_entries_tags`
--

DROP TABLE IF EXISTS `telescope_entries_tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `telescope_entries_tags` (
  `entry_uuid` char(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `tag` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`entry_uuid`,`tag`),
  KEY `telescope_entries_tags_tag_index` (`tag`),
  CONSTRAINT `telescope_entries_tags_entry_uuid_foreign` FOREIGN KEY (`entry_uuid`) REFERENCES `telescope_entries` (`uuid`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `telescope_entries_tags`
--

LOCK TABLES `telescope_entries_tags` WRITE;
/*!40000 ALTER TABLE `telescope_entries_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `telescope_entries_tags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `telescope_monitoring`
--

DROP TABLE IF EXISTS `telescope_monitoring`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `telescope_monitoring` (
  `tag` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`tag`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `telescope_monitoring`
--

LOCK TABLES `telescope_monitoring` WRITE;
/*!40000 ALTER TABLE `telescope_monitoring` DISABLE KEYS */;
/*!40000 ALTER TABLE `telescope_monitoring` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_audit_logs`
--

DROP TABLE IF EXISTS `ticket_audit_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ticket_audit_logs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `event_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `event_subtype` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `severity` int NOT NULL DEFAULT '1',
  `ticket_id` bigint unsigned DEFAULT NULL,
  `ticket_tuid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order_id` bigint unsigned DEFAULT NULL,
  `order_item_id` bigint unsigned DEFAULT NULL,
  `event_id` bigint unsigned DEFAULT NULL,
  `batch_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` bigint unsigned DEFAULT NULL,
  `user_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `admin_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_agent` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `session_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `request_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `correlation_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `action` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `metadata` json DEFAULT NULL,
  `request_data` json DEFAULT NULL,
  `response_data` json DEFAULT NULL,
  `error_message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `error_trace` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `auth_method` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `access_token_hash` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `signature_valid` tinyint(1) DEFAULT NULL,
  `scanner_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `scanner_location` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `file_path` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `file_hash` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `file_size` int DEFAULT NULL,
  `template_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `duration_ms` decimal(10,2) DEFAULT NULL,
  `started_at` timestamp NULL DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `old_values` json DEFAULT NULL,
  `new_values` json DEFAULT NULL,
  `change_reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `download_token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `token_expires_at` timestamp NULL DEFAULT NULL,
  `download_count` int NOT NULL DEFAULT '0',
  `validation_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `qr_data_hash` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `validation_errors` json DEFAULT NULL,
  `job_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `queue_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `retry_count` int NOT NULL DEFAULT '0',
  `webhook_url` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `webhook_status_code` int DEFAULT NULL,
  `webhook_response` json DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ticket_audit_logs_event_type_status_index` (`event_type`,`status`),
  KEY `ticket_audit_logs_ticket_id_event_type_index` (`ticket_id`,`event_type`),
  KEY `ticket_audit_logs_user_id_event_type_index` (`user_id`,`event_type`),
  KEY `ticket_audit_logs_created_at_event_type_index` (`created_at`,`event_type`),
  KEY `ticket_audit_logs_order_id_event_type_index` (`order_id`,`event_type`),
  KEY `ticket_audit_logs_batch_id_status_index` (`batch_id`,`status`),
  KEY `ticket_audit_logs_event_type_index` (`event_type`),
  KEY `ticket_audit_logs_status_index` (`status`),
  KEY `ticket_audit_logs_ticket_id_index` (`ticket_id`),
  KEY `ticket_audit_logs_ticket_tuid_index` (`ticket_tuid`),
  KEY `ticket_audit_logs_order_id_index` (`order_id`),
  KEY `ticket_audit_logs_order_item_id_index` (`order_item_id`),
  KEY `ticket_audit_logs_event_id_index` (`event_id`),
  KEY `ticket_audit_logs_batch_id_index` (`batch_id`),
  KEY `ticket_audit_logs_user_id_index` (`user_id`),
  KEY `ticket_audit_logs_ip_address_index` (`ip_address`),
  KEY `ticket_audit_logs_session_id_index` (`session_id`),
  KEY `ticket_audit_logs_request_id_index` (`request_id`),
  KEY `ticket_audit_logs_correlation_id_index` (`correlation_id`),
  KEY `ticket_audit_logs_download_token_index` (`download_token`),
  KEY `ticket_audit_logs_validation_code_index` (`validation_code`),
  KEY `ticket_audit_logs_job_id_index` (`job_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_audit_logs`
--

LOCK TABLES `ticket_audit_logs` WRITE;
/*!40000 ALTER TABLE `ticket_audit_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `ticket_audit_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_booking`
--

DROP TABLE IF EXISTS `ticket_booking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ticket_booking` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `booking_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `cust_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `cust_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `cust_phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `billing_address` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `event_id` bigint unsigned NOT NULL,
  `tuids` json DEFAULT NULL,
  `total_amount` double(8,2) NOT NULL,
  `status` tinyint NOT NULL DEFAULT '0' COMMENT 'allow only 0 / 1 for pending and paid',
  `ticket_document` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `ticket_booking_booking_id_unique` (`booking_id`),
  KEY `ticket_booking_event_id_foreign` (`event_id`),
  CONSTRAINT `ticket_booking_event_id_foreign` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_booking`
--

LOCK TABLES `ticket_booking` WRITE;
/*!40000 ALTER TABLE `ticket_booking` DISABLE KEYS */;
/*!40000 ALTER TABLE `ticket_booking` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_categories`
--

DROP TABLE IF EXISTS `ticket_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ticket_categories` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_categories`
--

LOCK TABLES `ticket_categories` WRITE;
/*!40000 ALTER TABLE `ticket_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `ticket_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_download_logs`
--

DROP TABLE IF EXISTS `ticket_download_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ticket_download_logs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `ticket_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order_id` bigint unsigned DEFAULT NULL,
  `user_id` bigint unsigned DEFAULT NULL,
  `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_agent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `status` enum('attempted','success','unauthorized','failed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `download_method` enum('direct','temporary_url') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ticket_download_logs_ticket_id_index` (`ticket_id`),
  KEY `ticket_download_logs_order_id_index` (`order_id`),
  KEY `ticket_download_logs_user_id_index` (`user_id`),
  KEY `ticket_download_logs_status_index` (`status`),
  KEY `ticket_download_logs_created_at_index` (`created_at`),
  KEY `ticket_download_logs_ticket_id_status_index` (`ticket_id`,`status`),
  KEY `ticket_download_logs_user_id_created_at_index` (`user_id`,`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_download_logs`
--

LOCK TABLES `ticket_download_logs` WRITE;
/*!40000 ALTER TABLE `ticket_download_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `ticket_download_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_generation_batches`
--

DROP TABLE IF EXISTS `ticket_generation_batches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ticket_generation_batches` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `batch_id` char(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` enum('initializing','processing','completed','failed','cancelled') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'initializing',
  `priority` enum('normal','high') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'normal',
  `template_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'standard',
  `total_orders` int NOT NULL DEFAULT '0',
  `valid_orders` int NOT NULL DEFAULT '0',
  `total_tickets` int NOT NULL DEFAULT '0',
  `completed_tickets` int NOT NULL DEFAULT '0',
  `failed_tickets` int NOT NULL DEFAULT '0',
  `progress_percentage` decimal(5,2) NOT NULL DEFAULT '0.00',
  `started_at` timestamp NULL DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `cancelled_at` timestamp NULL DEFAULT NULL,
  `include_email` tinyint(1) NOT NULL DEFAULT '0',
  `webhook_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `invalid_orders` json DEFAULT NULL,
  `errors` json DEFAULT NULL,
  `metadata` json DEFAULT NULL,
  `created_by` bigint unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `ticket_generation_batches_batch_id_unique` (`batch_id`),
  KEY `ticket_generation_batches_batch_id_index` (`batch_id`),
  KEY `ticket_generation_batches_status_index` (`status`),
  KEY `ticket_generation_batches_priority_index` (`priority`),
  KEY `ticket_generation_batches_created_at_index` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_generation_batches`
--

LOCK TABLES `ticket_generation_batches` WRITE;
/*!40000 ALTER TABLE `ticket_generation_batches` DISABLE KEYS */;
/*!40000 ALTER TABLE `ticket_generation_batches` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_price`
--

DROP TABLE IF EXISTS `ticket_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ticket_price` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `event_id` bigint unsigned NOT NULL,
  `date` date NOT NULL,
  `level` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `price` double(8,2) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ticket_price_event_id_foreign` (`event_id`),
  CONSTRAINT `ticket_price_event_id_foreign` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_price`
--

LOCK TABLES `ticket_price` WRITE;
/*!40000 ALTER TABLE `ticket_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `ticket_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_reissuances`
--

DROP TABLE IF EXISTS `ticket_reissuances`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ticket_reissuances` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `ticket_id` bigint unsigned NOT NULL,
  `reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `issued_by` bigint unsigned DEFAULT NULL,
  `delivery_method` enum('email','download') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ticket_reissuances_issued_by_foreign` (`issued_by`),
  KEY `ticket_reissuances_ticket_id_created_at_index` (`ticket_id`,`created_at`),
  CONSTRAINT `ticket_reissuances_issued_by_foreign` FOREIGN KEY (`issued_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `ticket_reissuances_ticket_id_foreign` FOREIGN KEY (`ticket_id`) REFERENCES `tickets` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_reissuances`
--

LOCK TABLES `ticket_reissuances` WRITE;
/*!40000 ALTER TABLE `ticket_reissuances` DISABLE KEYS */;
/*!40000 ALTER TABLE `ticket_reissuances` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_security_events`
--

DROP TABLE IF EXISTS `ticket_security_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ticket_security_events` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `event_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `ticket_id` bigint unsigned DEFAULT NULL,
  `details` json DEFAULT NULL,
  `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_agent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NOT NULL,
  PRIMARY KEY (`id`),
  KEY `ticket_security_events_event_type_index` (`event_type`),
  KEY `ticket_security_events_ticket_id_index` (`ticket_id`),
  KEY `ticket_security_events_created_at_index` (`created_at`),
  KEY `ticket_security_events_event_type_created_at_index` (`event_type`,`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_security_events`
--

LOCK TABLES `ticket_security_events` WRITE;
/*!40000 ALTER TABLE `ticket_security_events` DISABLE KEYS */;
/*!40000 ALTER TABLE `ticket_security_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_templates`
--

DROP TABLE IF EXISTS `ticket_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ticket_templates` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` enum('standard','vip','wristband','digital') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `html_template` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `css_styles` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `dimensions` json NOT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `version` int NOT NULL DEFAULT '1',
  `accessibility_compliant` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ticket_templates_type_is_active_index` (`type`,`is_active`),
  KEY `ticket_templates_version_index` (`version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_templates`
--

LOCK TABLES `ticket_templates` WRITE;
/*!40000 ALTER TABLE `ticket_templates` DISABLE KEYS */;
/*!40000 ALTER TABLE `ticket_templates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_url_access_logs`
--

DROP TABLE IF EXISTS `ticket_url_access_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ticket_url_access_logs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `ticket_id` bigint unsigned NOT NULL,
  `token_jti` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `event_id` bigint unsigned DEFAULT NULL,
  `order_id` bigint unsigned DEFAULT NULL,
  `accessed_at` timestamp NOT NULL,
  `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_agent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `metadata` json DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ticket_url_access_logs_ticket_id_index` (`ticket_id`),
  KEY `ticket_url_access_logs_token_jti_index` (`token_jti`),
  KEY `ticket_url_access_logs_event_id_index` (`event_id`),
  KEY `ticket_url_access_logs_order_id_index` (`order_id`),
  KEY `ticket_url_access_logs_accessed_at_index` (`accessed_at`),
  KEY `ticket_url_access_logs_ticket_id_accessed_at_index` (`ticket_id`,`accessed_at`),
  KEY `ticket_url_access_logs_ip_address_accessed_at_index` (`ip_address`,`accessed_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_url_access_logs`
--

LOCK TABLES `ticket_url_access_logs` WRITE;
/*!40000 ALTER TABLE `ticket_url_access_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `ticket_url_access_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_url_generation_logs`
--

DROP TABLE IF EXISTS `ticket_url_generation_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ticket_url_generation_logs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `ticket_id` bigint unsigned NOT NULL,
  `event_id` bigint unsigned DEFAULT NULL,
  `order_id` bigint unsigned DEFAULT NULL,
  `generated_by` bigint unsigned DEFAULT NULL,
  `expiry_minutes` int NOT NULL,
  `access_limit` int DEFAULT NULL,
  `metadata` json DEFAULT NULL,
  `generated_at` timestamp NOT NULL,
  `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `ticket_url_generation_logs_ticket_id_index` (`ticket_id`),
  KEY `ticket_url_generation_logs_generated_by_index` (`generated_by`),
  KEY `ticket_url_generation_logs_generated_at_index` (`generated_at`),
  KEY `ticket_url_generation_logs_ticket_id_generated_at_index` (`ticket_id`,`generated_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_url_generation_logs`
--

LOCK TABLES `ticket_url_generation_logs` WRITE;
/*!40000 ALTER TABLE `ticket_url_generation_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `ticket_url_generation_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_validations`
--

DROP TABLE IF EXISTS `ticket_validations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ticket_validations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `ticket_id` bigint unsigned NOT NULL,
  `line_item_id` bigint unsigned DEFAULT NULL,
  `tuid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `event_id` bigint unsigned DEFAULT NULL,
  `validation_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` enum('valid','invalid','duplicate','expired','tampered') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `scan_type` enum('entry','exit') COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Type of scan: entry (IN) or exit (OUT)',
  `manual_override` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'True if this validation was a manual override by a manager',
  `override_reason` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Manager-provided reason for manual override',
  `override_by_staff_id` bigint unsigned DEFAULT NULL COMMENT 'Admin ID who performed manual override',
  `override_approved_at` timestamp NULL DEFAULT NULL COMMENT 'When the manager approved the manual override',
  `scanner_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `scanner_location` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_agent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `qr_data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `signature_hash` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `signature_valid` tinyint(1) NOT NULL DEFAULT '0',
  `validation_errors` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `validated_at` datetime NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `idempotency_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_idempotency_key` (`idempotency_key`),
  KEY `ticket_validations_ticket_id_index` (`ticket_id`),
  KEY `ticket_validations_tuid_index` (`tuid`),
  KEY `ticket_validations_event_id_index` (`event_id`),
  KEY `ticket_validations_validation_code_index` (`validation_code`),
  KEY `ticket_validations_validated_at_index` (`validated_at`),
  KEY `ticket_validations_status_index` (`status`),
  KEY `ticket_validations_line_item_id_index` (`line_item_id`),
  KEY `idx_validation_scan_lookup` (`validation_code`,`scan_type`,`status`),
  KEY `idx_validation_code` (`validation_code`),
  KEY `idx_manual_override` (`manual_override`),
  CONSTRAINT `ticket_validations_line_item_id_foreign` FOREIGN KEY (`line_item_id`) REFERENCES `order_line_items` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_validations`
--

LOCK TABLES `ticket_validations` WRITE;
/*!40000 ALTER TABLE `ticket_validations` DISABLE KEYS */;
INSERT INTO `ticket_validations` VALUES (1,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid',NULL,0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-24 22:08:52','2025-11-24 22:08:52','2025-11-24 22:08:52',NULL),(3,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 12:09:21','2025-11-25 12:09:21','2025-11-25 12:09:21',NULL),(4,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 12:10:23','2025-11-25 12:10:23','2025-11-25 12:10:23',NULL),(5,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 12:20:44','2025-11-25 12:20:44','2025-11-25 12:20:44',NULL),(6,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 12:21:02','2025-11-25 12:21:02','2025-11-25 12:21:02',NULL),(7,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 12:21:16','2025-11-25 12:21:16','2025-11-25 12:21:16',NULL),(8,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 12:27:26','2025-11-25 12:27:26','2025-11-25 12:27:26',NULL),(9,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 12:27:31','2025-11-25 12:27:31','2025-11-25 12:27:31',NULL),(10,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 12:27:34','2025-11-25 12:27:34','2025-11-25 12:27:34',NULL),(11,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 12:28:36','2025-11-25 12:28:36','2025-11-25 12:28:36',NULL),(12,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 12:28:40','2025-11-25 12:28:40','2025-11-25 12:28:40',NULL),(13,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 12:28:57','2025-11-25 12:28:57','2025-11-25 12:28:57',NULL),(14,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 12:36:10','2025-11-25 12:36:10','2025-11-25 12:36:10',NULL),(15,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 12:36:13','2025-11-25 12:36:13','2025-11-25 12:36:13',NULL),(16,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 12:36:17','2025-11-25 12:36:17','2025-11-25 12:36:17',NULL),(17,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 12:36:27','2025-11-25 12:36:27','2025-11-25 12:36:27',NULL),(18,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 12:57:46','2025-11-25 12:57:46','2025-11-25 12:57:46',NULL),(19,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 12:57:50','2025-11-25 12:57:50','2025-11-25 12:57:50',NULL),(20,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 12:57:54','2025-11-25 12:57:54','2025-11-25 12:57:54',NULL),(21,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 12:57:57','2025-11-25 12:57:57','2025-11-25 12:57:57',NULL),(22,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 13:04:30','2025-11-25 13:04:30','2025-11-25 13:04:30',NULL),(23,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 13:05:56','2025-11-25 13:05:56','2025-11-25 13:05:56',NULL),(24,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 13:06:13','2025-11-25 13:06:13','2025-11-25 13:06:13',NULL),(25,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 13:06:17','2025-11-25 13:06:17','2025-11-25 13:06:17',NULL),(26,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019ab7006205',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 13:07:01','2025-11-25 13:07:01','2025-11-25 13:07:01',NULL),(27,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019abb29c5f9',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 13:19:23','2025-11-25 13:19:23','2025-11-25 13:19:23',NULL),(28,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019abb29c5f9',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 13:19:27','2025-11-25 13:19:27','2025-11-25 13:19:27',NULL),(29,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019abb29c5f9',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 13:19:32','2025-11-25 13:19:32','2025-11-25 13:19:32',NULL),(30,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019abb29c5f9',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 13:25:26','2025-11-25 13:25:26','2025-11-25 13:25:26',NULL),(31,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019abb29c5f9',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 13:25:38','2025-11-25 13:25:38','2025-11-25 13:25:38',NULL),(32,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019abb29c5f9',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 14:24:04','2025-11-25 14:24:04','2025-11-25 14:24:04',NULL),(33,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019abb29c5f9',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 14:24:10','2025-11-25 14:24:10','2025-11-25 14:24:10',NULL),(34,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019abb29c5f9',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 14:24:36','2025-11-25 14:24:36','2025-11-25 14:24:36',NULL),(35,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019abb29c5f9',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 14:24:40','2025-11-25 14:24:40','2025-11-25 14:24:40',NULL),(36,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019abb29c5f9',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 14:26:23','2025-11-25 14:26:23','2025-11-25 14:26:23',NULL),(37,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019abb29c5f9',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 14:29:56','2025-11-25 14:29:56','2025-11-25 14:29:56',NULL),(38,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019abb29c5f9',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 14:30:36','2025-11-25 14:30:36','2025-11-25 14:30:36',NULL),(39,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019abb29c5f9',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 14:31:09','2025-11-25 14:31:09','2025-11-25 14:31:09',NULL),(40,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019abb29c5f9',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 14:32:45','2025-11-25 14:32:45','2025-11-25 14:32:45',NULL),(41,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019abb29c5f9',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 14:32:53','2025-11-25 14:32:53','2025-11-25 14:32:53',NULL),(42,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019abb29c5f9',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 14:34:05','2025-11-25 14:34:05','2025-11-25 14:34:05',NULL),(43,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019abb29c5f9',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 14:34:09','2025-11-25 14:34:09','2025-11-25 14:34:09',NULL),(44,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019abb29c5f9',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 14:34:14','2025-11-25 14:34:14','2025-11-25 14:34:14',NULL),(45,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019abb29c5f9',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 14:34:18','2025-11-25 14:34:18','2025-11-25 14:34:18',NULL),(46,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019abb29c5f9',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 14:36:44','2025-11-25 14:36:44','2025-11-25 14:36:44',NULL),(47,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'2700e514-2700-4270-019a-019abb29c5f9',NULL,NULL,NULL,NULL,NULL,0,NULL,'2025-11-25 14:37:04','2025-11-25 14:37:04','2025-11-25 14:37:04',NULL),(48,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'a429c025-6002-44d1-a526-7312c107a181','Main Entrance',NULL,NULL,NULL,NULL,0,NULL,'2025-11-26 13:37:18','2025-11-26 13:37:18','2025-11-26 13:37:18',NULL),(49,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'a429c025-6002-44d1-a526-7312c107a181','Main Entrance',NULL,NULL,NULL,NULL,0,NULL,'2025-11-26 13:37:24','2025-11-26 13:37:24','2025-11-26 13:37:24',NULL),(50,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'a429c025-6002-44d1-a526-7312c107a181','Main Entrance',NULL,NULL,NULL,NULL,0,NULL,'2025-11-26 13:37:32','2025-11-26 13:37:32','2025-11-26 13:37:32',NULL),(51,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'a429c025-6002-44d1-a526-7312c107a181','Main Entrance',NULL,NULL,NULL,NULL,0,NULL,'2025-11-26 13:39:18','2025-11-26 13:39:18','2025-11-26 13:39:18',NULL),(52,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'a429c025-6002-44d1-a526-7312c107a181','Main Entrance',NULL,NULL,NULL,NULL,0,NULL,'2025-11-26 14:12:27','2025-11-26 14:12:27','2025-11-26 14:12:27',NULL),(53,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'a429c025-6002-44d1-a526-7312c107a181','Main Entrance',NULL,NULL,NULL,NULL,0,NULL,'2025-11-26 14:12:34','2025-11-26 14:12:34','2025-11-26 14:12:34',NULL),(54,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'a429c025-6002-44d1-a526-7312c107a181','Main Entrance',NULL,NULL,NULL,NULL,0,NULL,'2025-11-26 14:25:38','2025-11-26 14:25:38','2025-11-26 14:25:38',NULL),(55,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'a429c025-6002-44d1-a526-7312c107a181','Main Entrance',NULL,NULL,NULL,NULL,0,NULL,'2025-11-26 14:32:21','2025-11-26 14:32:21','2025-11-26 14:32:21',NULL),(56,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'a429c025-6002-44d1-a526-7312c107a181','Main Entrance',NULL,NULL,NULL,NULL,0,NULL,'2025-11-26 14:32:25','2025-11-26 14:32:25','2025-11-26 14:32:25',NULL),(57,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'a429c025-6002-44d1-a526-7312c107a181','Main Entrance',NULL,NULL,NULL,NULL,0,NULL,'2025-11-26 14:36:18','2025-11-26 14:36:18','2025-11-26 14:36:18',NULL),(58,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'a429c025-6002-44d1-a526-7312c107a181','Main Entrance',NULL,NULL,NULL,NULL,0,NULL,'2025-11-26 14:45:36','2025-11-26 14:45:36','2025-11-26 14:45:36',NULL),(59,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'a429c025-6002-44d1-a526-7312c107a181','Main Entrance',NULL,NULL,NULL,NULL,0,NULL,'2025-11-26 14:45:41','2025-11-26 14:45:41','2025-11-26 14:45:41',NULL),(60,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'a429c025-6002-44d1-a526-7312c107a181','Main Entrance',NULL,NULL,NULL,NULL,0,NULL,'2025-11-26 14:52:35','2025-11-26 14:52:35','2025-11-26 14:52:35',NULL),(61,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','entry',0,NULL,NULL,NULL,'a429c025-6002-44d1-a526-7312c107a181','Main Entrance',NULL,NULL,NULL,NULL,0,NULL,'2025-11-26 14:52:39','2025-11-26 14:52:39','2025-11-26 14:52:39',NULL),(62,0,NULL,'',2,'32A9J3AWEVBG9K6XE8T27','valid','exit',0,NULL,NULL,NULL,'a429c025-6002-44d1-a526-7312c107a181','Main Entrance',NULL,NULL,NULL,NULL,0,NULL,'2025-11-26 14:59:44','2025-11-26 14:59:44','2025-11-26 14:59:44',NULL);
/*!40000 ALTER TABLE `ticket_validations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_verification_codes`
--

DROP TABLE IF EXISTS `ticket_verification_codes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ticket_verification_codes` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `verification_code` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Short unique code for QR/barcode',
  `line_item_id` bigint unsigned NOT NULL COMMENT 'Reference to order_line_items table',
  `order_id` bigint unsigned NOT NULL COMMENT 'Reference to orders table',
  `event_id` bigint unsigned NOT NULL COMMENT 'Event this ticket is for',
  `ticket_type` enum('qr','barcode','both') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'both' COMMENT 'Type of code generated',
  `status` enum('active','used','revoked','expired') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active' COMMENT 'Current status of verification code',
  `qr_data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT 'JSON with minimal ticket info for QR',
  `barcode_data` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'CODE128 data for barcode',
  `barcode_format` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'CODE128' COMMENT 'Barcode format type',
  `hmac_signature` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'HMAC signature for tamper detection',
  `generated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'When verification code was created',
  `expires_at` timestamp NULL DEFAULT NULL COMMENT 'Optional expiry (null = never expires)',
  `first_scanned_at` timestamp NULL DEFAULT NULL COMMENT 'First scan timestamp',
  `last_scanned_at` timestamp NULL DEFAULT NULL COMMENT 'Most recent scan timestamp',
  `scan_count` int unsigned NOT NULL DEFAULT '0' COMMENT 'Number of times scanned',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `ticket_verification_codes_verification_code_unique` (`verification_code`),
  KEY `idx_event_status` (`event_id`,`status`),
  KEY `idx_order_status` (`order_id`,`status`),
  KEY `ticket_verification_codes_line_item_id_index` (`line_item_id`),
  KEY `ticket_verification_codes_order_id_index` (`order_id`),
  KEY `ticket_verification_codes_event_id_index` (`event_id`),
  KEY `ticket_verification_codes_status_index` (`status`),
  CONSTRAINT `ticket_verification_codes_event_id_foreign` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`) ON DELETE CASCADE,
  CONSTRAINT `ticket_verification_codes_line_item_id_foreign` FOREIGN KEY (`line_item_id`) REFERENCES `order_line_items` (`id`) ON DELETE CASCADE,
  CONSTRAINT `ticket_verification_codes_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=76 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_verification_codes`
--

LOCK TABLES `ticket_verification_codes` WRITE;
/*!40000 ALTER TABLE `ticket_verification_codes` DISABLE KEYS */;
INSERT INTO `ticket_verification_codes` VALUES (1,'3VQCDJ-BYMQU0',1,1,1,'both','active','{\"ticket_id\":0,\"verification_code\":\"3VQCDJ-BYMQU0\",\"event_id\":1,\"zone\":null,\"table\":null,\"seat\":\"A1\",\"customer\":\"JOHN SMITH\"}','32A9J3AWEVBG9K6XE8T27','CODE128',NULL,'2025-11-24 21:34:01','2025-12-24 21:34:01',NULL,NULL,0,'2025-11-24 21:34:01','2025-11-24 22:01:51'),(2,'GQKU9O-RYQYZS',2,1,1,'both','active','{\"ticket_id\":1,\"verification_code\":\"GQKU9O-RYQYZS\",\"event_id\":1,\"zone\":null,\"table\":null,\"seat\":\"B2\",\"customer\":\"JOHN SMITH\"}','2DE855E0E9A33207CE4A4','CODE128',NULL,'2025-11-24 21:34:01','2025-12-24 21:34:01',NULL,NULL,0,'2025-11-24 21:34:01','2025-11-24 21:34:01'),(3,'UOJH8L-7U3CLV',3,1,1,'both','active','{\"ticket_id\":2,\"verification_code\":\"UOJH8L-7U3CLV\",\"event_id\":1,\"zone\":null,\"table\":null,\"seat\":\"C3\",\"customer\":\"JOHN SMITH\"}','6F9B5400776C4762CC2DA','CODE128',NULL,'2025-11-24 21:34:01','2025-12-24 21:34:01',NULL,NULL,0,'2025-11-24 21:34:01','2025-11-24 21:34:01'),(4,'VAAYCL-0E6ZJF',4,1,1,'both','active','{\"ticket_id\":3,\"verification_code\":\"VAAYCL-0E6ZJF\",\"event_id\":1,\"zone\":null,\"table\":null,\"seat\":\"D4\",\"customer\":\"JOHN SMITH\"}','1D2A0F3D4ED8D94A71210','CODE128',NULL,'2025-11-24 21:34:01','2025-12-24 21:34:01',NULL,NULL,0,'2025-11-24 21:34:01','2025-11-24 21:34:01'),(5,'KDEXJK-FJKUGV',5,1,1,'both','active','{\"ticket_id\":4,\"verification_code\":\"KDEXJK-FJKUGV\",\"event_id\":1,\"zone\":null,\"table\":null,\"seat\":\"E5\",\"customer\":\"JOHN SMITH\"}','98EA4191ACAE0A624BFF2','CODE128',NULL,'2025-11-24 21:34:01','2025-12-24 21:34:01',NULL,NULL,0,'2025-11-24 21:34:01','2025-11-24 21:34:01'),(7,'84CXEQ-VYESSE',1,2,2,'both','active',NULL,'32A9J3AWEVBG9K6XE8T27','CODE128',NULL,'2025-11-24 22:00:15',NULL,NULL,NULL,0,'2025-11-24 22:00:15','2025-11-24 22:00:15'),(8,'MB6YYG-ELVQVM',1,2,2,'both','active',NULL,'MSDFMVZEBMK3Q7RFMWC58','CODE128',NULL,'2025-11-24 22:00:15',NULL,NULL,NULL,0,'2025-11-24 22:00:15','2025-11-24 22:00:15'),(9,'8Y3J78-YLMPTY',1,2,2,'both','active',NULL,'S772U2KDH42KX5D9WDDCK','CODE128',NULL,'2025-11-24 22:00:15',NULL,NULL,NULL,0,'2025-11-24 22:00:15','2025-11-24 22:00:15'),(10,'GNDL5N-H9872S',1,2,2,'both','active',NULL,'NX2KQEAJDMHFGKM9RSQWZ','CODE128',NULL,'2025-11-24 22:00:15',NULL,NULL,NULL,0,'2025-11-24 22:00:15','2025-11-24 22:00:15'),(11,'6LL29T-PZVY5J',1,2,2,'both','active',NULL,'4M2CG66S63Q8GWJESMYQY','CODE128',NULL,'2025-11-24 22:00:15',NULL,NULL,NULL,0,'2025-11-24 22:00:15','2025-11-24 22:00:15'),(12,'GxV1pm9DWtk56oWCP1W6O',6,3,23,'qr','active','{\"v\":\"GxV1pm9DWtk56oWCP1W6O\",\"t\":\"ticket\",\"e\":23}','GxV1pm9DWtk56oWCP1W6O','CODE128','xKiZ1DPkTLPkvlqVNN3qiHmMIm1T8xLFSL1VoxshMus=','2025-12-01 14:21:36',NULL,NULL,NULL,0,'2025-12-01 14:21:36','2025-12-01 14:21:36'),(13,'hcKys4ltOD-_XxWkT4CpY',7,3,23,'qr','active','{\"v\":\"hcKys4ltOD-_XxWkT4CpY\",\"t\":\"ticket\",\"e\":23}','hcKys4ltOD-_XxWkT4CpY','CODE128','SDaHPgKiRObyDi57rHCz/YIaYM6zJ4auev7USgR2ecQ=','2025-12-01 14:21:36',NULL,NULL,NULL,0,'2025-12-01 14:21:36','2025-12-01 14:21:36'),(14,'75053o-aJNrq98qdBbspe',8,3,23,'qr','active','{\"v\":\"75053o-aJNrq98qdBbspe\",\"t\":\"ticket\",\"e\":23}','75053o-aJNrq98qdBbspe','CODE128','TnlY4BwOwf1wTEGSqGPPl+0u/3vbe4QWlfNLEKka9Ys=','2025-12-01 14:21:36',NULL,NULL,NULL,0,'2025-12-01 14:21:36','2025-12-01 14:21:36'),(15,'lCIQCi9M-wiYO7jNZlxOC',9,4,23,'qr','active','{\"v\":\"lCIQCi9M-wiYO7jNZlxOC\",\"t\":\"ticket\",\"e\":23}','lCIQCi9M-wiYO7jNZlxOC','CODE128','QDJ1qu3lz9ibZkXFPGAgC6CLVnapoufMv8LanSpftCo=','2025-12-01 14:51:45',NULL,NULL,NULL,0,'2025-12-01 14:51:45','2025-12-01 14:51:45'),(16,'rBBN3TQXXgPGvaBXmiaN_',10,4,23,'qr','active','{\"v\":\"rBBN3TQXXgPGvaBXmiaN_\",\"t\":\"ticket\",\"e\":23}','rBBN3TQXXgPGvaBXmiaN_','CODE128','8bE21JbZsE9rieyLU0OdCq1kUlBl60Mf4BIhrKW+dkE=','2025-12-01 14:51:45',NULL,NULL,NULL,0,'2025-12-01 14:51:45','2025-12-01 14:51:45'),(17,'lKVb5HXawor8U-5jbN07S',11,4,23,'qr','active','{\"v\":\"lKVb5HXawor8U-5jbN07S\",\"t\":\"ticket\",\"e\":23}','lKVb5HXawor8U-5jbN07S','CODE128','vb75pgGBQHDHY7TQHGGzlm/L9xTkLvKrTAg41d9/ZXM=','2025-12-01 14:51:45',NULL,NULL,NULL,0,'2025-12-01 14:51:45','2025-12-01 14:51:45'),(18,'FoitJz3gO4qW2XFbG3GJO',12,5,23,'qr','active','{\"v\":\"FoitJz3gO4qW2XFbG3GJO\",\"t\":\"ticket\",\"e\":23}','FoitJz3gO4qW2XFbG3GJO','CODE128','m854TmBoXvudKtmDDSHEy3gGx+p0fRmcKAPnlX0Q+BI=','2025-12-01 14:59:42',NULL,NULL,NULL,0,'2025-12-01 14:59:42','2025-12-01 14:59:42'),(19,'r-S0HYXhh9xc_vvmdmBzH',13,5,23,'qr','active','{\"v\":\"r-S0HYXhh9xc_vvmdmBzH\",\"t\":\"ticket\",\"e\":23}','r-S0HYXhh9xc_vvmdmBzH','CODE128','w5LtHJmgeTj2YHYfKMib9zebeM57SfdAe5PoBd0D1+4=','2025-12-01 14:59:42',NULL,NULL,NULL,0,'2025-12-01 14:59:42','2025-12-01 14:59:42'),(20,'b53pKSanYDfsi3IVVlzJZ',14,6,23,'qr','active','{\"v\":\"b53pKSanYDfsi3IVVlzJZ\",\"t\":\"ticket\",\"e\":23}','b53pKSanYDfsi3IVVlzJZ','CODE128','v6+vi8D6t4r/oJ2d7KPBtC1yGXUgMlcGrKZ4gMbBRWg=','2025-12-01 15:23:22',NULL,NULL,NULL,0,'2025-12-01 15:23:22','2025-12-01 15:23:22'),(21,'29HqiClnbc3AVuA7PnAkz',15,6,23,'qr','active','{\"v\":\"29HqiClnbc3AVuA7PnAkz\",\"t\":\"ticket\",\"e\":23}','29HqiClnbc3AVuA7PnAkz','CODE128','S/CS3ssYcCV2sx+J5m0VbjDOHqqdgNHQNV9wxPWIxH8=','2025-12-01 15:23:22',NULL,NULL,NULL,0,'2025-12-01 15:23:22','2025-12-01 15:23:22'),(22,'zwHCfRZC1a-9muU47xQOp',16,7,23,'qr','active','{\"v\":\"zwHCfRZC1a-9muU47xQOp\",\"t\":\"ticket\",\"e\":23}','zwHCfRZC1a-9muU47xQOp','CODE128','LzVcX5FjTOA00THS3VfQRMeFqrbKZtcJOd+rXAM5Oyk=','2025-12-01 15:40:30',NULL,NULL,NULL,0,'2025-12-01 15:40:30','2025-12-01 15:40:30'),(23,'bOVt1gEq-sPRaArqNw0D3',17,7,23,'qr','active','{\"v\":\"bOVt1gEq-sPRaArqNw0D3\",\"t\":\"ticket\",\"e\":23}','bOVt1gEq-sPRaArqNw0D3','CODE128','pi/eMWMU5Nz8SVPEIIhw6p/ykHqYwStvo0O5kPKTJT8=','2025-12-01 15:40:30',NULL,NULL,NULL,0,'2025-12-01 15:40:30','2025-12-01 15:40:30'),(24,'pqH0ZPtdph0iz57BZM5gP',18,8,23,'qr','active','{\"v\":\"pqH0ZPtdph0iz57BZM5gP\",\"t\":\"ticket\",\"e\":23}','pqH0ZPtdph0iz57BZM5gP','CODE128','YfFtM3qmp21QFLUXoMkaqWJEUsePOxEJTRoB7aEmuhs=','2025-12-01 15:55:33',NULL,NULL,NULL,0,'2025-12-01 15:55:33','2025-12-01 15:55:33'),(25,'2FwB63p_SlwsogWejfTGK',19,8,23,'qr','active','{\"v\":\"2FwB63p_SlwsogWejfTGK\",\"t\":\"ticket\",\"e\":23}','2FwB63p_SlwsogWejfTGK','CODE128','4w7M6Mn8TM5slnJl5ZCIg5/PyD8BgwwYZaXM9SgB+xE=','2025-12-01 15:55:33',NULL,NULL,NULL,0,'2025-12-01 15:55:33','2025-12-01 15:55:33'),(26,'mO8Wtf1JJJltbhZXxwEc-',20,9,23,'qr','active','{\"v\":\"mO8Wtf1JJJltbhZXxwEc-\",\"t\":\"ticket\",\"e\":23}','mO8Wtf1JJJltbhZXxwEc-','CODE128','6QIeZLSddnrHWLgfYlU0Dk7UsUVjY75PhemyIpBFJPA=','2025-12-01 16:27:23',NULL,NULL,NULL,0,'2025-12-01 16:27:23','2025-12-01 16:27:23'),(27,'TWAPxHHu8IYAkOaEeaVVx',21,9,23,'qr','active','{\"v\":\"TWAPxHHu8IYAkOaEeaVVx\",\"t\":\"ticket\",\"e\":23}','TWAPxHHu8IYAkOaEeaVVx','CODE128','jDtd/d4CD6TfFQp3Q/4DEvyqtzi3kigiMmEIrtbpTvg=','2025-12-01 16:27:23',NULL,NULL,NULL,0,'2025-12-01 16:27:23','2025-12-01 16:27:23'),(28,'nPE3dwHzdwq7pVeula1NH',22,10,23,'qr','active','{\"v\":\"nPE3dwHzdwq7pVeula1NH\",\"t\":\"ticket\",\"e\":23}','nPE3dwHzdwq7pVeula1NH','CODE128','Zi0aZ13a3O/TxAq2QqRuvHq7w55aQz+rg2kcjJVr6+o=','2025-12-01 16:41:29',NULL,NULL,NULL,0,'2025-12-01 16:41:29','2025-12-01 16:41:29'),(29,'VDsKFkCSMIUk6XdoY23ma',23,10,23,'qr','active','{\"v\":\"VDsKFkCSMIUk6XdoY23ma\",\"t\":\"ticket\",\"e\":23}','VDsKFkCSMIUk6XdoY23ma','CODE128','BNY5ydjOdDcQFYyS2eIWQBnGmFVeLnvm0AczF93RZ18=','2025-12-01 16:41:29',NULL,NULL,NULL,0,'2025-12-01 16:41:29','2025-12-01 16:41:29'),(30,'wNynQSfN5_3iILG1_Cre5',24,11,23,'qr','active','{\"v\":\"wNynQSfN5_3iILG1_Cre5\",\"t\":\"ticket\",\"e\":23}','wNynQSfN5_3iILG1_Cre5','CODE128','woZdeYjETHti+dMcu4drWwYV90/RGFNlEqEGm0mdRww=','2025-12-01 16:41:57',NULL,NULL,NULL,0,'2025-12-01 16:41:57','2025-12-01 16:41:57'),(31,'WDzueWEjWykmEbBb2xfLW',25,11,23,'qr','active','{\"v\":\"WDzueWEjWykmEbBb2xfLW\",\"t\":\"ticket\",\"e\":23}','WDzueWEjWykmEbBb2xfLW','CODE128','fweq9IfwBVZ+YvM2nGlHUExgh0spw8uiSfqWCWrbr/0=','2025-12-01 16:41:57',NULL,NULL,NULL,0,'2025-12-01 16:41:57','2025-12-01 16:41:57'),(32,'RK2f0KCHp3AzmqLMAR2vZ',26,12,23,'qr','active','{\"v\":\"RK2f0KCHp3AzmqLMAR2vZ\",\"t\":\"ticket\",\"e\":23}','RK2f0KCHp3AzmqLMAR2vZ','CODE128','+Jyfyl1EHjxPKZ1d+NMOhJLGmDv39loPxFL2DrY1rKI=','2025-12-01 16:55:56',NULL,NULL,NULL,0,'2025-12-01 16:55:56','2025-12-01 16:55:56'),(33,'edzQIjeaHBZJZUOD4dwUU',27,12,23,'qr','active','{\"v\":\"edzQIjeaHBZJZUOD4dwUU\",\"t\":\"ticket\",\"e\":23}','edzQIjeaHBZJZUOD4dwUU','CODE128','MTqTlcA0rYrlHrjucBvBEeIXo0mHyN0dzi9MZV3IX/Y=','2025-12-01 16:55:56',NULL,NULL,NULL,0,'2025-12-01 16:55:56','2025-12-01 16:55:56'),(34,'mglYHlqTdOM7HLNlO-9Nw',28,13,23,'qr','active','{\"v\":\"mglYHlqTdOM7HLNlO-9Nw\",\"t\":\"ticket\",\"e\":23}','mglYHlqTdOM7HLNlO-9Nw','CODE128','SP7MXtM6RJnLHwo4r46B8lgXp5KR4fMSvXXU8XIp69s=','2025-12-01 17:14:02',NULL,NULL,NULL,0,'2025-12-01 17:14:02','2025-12-01 17:14:02'),(35,'Ryo4WUM1WrvJaQX76dEGZ',29,13,23,'qr','active','{\"v\":\"Ryo4WUM1WrvJaQX76dEGZ\",\"t\":\"ticket\",\"e\":23}','Ryo4WUM1WrvJaQX76dEGZ','CODE128','VgJGu8t9pejwLckLABoItbEfs0EafPQgxiiQxnyTJWI=','2025-12-01 17:14:02',NULL,NULL,NULL,0,'2025-12-01 17:14:02','2025-12-01 17:14:02'),(36,'7eGVuIKJeDJr4lrAWS3aI',30,14,23,'qr','active','{\"v\":\"7eGVuIKJeDJr4lrAWS3aI\",\"t\":\"ticket\",\"e\":23}','7eGVuIKJeDJr4lrAWS3aI','CODE128','7IYTT7pIVTjnk3Ht3KQh9Cu8Y+KmXhhJ2SIUfqS4Iro=','2025-12-01 17:41:57',NULL,NULL,NULL,0,'2025-12-01 17:41:57','2025-12-01 17:41:57'),(37,'hKQ3bVr1vrV_-LAb-E9p3',31,15,23,'qr','active','{\"v\":\"hKQ3bVr1vrV_-LAb-E9p3\",\"t\":\"ticket\",\"e\":23}','hKQ3bVr1vrV_-LAb-E9p3','CODE128','4a11iuvhXuc3gtmHdgQOafuRv9K36CviceC+9QfHhu8=','2025-12-01 17:48:34',NULL,NULL,NULL,0,'2025-12-01 17:48:34','2025-12-01 17:48:34'),(38,'wBmL8sCoCmCxW79YP71GW',32,16,23,'qr','active','{\"v\":\"wBmL8sCoCmCxW79YP71GW\",\"t\":\"ticket\",\"e\":23}','wBmL8sCoCmCxW79YP71GW','CODE128','6dqu44AZPglPMG96lD8VkOAYO4eYrHaTROGBG/6/QRU=','2025-12-01 18:07:03',NULL,NULL,NULL,0,'2025-12-01 18:07:03','2025-12-01 18:07:03'),(39,'BB0bNO0vjjRpxp_K7k5LB',33,16,23,'qr','active','{\"v\":\"BB0bNO0vjjRpxp_K7k5LB\",\"t\":\"ticket\",\"e\":23}','BB0bNO0vjjRpxp_K7k5LB','CODE128','IRh6i9cwjxi8MPIcPiQkMMmE1b8NJhDvN4s44AmrQh4=','2025-12-01 18:07:04',NULL,NULL,NULL,0,'2025-12-01 18:07:04','2025-12-01 18:07:04'),(40,'ETRnV8Z2Bodj2s1sLqlQi',34,17,23,'qr','active','{\"v\":\"ETRnV8Z2Bodj2s1sLqlQi\",\"t\":\"ticket\",\"e\":23}','ETRnV8Z2Bodj2s1sLqlQi','CODE128','ryAHCeemVjJPnrvdfMMjUDWSI2j7Ek+ohd0loHKagW8=','2025-12-01 18:45:14',NULL,NULL,NULL,0,'2025-12-01 18:45:14','2025-12-01 18:45:14'),(41,'nMpwdk5b0IF5T18emV5F9',35,17,23,'qr','active','{\"v\":\"nMpwdk5b0IF5T18emV5F9\",\"t\":\"ticket\",\"e\":23}','nMpwdk5b0IF5T18emV5F9','CODE128','TaXTPh3gOCHDAGtHQmp5VbIovIDBbfMXlwL6MQalxw8=','2025-12-01 18:45:14',NULL,NULL,NULL,0,'2025-12-01 18:45:14','2025-12-01 18:45:14'),(42,'BmiPKHpoizRYXgu5REWYG',36,17,23,'qr','active','{\"v\":\"BmiPKHpoizRYXgu5REWYG\",\"t\":\"ticket\",\"e\":23}','BmiPKHpoizRYXgu5REWYG','CODE128','/b4JiQvmxMsq8gwoK0dcflONMp4Azc0ZQg8W1mupzy8=','2025-12-01 18:45:14',NULL,NULL,NULL,0,'2025-12-01 18:45:14','2025-12-01 18:45:14'),(43,'ELFmQPbvU8nyv3hnoGmAo',37,18,23,'qr','active','{\"v\":\"ELFmQPbvU8nyv3hnoGmAo\",\"t\":\"ticket\",\"e\":23}','ELFmQPbvU8nyv3hnoGmAo','CODE128','Brj24c/44vwTM4zeHgy8NmPYbee+C2dggq9azoBY5l4=','2025-12-02 12:55:00',NULL,NULL,NULL,0,'2025-12-02 12:55:00','2025-12-02 12:55:00'),(44,'9o8TbpKcKxiUD3VEhduyK',38,18,23,'qr','active','{\"v\":\"9o8TbpKcKxiUD3VEhduyK\",\"t\":\"ticket\",\"e\":23}','9o8TbpKcKxiUD3VEhduyK','CODE128','76wpFLf0WhrIY1NShgtHgEyPYAAd+AiNTtNus76CcRc=','2025-12-02 12:55:00',NULL,NULL,NULL,0,'2025-12-02 12:55:00','2025-12-02 12:55:00'),(45,'9Dp32DR5HwwdRrkim-H9F',39,18,23,'qr','active','{\"v\":\"9Dp32DR5HwwdRrkim-H9F\",\"t\":\"ticket\",\"e\":23}','9Dp32DR5HwwdRrkim-H9F','CODE128','ugdWKmmYLOvcWfbqn9fAOLs9J1j/DeWhnHthn3pkuck=','2025-12-02 12:55:00',NULL,NULL,NULL,0,'2025-12-02 12:55:00','2025-12-02 12:55:00'),(46,'DSvIKMDxpZh5M7oXoFxDS',40,19,23,'qr','active','{\"v\":\"DSvIKMDxpZh5M7oXoFxDS\",\"t\":\"ticket\",\"e\":23}','DSvIKMDxpZh5M7oXoFxDS','CODE128','jE4nYavtwdMfe3eVGkXWWNQPnhtc3kY4y690o1W6j8I=','2025-12-02 13:02:52',NULL,NULL,NULL,0,'2025-12-02 13:02:52','2025-12-02 13:02:52'),(47,'IvNtbZhpSb3nRinARex2Q',41,20,23,'qr','active','{\"v\":\"IvNtbZhpSb3nRinARex2Q\",\"t\":\"ticket\",\"e\":23}','IvNtbZhpSb3nRinARex2Q','CODE128','y6T3E6IeDrU8L5w++plwRH1yetW8CxcOovlpETJLK3w=','2025-12-02 13:58:26',NULL,NULL,NULL,0,'2025-12-02 13:58:26','2025-12-02 13:58:26'),(48,'ImV1Shf-9hqWCo9DtwdkV',42,21,23,'qr','active','{\"v\":\"ImV1Shf-9hqWCo9DtwdkV\",\"t\":\"ticket\",\"e\":23}','ImV1Shf-9hqWCo9DtwdkV','CODE128','dP4kBwXZq9rYfUT6lrcwVYtExlQT1li0lBLVc1BDcgc=','2025-12-02 14:36:58',NULL,NULL,NULL,0,'2025-12-02 14:36:58','2025-12-02 14:36:58'),(49,'jf7HKVDl8J5IrEH9eCXgq',43,22,23,'qr','active','{\"v\":\"jf7HKVDl8J5IrEH9eCXgq\",\"t\":\"ticket\",\"e\":23}','jf7HKVDl8J5IrEH9eCXgq','CODE128','kWwj6Tglek/e6nQkGXtJe967U+EKV9QfGyIXHthJ7YY=','2025-12-02 14:37:29',NULL,NULL,NULL,0,'2025-12-02 14:37:29','2025-12-02 14:37:29'),(50,'vMu6xGkuVqqy1I3GFc-jJ',44,23,23,'qr','active','{\"v\":\"vMu6xGkuVqqy1I3GFc-jJ\",\"t\":\"ticket\",\"e\":23}','vMu6xGkuVqqy1I3GFc-jJ','CODE128','kfLzMTRGSs4kpqNY0RXZHW0js+lMAtj6dlnmEJiZ2Xs=','2025-12-02 14:37:54',NULL,NULL,NULL,0,'2025-12-02 14:37:54','2025-12-02 14:37:54'),(51,'m45cO9DqlgZn0YZOTnx7C',45,24,23,'qr','active','{\"v\":\"m45cO9DqlgZn0YZOTnx7C\",\"t\":\"ticket\",\"e\":23}','m45cO9DqlgZn0YZOTnx7C','CODE128','9GEvk0gBtpkO069z100/02IZMntGuMCYQjbC9qnUvNw=','2025-12-02 14:40:21',NULL,NULL,NULL,0,'2025-12-02 14:40:21','2025-12-02 14:40:21'),(52,'MATJCTt8XaCBGapq6eu24',46,25,23,'qr','active','{\"v\":\"MATJCTt8XaCBGapq6eu24\",\"t\":\"ticket\",\"e\":23}','MATJCTt8XaCBGapq6eu24','CODE128','0gUyzq+vBZkqW55Xev7V37jZE8E/ZQgkn4l4/OOX5vA=','2025-12-02 14:45:44',NULL,NULL,NULL,0,'2025-12-02 14:45:44','2025-12-02 14:45:44'),(53,'KzejoHROGqktQsJo1E_wL',42,21,23,'qr','active','{\"v\":\"KzejoHROGqktQsJo1E_wL\",\"t\":\"ticket\",\"e\":23}','KzejoHROGqktQsJo1E_wL','CODE128','/WecMcexq0EKOYZIJjSuoiIozKB6ptqtvw4oaSP6XP0=','2025-12-02 15:01:41',NULL,NULL,NULL,0,'2025-12-02 15:01:41','2025-12-02 15:01:41'),(55,'iddfErZxy0cV7tNa_3uhV',42,21,23,'qr','active','{\"v\":\"iddfErZxy0cV7tNa_3uhV\",\"t\":\"ticket\",\"e\":23}','iddfErZxy0cV7tNa_3uhV','CODE128','PVgsK7lov5RlKcciz8yAyNLySUg7b5iPNjwHlRj3aC0=','2025-12-02 15:17:48',NULL,NULL,NULL,0,'2025-12-02 15:17:48','2025-12-02 15:17:48'),(56,'g6AaO4VquqhYvrn2ZeOlf',42,21,23,'qr','active','{\"v\":\"g6AaO4VquqhYvrn2ZeOlf\",\"t\":\"ticket\",\"e\":23}','g6AaO4VquqhYvrn2ZeOlf','CODE128','hVjMdac/JuLiWKI8hGwEz/4DyssWyw/HZk5nfpy7YCY=','2025-12-02 15:19:29',NULL,NULL,NULL,0,'2025-12-02 15:19:29','2025-12-02 15:19:29'),(57,'-StWdUO-MdD-BOb9uEE0w',42,21,23,'qr','active','{\"v\":\"-StWdUO-MdD-BOb9uEE0w\",\"t\":\"ticket\",\"e\":23}','-StWdUO-MdD-BOb9uEE0w','CODE128','plBchVRRgIeUJFeFXVYi+UXWOM6oF4p8a6dKlWKP+Ug=','2025-12-02 15:22:29',NULL,NULL,NULL,0,'2025-12-02 15:22:29','2025-12-02 15:22:29'),(58,'ydB5e8hIwuZYdduN6F6in',42,21,23,'qr','active','{\"v\":\"ydB5e8hIwuZYdduN6F6in\",\"t\":\"ticket\",\"e\":23}','ydB5e8hIwuZYdduN6F6in','CODE128','AalRHC0rTs+oKj4G8EBUF2VPj+orEtabBYA6TTDiGCw=','2025-12-02 15:22:50',NULL,NULL,NULL,0,'2025-12-02 15:22:50','2025-12-02 15:22:50'),(59,'8M-CJTD8VuzePZSr6uIPR',42,21,23,'qr','active','{\"v\":\"8M-CJTD8VuzePZSr6uIPR\",\"t\":\"ticket\",\"e\":23}','8M-CJTD8VuzePZSr6uIPR','CODE128','WDz4MHAvC8OhrLYKQzgF2Qu4o5b6hjFOr2bXjR9P4A4=','2025-12-02 15:30:30',NULL,NULL,NULL,0,'2025-12-02 15:30:30','2025-12-02 15:30:30'),(60,'dlCFajDLRnG091PKBww1-',47,26,23,'qr','active','{\"v\":\"dlCFajDLRnG091PKBww1-\",\"t\":\"ticket\",\"e\":23}','dlCFajDLRnG091PKBww1-','CODE128','9lCRZi3krMDWqx6ZzRlMJlLV6mXRhz3TCEGS0ZEHXJ8=','2025-12-02 15:56:31',NULL,NULL,NULL,0,'2025-12-02 15:56:31','2025-12-02 15:56:31'),(61,'5udBqTklkUlngtsxRpN1J',48,27,23,'qr','active','{\"v\":\"5udBqTklkUlngtsxRpN1J\",\"t\":\"ticket\",\"e\":23}','5udBqTklkUlngtsxRpN1J','CODE128','PIzqVFmnh/rgwNJASCaCYB7V0CHsj3V9/AqfSw52C5U=','2025-12-02 16:54:29',NULL,NULL,NULL,0,'2025-12-02 16:54:29','2025-12-02 16:54:29'),(62,'_ZP3LAXpi-xE66Locg0Dr',49,28,23,'qr','active','{\"v\":\"_ZP3LAXpi-xE66Locg0Dr\",\"t\":\"ticket\",\"e\":23}','_ZP3LAXpi-xE66Locg0Dr','CODE128','28+pBpGkLb67K3Pkb8+dX+jvV4HL6oy+gK/ZBr0M1d0=','2025-12-02 16:54:45',NULL,NULL,NULL,0,'2025-12-02 16:54:45','2025-12-02 16:54:45'),(63,'_-PUW6ROvMfAjE45iC52s',50,29,23,'qr','active','{\"v\":\"_-PUW6ROvMfAjE45iC52s\",\"t\":\"ticket\",\"e\":23}','_-PUW6ROvMfAjE45iC52s','CODE128','KDJnxHKwq9Vnyp8/YmobneFd7WMz3YUZYVu411XDFzE=','2025-12-02 16:55:02',NULL,NULL,NULL,0,'2025-12-02 16:55:02','2025-12-02 16:55:02'),(64,'9FvMpspTjv5JWi5e0XNQo',51,30,23,'qr','active','{\"v\":\"9FvMpspTjv5JWi5e0XNQo\",\"t\":\"ticket\",\"e\":23}','9FvMpspTjv5JWi5e0XNQo','CODE128','iCUafjte8oJC3cpLpuCbexzUlkkqMX8guNcSYvDCDJE=','2025-12-02 17:17:59',NULL,NULL,NULL,0,'2025-12-02 17:17:59','2025-12-02 17:17:59'),(65,'e0Po6usyBj3bQiXqGqTu6',52,30,23,'qr','active','{\"v\":\"e0Po6usyBj3bQiXqGqTu6\",\"t\":\"ticket\",\"e\":23}','e0Po6usyBj3bQiXqGqTu6','CODE128','yVYZNde5gEca39A7EdVXxEbFcbEyIpDPEfEcnkgB5WE=','2025-12-02 17:18:00',NULL,NULL,NULL,0,'2025-12-02 17:18:00','2025-12-02 17:18:00'),(66,'INvXBFp0PtmvIyHC8yM1F',53,31,23,'qr','active','{\"v\":\"INvXBFp0PtmvIyHC8yM1F\",\"t\":\"ticket\",\"e\":23}','INvXBFp0PtmvIyHC8yM1F','CODE128','vlnW+rVC4ezKaAB9NW7oGH+dKZqis6NtbxvMMhLFYTw=','2025-12-02 17:22:34',NULL,NULL,NULL,0,'2025-12-02 17:22:34','2025-12-02 17:22:34'),(67,'q_-2PpKuWgE3u397UDhnp',54,32,23,'qr','active','{\"v\":\"q_-2PpKuWgE3u397UDhnp\",\"t\":\"ticket\",\"e\":23}','q_-2PpKuWgE3u397UDhnp','CODE128','3fecdf5Y1oRRDuiUUZVWafrtnc44MEcaCtynVQowj3k=','2025-12-02 17:27:21',NULL,NULL,NULL,0,'2025-12-02 17:27:21','2025-12-02 17:27:21'),(68,'eHQqoBPC8qIw1w9kLBaDK',55,33,23,'qr','active','{\"v\":\"eHQqoBPC8qIw1w9kLBaDK\",\"t\":\"ticket\",\"e\":23}','eHQqoBPC8qIw1w9kLBaDK','CODE128','09I5ZtCEOzY6Eq5zjZ9rcsmmV1+vfKR1l866Y4ZT3Zo=','2025-12-02 17:29:52',NULL,NULL,NULL,0,'2025-12-02 17:29:52','2025-12-02 17:29:52'),(69,'u1qPbMghHgXf4V5STfUY8',56,34,23,'qr','active','{\"v\":\"u1qPbMghHgXf4V5STfUY8\",\"t\":\"ticket\",\"e\":23}','u1qPbMghHgXf4V5STfUY8','CODE128','H6hlwGYrh0GRljlXo5pwug+NxNBNUu5W7RyKmF8Bug4=','2025-12-02 17:32:05',NULL,NULL,NULL,0,'2025-12-02 17:32:05','2025-12-02 17:32:05'),(70,'IdktW7bcGz5FVEky9-X25',57,35,23,'qr','active','{\"v\":\"IdktW7bcGz5FVEky9-X25\",\"t\":\"ticket\",\"e\":23}','IdktW7bcGz5FVEky9-X25','CODE128','iEeyWZksHP5mJPyJLZ392HpoeMoRgNnjPPKlNez8ytU=','2025-12-02 17:34:45',NULL,NULL,NULL,0,'2025-12-02 17:34:45','2025-12-02 17:34:45'),(71,'eg2SQgditYnpiFq3JzFYd',58,36,23,'qr','active','{\"v\":\"eg2SQgditYnpiFq3JzFYd\",\"t\":\"ticket\",\"e\":23}','eg2SQgditYnpiFq3JzFYd','CODE128','iOILLRUFo9ZxwTzOW60bal2Ve4ukJuy7oH8niQ2uja8=','2025-12-03 13:14:14',NULL,NULL,NULL,0,'2025-12-03 13:14:14','2025-12-03 13:14:14'),(72,'whim7ry8Y-LOzFrbcSMuj',59,36,23,'qr','active','{\"v\":\"whim7ry8Y-LOzFrbcSMuj\",\"t\":\"ticket\",\"e\":23}','whim7ry8Y-LOzFrbcSMuj','CODE128','B1cip+baFTq+NZCFAj0vn3j8KBTczbK+G2ymAWYFSSQ=','2025-12-03 13:14:14',NULL,NULL,NULL,0,'2025-12-03 13:14:14','2025-12-03 13:14:14'),(73,'mi-E5Y4mPVkXEXHEBTSyX',60,37,23,'qr','active','{\"v\":\"mi-E5Y4mPVkXEXHEBTSyX\",\"t\":\"ticket\",\"e\":23}','mi-E5Y4mPVkXEXHEBTSyX','CODE128','RKXoeQWEhfEQ+/rbau5lqQs0Qc/7DeKaudvotYX/Uog=','2025-12-03 13:20:22',NULL,NULL,NULL,0,'2025-12-03 13:20:22','2025-12-03 13:20:22'),(74,'KjfaqO3BQpGAQyATAeecl',61,38,23,'qr','active','{\"v\":\"KjfaqO3BQpGAQyATAeecl\",\"t\":\"ticket\",\"e\":23}','KjfaqO3BQpGAQyATAeecl','CODE128','PZV0S3U8FIsUj3V+hoZVGkoReiLxer7L2wbfg1lKPQg=','2025-12-03 13:24:11',NULL,NULL,NULL,0,'2025-12-03 13:24:11','2025-12-03 13:24:11'),(75,'7_DL5_tyDU3j-6VuNQUco',62,39,23,'qr','active','{\"v\":\"7_DL5_tyDU3j-6VuNQUco\",\"t\":\"ticket\",\"e\":23}','7_DL5_tyDU3j-6VuNQUco','CODE128','SPYnOtAVwEQ1PJqob/A8c5kaHtnMl73jXchkCGAw8b0=','2025-12-03 21:54:18',NULL,NULL,NULL,0,'2025-12-03 21:54:18','2025-12-03 21:54:18');
/*!40000 ALTER TABLE `ticket_verification_codes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ticket_wise_prices`
--

DROP TABLE IF EXISTS `ticket_wise_prices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ticket_wise_prices` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `event_id` bigint unsigned NOT NULL,
  `ticket_category_id` bigint unsigned NOT NULL,
  `per_ticket_price` bigint unsigned NOT NULL,
  `ticket_quantity` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_wise_prices`
--

LOCK TABLES `ticket_wise_prices` WRITE;
/*!40000 ALTER TABLE `ticket_wise_prices` DISABLE KEYS */;
/*!40000 ALTER TABLE `ticket_wise_prices` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tickets`
--

DROP TABLE IF EXISTS `tickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tickets` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `event_id` bigint unsigned NOT NULL,
  `booking_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `tuid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` enum('pending','processing','ready','generation_failed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `ticket_status` enum('active','blocked','barred','revoked','transferred','cancelled') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active',
  `is_blocked` tinyint(1) NOT NULL DEFAULT '0',
  `is_barred` tinyint(1) NOT NULL DEFAULT '0',
  `denial_reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `blocked_at` timestamp NULL DEFAULT NULL,
  `barred_by` bigint unsigned DEFAULT NULL,
  `barred_at` timestamp NULL DEFAULT NULL,
  `security_alerts_count` int NOT NULL DEFAULT '0',
  `last_security_alert_at` timestamp NULL DEFAULT NULL,
  `blocked_by` bigint unsigned DEFAULT NULL,
  `blocked_reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `unblocked_at` timestamp NULL DEFAULT NULL,
  `unblocked_by` bigint unsigned DEFAULT NULL,
  `ticket_type` enum('individual','party','group') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'individual' COMMENT 'Type of ticket: individual, party (child of a party ticket), or group',
  `parent_ticket_id` bigint unsigned DEFAULT NULL COMMENT 'For party tickets, reference to the parent ticket',
  `party_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Name for party/group bookings',
  `party_size` int unsigned DEFAULT NULL COMMENT 'Number of people in party/group booking',
  `used_at` datetime DEFAULT NULL,
  `expires_at` datetime DEFAULT NULL,
  `pdf_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pdf_generated_at` timestamp NULL DEFAULT NULL,
  `template_version` int NOT NULL DEFAULT '1',
  `reissued_at` timestamp NULL DEFAULT NULL,
  `reissued_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reissue_reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `tickets_booking_id_unique` (`booking_id`),
  KEY `tickets_reissued_at_index` (`reissued_at`),
  KEY `tickets_reissued_by_index` (`reissued_by`),
  KEY `tickets_pdf_generated_at_index` (`pdf_generated_at`),
  KEY `idx_status` (`status`),
  KEY `idx_event_status` (`event_id`,`status`),
  KEY `idx_booking_event` (`booking_id`,`event_id`),
  KEY `idx_used_at` (`used_at`),
  KEY `idx_expires_at` (`expires_at`),
  KEY `idx_ticket_type` (`ticket_type`),
  KEY `idx_parent_ticket` (`parent_ticket_id`),
  KEY `tickets_unblocked_by_foreign` (`unblocked_by`),
  KEY `tickets_blocked_at_index` (`blocked_at`),
  KEY `tickets_blocked_by_index` (`blocked_by`),
  KEY `tickets_unblocked_at_index` (`unblocked_at`),
  KEY `tickets_is_blocked_index` (`is_blocked`),
  KEY `tickets_is_barred_index` (`is_barred`),
  KEY `tickets_is_blocked_is_barred_index` (`is_blocked`,`is_barred`),
  KEY `blocked_at_index` (`blocked_at`),
  CONSTRAINT `tickets_blocked_by_foreign` FOREIGN KEY (`blocked_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `tickets_event_id_foreign` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`),
  CONSTRAINT `tickets_parent_ticket_id_foreign` FOREIGN KEY (`parent_ticket_id`) REFERENCES `tickets` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `tickets_unblocked_by_foreign` FOREIGN KEY (`unblocked_by`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tickets`
--

LOCK TABLES `tickets` WRITE;
/*!40000 ALTER TABLE `tickets` DISABLE KEYS */;
INSERT INTO `tickets` VALUES (6,2,'TEST-BOOKING-1764018339-1','AF372F5DEE2D13BE08CA8','','active',0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'individual',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'2025-11-24 21:05:39','2025-11-24 21:05:39'),(7,2,'TEST-BOOKING-1764018339-2','6DA395FA2E4EC8411105A','','active',0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'individual',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'2025-11-24 21:05:39','2025-11-24 21:05:39'),(8,2,'TEST-BOOKING-1764018339-3','A465023125FEEA9E02E7F','','active',0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'individual',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'2025-11-24 21:05:39','2025-11-24 21:05:39');
/*!40000 ALTER TABLE `tickets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tshirt_trackings`
--

DROP TABLE IF EXISTS `tshirt_trackings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tshirt_trackings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `registration_id` bigint unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tshirt_trackings`
--

LOCK TABLES `tshirt_trackings` WRITE;
/*!40000 ALTER TABLE `tshirt_trackings` DISABLE KEYS */;
/*!40000 ALTER TABLE `tshirt_trackings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_consents`
--

DROP TABLE IF EXISTS `user_consents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_consents` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint unsigned DEFAULT NULL,
  `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `consent_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `consent_given` tinyint(1) NOT NULL DEFAULT '0',
  `consent_version` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_agent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `source` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `consented_at` timestamp NULL DEFAULT NULL,
  `withdrawn_at` timestamp NULL DEFAULT NULL,
  `expires_at` timestamp NULL DEFAULT NULL,
  `notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_consents_user_id_consent_type_consent_given_index` (`user_id`,`consent_type`,`consent_given`),
  KEY `user_consents_email_consent_type_consent_given_index` (`email`,`consent_type`,`consent_given`),
  KEY `user_consents_user_id_index` (`user_id`),
  KEY `user_consents_email_index` (`email`),
  KEY `user_consents_consent_type_index` (`consent_type`),
  KEY `user_consents_consent_given_index` (`consent_given`),
  KEY `user_consents_consented_at_index` (`consented_at`),
  KEY `user_consents_withdrawn_at_index` (`withdrawn_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_consents`
--

LOCK TABLES `user_consents` WRITE;
/*!40000 ALTER TABLE `user_consents` DISABLE KEYS */;
/*!40000 ALTER TABLE `user_consents` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_groups`
--

DROP TABLE IF EXISTS `user_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_groups` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_groups`
--

LOCK TABLES `user_groups` WRITE;
/*!40000 ALTER TABLE `user_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `user_groups` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `users` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `first_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `last_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `password_changed_at` timestamp NULL DEFAULT NULL,
  `full_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `welcome_email_tracking_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `welcome_email_sent_at` timestamp NULL DEFAULT NULL,
  `welcome_email_opened_at` timestamp NULL DEFAULT NULL,
  `unsubscribed_from_marketing` tinyint(1) NOT NULL DEFAULT '0',
  `unsubscribed_at` timestamp NULL DEFAULT NULL,
  `username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `gender` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `age_range` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `runner_walker` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `address` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `county` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `eircode` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `corporate` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `tshirt` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_flag` tinyint(1) NOT NULL DEFAULT '0',
  `stripe_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `pin` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Hashed PIN for manager override authentication',
  `remember_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `age` int DEFAULT NULL,
  `entry_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `profile_photo` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `last_activity_distance` decimal(10,2) DEFAULT NULL,
  `last_activity_on` date DEFAULT NULL,
  `total_distance` decimal(10,2) DEFAULT NULL,
  `rank` int DEFAULT NULL,
  `registration_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `registration_ext_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `parent_user_id` bigint unsigned DEFAULT NULL,
  `status` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `suspension_reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `suspended_at` timestamp NULL DEFAULT NULL,
  `suspended_by` bigint unsigned DEFAULT NULL,
  `locked_reason` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Reason for account lock (e.g., failed PIN attempts)',
  `locked_at` timestamp NULL DEFAULT NULL COMMENT 'When account was locked',
  `device_info` json DEFAULT NULL,
  `activity_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_group` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `users_email_unique` (`email`),
  UNIQUE KEY `users_username_unique` (`username`),
  KEY `users_email_index` (`email`),
  KEY `users_username_index` (`username`),
  KEY `users_entry_type_index` (`entry_type`),
  KEY `users_status_index` (`status`),
  KEY `users_email_verified_at_index` (`email_verified_at`),
  KEY `users_is_active_index` (`is_active`),
  KEY `idx_welcome_email_tracking_id` (`welcome_email_tracking_id`),
  KEY `idx_welcome_email_sent_at` (`welcome_email_sent_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `venue_templates`
--

DROP TABLE IF EXISTS `venue_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `venue_templates` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `event_id` bigint unsigned DEFAULT NULL,
  `venue_id` bigint unsigned DEFAULT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Venue Template',
  `version` int NOT NULL DEFAULT '1',
  `status` enum('draft','published','archived') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'draft',
  `save_type` enum('manual','auto') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'manual',
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `author` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `template_data` json NOT NULL,
  `sections_data` json DEFAULT NULL,
  `metadata` json DEFAULT NULL,
  `total_seats` int NOT NULL DEFAULT '0',
  `total_tables` int NOT NULL DEFAULT '0',
  `total_capacity` int NOT NULL DEFAULT '0',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `venue_templates_event_id_is_active_index` (`event_id`,`is_active`),
  KEY `venue_templates_event_id_index` (`event_id`),
  KEY `venue_templates_event_id_version_index` (`event_id`,`version`),
  KEY `venue_templates_event_id_status_index` (`event_id`,`status`),
  KEY `venue_templates_event_id_version_status_index` (`event_id`,`version`,`status`),
  KEY `idx_venue_templates_venue_id` (`venue_id`),
  KEY `idx_venue_templates_venue_active` (`venue_id`,`is_active`),
  KEY `idx_venue_templates_venue_status` (`venue_id`,`status`),
  KEY `idx_venue_templates_venue_version` (`venue_id`,`version`),
  CONSTRAINT `fk_venue_templates_venue_id` FOREIGN KEY (`venue_id`) REFERENCES `venues` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `venue_templates`
--

LOCK TABLES `venue_templates` WRITE;
/*!40000 ALTER TABLE `venue_templates` DISABLE KEYS */;
INSERT INTO `venue_templates` VALUES (1,NULL,1,'Main Floor Layout',184,'published','manual',NULL,NULL,'\"{\\n    \\\"name\\\": \\\"Venue 1 Template\\\",\\n    \\\"nodes\\\": [\\n        {\\n            \\\"id\\\": \\\"71abaa1d-477f-4383-8256-e879110e9fbe\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1376.3478773950628,\\n                \\\"y\\\": 1133.4121414111594\\n            },\\n            \\\"table_id\\\": \\\"101\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:31:14.559Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1376.3478773950628,\\n                    \\\"y\\\": 1133.4121414111594\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:33:40.562Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"c58a3923-b340-4d3f-bf4d-44635f022fe4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"101-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1326.3478773950628,\\n                        \\\"y\\\": 1208.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:31:14.559Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:40.562Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"6fc3b427-2010-481b-bb6c-acc772210477\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"101-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1326.3478773950628,\\n                        \\\"y\\\": 1183.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:31:14.559Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:40.562Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"48d18ec3-d8f7-46b7-b801-b8460f06ed6e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"101-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1326.3478773950628,\\n                        \\\"y\\\": 1158.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:31:14.559Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:40.562Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"3e6db715-9dd5-46b8-9484-bcc1ca342f68\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"101-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1326.3478773950628,\\n                        \\\"y\\\": 1133.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:31:14.559Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:40.562Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"65b16b11-0287-4e73-8741-ab9f2b2aa250\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"101-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1326.3478773950628,\\n                        \\\"y\\\": 1108.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:31:14.559Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:40.562Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"eda1116a-96d1-4d9b-87e7-1ec886efc8c6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"101-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1326.3478773950628,\\n                        \\\"y\\\": 1083.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:31:14.559Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:40.562Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"c10a7d85-da2b-4d93-8e17-81a71c8d842a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"101-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1326.3478773950628,\\n                        \\\"y\\\": 1058.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:31:14.559Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:40.562Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"11c38c16-d993-4ca1-a3e7-3388034fcb36\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"101-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1426.3478773950628,\\n                        \\\"y\\\": 1208.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:31:14.559Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:40.562Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"770e860d-9931-448f-b2ce-65951b8af703\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"101-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1426.3478773950628,\\n                        \\\"y\\\": 1183.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:31:14.559Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:40.562Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"1a6464e4-4357-494b-b43b-f8ee54d47792\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"101-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1426.3478773950628,\\n                        \\\"y\\\": 1158.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:31:14.559Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:40.562Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"1690ee7d-a663-4b03-a9e2-7662f6b66c83\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"101-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1426.3478773950628,\\n                        \\\"y\\\": 1133.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:31:14.559Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:40.562Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"ae6afd5e-c466-4c37-b53c-e41a63123de2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"101-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1426.3478773950628,\\n                        \\\"y\\\": 1108.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:31:14.559Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:40.562Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"ae055e8c-bf63-4f1e-aebe-f7762cef4341\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"101-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1426.3478773950628,\\n                        \\\"y\\\": 1083.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:31:14.559Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:40.562Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"97ea42cc-f5da-45fb-b05d-8ce2985458fe\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"101-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1426.3478773950628,\\n                        \\\"y\\\": 1058.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:31:14.559Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:40.562Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"a37d8cd2-5a61-46a0-9368-2a56f53a1832\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1511.6201179965058,\\n                \\\"y\\\": 1133.4121414111594\\n            },\\n            \\\"table_id\\\": \\\"102\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": 90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:32:51.514Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1511.6201179965058,\\n                    \\\"y\\\": 1133.4121414111594\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:33:37.197Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"25b4b256-681e-42d0-8b8b-21b311c68fa2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"102-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1561.6201179965058,\\n                        \\\"y\\\": 1058.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.514Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.197Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"c549d4d5-d669-40ad-a12c-d49d552bacaf\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"102-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1561.6201179965058,\\n                        \\\"y\\\": 1083.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.514Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.197Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"859e5794-e220-428e-8bc5-2873b5cb2224\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"102-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1561.6201179965058,\\n                        \\\"y\\\": 1108.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.514Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.197Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"756a8de3-65f8-4f28-ac78-b1fd59e9e1a9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"102-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1561.6201179965058,\\n                        \\\"y\\\": 1133.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.514Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.197Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"85b112a4-b7cf-491b-84c3-2eefab563e49\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"102-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1561.6201179965058,\\n                        \\\"y\\\": 1158.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.514Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.197Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"67b04940-9d8b-41c9-9188-fbfcb505bc67\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"102-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1561.6201179965058,\\n                        \\\"y\\\": 1183.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.514Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.197Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"0f4fb057-cc24-4353-b2e4-2a3093482ce3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"102-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1561.6201179965058,\\n                        \\\"y\\\": 1208.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.514Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.197Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"96f8542b-ba52-4ed8-b0a2-3c92201dd7ff\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"102-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1461.6201179965058,\\n                        \\\"y\\\": 1058.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.514Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.197Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"97c7d498-7aa5-42fe-83b4-f4157881abc7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"102-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1461.6201179965058,\\n                        \\\"y\\\": 1083.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.514Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.197Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"2599b7e0-408e-4f26-968e-aeb8e1590bdf\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"102-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1461.6201179965058,\\n                        \\\"y\\\": 1108.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.514Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.197Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"bcefe0ce-fdca-411e-8bd0-cd869ace02e2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"102-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1461.6201179965058,\\n                        \\\"y\\\": 1133.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.514Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.197Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"0b912ddd-f192-42cd-baee-c43bd7bb48cd\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"102-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1461.6201179965058,\\n                        \\\"y\\\": 1158.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.514Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.197Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"52aed440-f86d-45af-b8bb-907484c11d2a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"102-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1461.6201179965058,\\n                        \\\"y\\\": 1183.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.514Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.197Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"88218a0a-3abe-40f9-8c0a-1210be6db25e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"102-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1461.6201179965058,\\n                        \\\"y\\\": 1208.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.514Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.197Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"13270b8e-3284-411d-bcb2-7aa0632fe252\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1646.8923585979487,\\n                \\\"y\\\": 1133.4121414111594\\n            },\\n            \\\"table_id\\\": \\\"103\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": 90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:32:51.975Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1646.8923585979487,\\n                    \\\"y\\\": 1133.4121414111594\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:33:37.195Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"e57e8e8a-2eed-4640-bf60-cb339890902e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"103-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1696.8923585979487,\\n                        \\\"y\\\": 1058.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.975Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.195Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"293f15a9-a090-4c31-a742-c044794f30f3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"103-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1696.8923585979487,\\n                        \\\"y\\\": 1083.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.975Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.195Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"8910b008-a7c2-421c-85f0-0f6db959a0a4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"103-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1696.8923585979487,\\n                        \\\"y\\\": 1108.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.975Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.195Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"55b8207e-2056-4e43-a043-00af9d6ada50\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"103-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1696.8923585979487,\\n                        \\\"y\\\": 1133.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.975Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.195Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"93ecfaa7-ef80-4eca-9064-0ec4196fa8be\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"103-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1696.8923585979487,\\n                        \\\"y\\\": 1158.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.975Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.195Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"d300c58d-0f6d-4bf3-b3c9-2fbb389ac585\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"103-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1696.8923585979487,\\n                        \\\"y\\\": 1183.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.975Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.195Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"d070b211-65f3-4b2b-a558-669fe03af08f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"103-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1696.8923585979487,\\n                        \\\"y\\\": 1208.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.975Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.195Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"d62d8f09-839c-4d96-9cb6-f1bbc53f981a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"103-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1596.8923585979487,\\n                        \\\"y\\\": 1058.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.975Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.195Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"4596dc13-83e4-4a19-bac9-034b75fedb32\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"103-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1596.8923585979487,\\n                        \\\"y\\\": 1083.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.975Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.195Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"957359d9-0892-47ee-a24e-340bf6395740\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"103-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1596.8923585979487,\\n                        \\\"y\\\": 1108.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.975Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.195Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"39a417fa-795f-4dbe-a214-6d5f912d3b84\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"103-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1596.8923585979487,\\n                        \\\"y\\\": 1133.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.975Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.195Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"d060ef99-04d3-436a-a787-3112329dd35c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"103-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1596.8923585979487,\\n                        \\\"y\\\": 1158.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.975Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.195Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"7fcea493-f130-4ef8-8c6b-011f5db49023\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"103-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1596.8923585979487,\\n                        \\\"y\\\": 1183.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.975Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.195Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"4e35402a-730f-478f-be65-393959dcd440\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"103-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1596.8923585979487,\\n                        \\\"y\\\": 1208.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:51.975Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.195Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"28211a2d-5051-4d36-a498-4eecf7bf2619\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1782.1645991993917,\\n                \\\"y\\\": 1133.4121414111594\\n            },\\n            \\\"table_id\\\": \\\"104\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": 90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:32:52.591Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1782.1645991993917,\\n                    \\\"y\\\": 1133.4121414111594\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:33:37.193Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"d4614a1a-d42c-44e1-b064-3b547f04d4fb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"104-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1832.1645991993917,\\n                        \\\"y\\\": 1058.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:52.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.193Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"36c38ee4-9c50-4544-808a-55d632536236\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"104-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1832.1645991993917,\\n                        \\\"y\\\": 1083.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:52.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.193Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"e1f9418d-2883-40e8-933e-71ecd179c071\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"104-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1832.1645991993917,\\n                        \\\"y\\\": 1108.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:52.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.193Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"5fd0bae5-628f-4972-86ab-82b2736435ea\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"104-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1832.1645991993917,\\n                        \\\"y\\\": 1133.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:52.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.193Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"e3d0cd15-7dce-4d02-9be9-05286d72fec6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"104-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1832.1645991993917,\\n                        \\\"y\\\": 1158.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:52.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.193Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"747fbb67-19ad-4033-a569-d7e5d46db0e7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"104-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1832.1645991993917,\\n                        \\\"y\\\": 1183.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:52.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.193Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"de41c9b7-eb82-4cef-be55-5c0a7998eed1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"104-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1832.1645991993917,\\n                        \\\"y\\\": 1208.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:52.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.193Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"2fbe49c6-1479-41ae-b582-36eb84d24149\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"104-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1732.1645991993917,\\n                        \\\"y\\\": 1058.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:52.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.193Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"4422abcd-f4ea-461e-b2c8-ac04f005f47f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"104-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1732.1645991993917,\\n                        \\\"y\\\": 1083.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:52.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.193Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"0369cfaa-d65a-4059-b7e0-05e34efed8d7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"104-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1732.1645991993917,\\n                        \\\"y\\\": 1108.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:52.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.193Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"2a58cb28-f3d1-474e-bb43-743774021d4c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"104-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1732.1645991993917,\\n                        \\\"y\\\": 1133.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:52.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.193Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"ac7e7d48-c151-4049-b395-a8268fbf9b6e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"104-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1732.1645991993917,\\n                        \\\"y\\\": 1158.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:52.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.193Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"6169b779-df60-42ee-9925-2dbd44cbe0fc\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"104-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1732.1645991993917,\\n                        \\\"y\\\": 1183.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:52.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.193Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"e674d2c2-5c55-41c2-b177-12c523a234c4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"104-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1732.1645991993917,\\n                        \\\"y\\\": 1208.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:52.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.193Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"3c0113b9-476f-4c43-8db3-8bca500addb8\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1917.4368398008344,\\n                \\\"y\\\": 1133.4121414111594\\n            },\\n            \\\"table_id\\\": \\\"105\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": 90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:32:53.142Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1917.4368398008344,\\n                    \\\"y\\\": 1133.4121414111594\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:33:37.191Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"a08a1152-2850-421f-b784-7b464a9643f7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"105-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1967.4368398008344,\\n                        \\\"y\\\": 1058.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.142Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.191Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"c3035c85-6e0e-41c1-836f-80509f0c69d6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"105-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1967.4368398008344,\\n                        \\\"y\\\": 1083.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.142Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.191Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"0d7109d9-83b6-4394-9233-d39d57f115f1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"105-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1967.4368398008344,\\n                        \\\"y\\\": 1108.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.142Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.191Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"d4744b71-774a-4e0d-8267-574da981fce6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"105-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1967.4368398008344,\\n                        \\\"y\\\": 1133.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.142Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.191Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"8b262e17-90d5-4ce2-a0bc-5fe8959b9881\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"105-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1967.4368398008344,\\n                        \\\"y\\\": 1158.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.142Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.191Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"f1ed4c44-3f93-43b7-bfab-d93562373adc\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"105-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1967.4368398008344,\\n                        \\\"y\\\": 1183.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.142Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.191Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"64135dc4-a12b-4bfa-8c66-fbc2ee09b216\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"105-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1967.4368398008344,\\n                        \\\"y\\\": 1208.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.142Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.191Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"4984c704-ab27-42ab-855d-2a312fdab14d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"105-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1867.4368398008344,\\n                        \\\"y\\\": 1058.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.142Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.191Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"dd2b021d-7e35-4803-a896-2b353329c8f6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"105-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1867.4368398008344,\\n                        \\\"y\\\": 1083.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.142Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.191Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"3025af5b-7212-46b6-b8b6-0e429deb13d1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"105-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1867.4368398008344,\\n                        \\\"y\\\": 1108.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.142Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.191Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"ace2c87c-7d46-4576-9a5b-770636b76b86\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"105-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1867.4368398008344,\\n                        \\\"y\\\": 1133.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.142Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.191Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"e5ac551b-e59e-454e-abbe-8f0b88ac650b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"105-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1867.4368398008344,\\n                        \\\"y\\\": 1158.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.142Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.191Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"07eb9ca5-379b-49df-a7ce-091ff9728b78\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"105-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1867.4368398008344,\\n                        \\\"y\\\": 1183.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.142Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.191Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"d80c134d-0026-41af-a032-c646110b5d88\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"105-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1867.4368398008344,\\n                        \\\"y\\\": 1208.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.142Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.191Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"dfa71bfc-064b-4e02-83c8-363b97dd50f7\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2052.7090804022773,\\n                \\\"y\\\": 1133.4121414111594\\n            },\\n            \\\"table_id\\\": \\\"106\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": 90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:32:53.792Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2052.7090804022773,\\n                    \\\"y\\\": 1133.4121414111594\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:33:37.201Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"488b0ef5-c951-4bb8-9195-8860d8bb439a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"106-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2102.7090804022773,\\n                        \\\"y\\\": 1058.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.792Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.201Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"e8871962-2ae0-4ec7-bd7b-c3a4262e7b31\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"106-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2102.7090804022773,\\n                        \\\"y\\\": 1083.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.792Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.201Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"3d147316-4386-4f21-9b60-7cbd6fa950e6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"106-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2102.7090804022773,\\n                        \\\"y\\\": 1108.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.792Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.201Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"68359aad-75c9-4dbf-b2ef-33583b710b45\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"106-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2102.7090804022773,\\n                        \\\"y\\\": 1133.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.792Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.201Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"4d5ee896-41df-49e9-b28f-f5c91b8b017d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"106-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2102.7090804022773,\\n                        \\\"y\\\": 1158.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.792Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.201Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"60e1eaae-6458-4bcc-acb9-5abd0b0d28e0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"106-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2102.7090804022773,\\n                        \\\"y\\\": 1183.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.792Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.201Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"0210a0ff-7ab1-4994-ba09-1c3ce0c1c424\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"106-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2102.7090804022773,\\n                        \\\"y\\\": 1208.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.792Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.201Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"02400cac-db83-42b5-a21f-66e43e39e9aa\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"106-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2002.709080402277,\\n                        \\\"y\\\": 1058.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.792Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.201Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"5a870030-596f-40d5-a988-ef82d3cd449f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"106-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2002.709080402277,\\n                        \\\"y\\\": 1083.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.792Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.201Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"3eb4a30b-6c43-48f4-bbf7-3e709608b79e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"106-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2002.709080402277,\\n                        \\\"y\\\": 1108.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.792Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.201Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"04e0832c-2e42-4303-858a-36afad31f716\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"106-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2002.709080402277,\\n                        \\\"y\\\": 1133.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.792Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.201Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"a0e58873-1c19-4de0-8c06-296c13a66746\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"106-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2002.709080402277,\\n                        \\\"y\\\": 1158.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.792Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.201Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"4ce6a336-fc49-47b0-938c-ef79e2e7d0f9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"106-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2002.709080402277,\\n                        \\\"y\\\": 1183.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.792Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.201Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"77636282-f437-4da0-a55e-50e786c68c43\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"106-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2002.709080402277,\\n                        \\\"y\\\": 1208.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:53.792Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.201Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"f084fc29-bf1c-4414-9a76-9c3543f7dc66\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2187.9813210037205,\\n                \\\"y\\\": 1133.4121414111594\\n            },\\n            \\\"table_id\\\": \\\"107\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": 90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:32:54.275Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2187.9813210037205,\\n                    \\\"y\\\": 1133.4121414111594\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:33:37.203Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"6c692816-c4bd-4cfc-b528-30d39bbfa52d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"107-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2237.9813210037205,\\n                        \\\"y\\\": 1058.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:54.275Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.203Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"9e3c9d7f-90ab-4d71-a87c-fa50560eb39d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"107-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2237.9813210037205,\\n                        \\\"y\\\": 1083.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:54.275Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.203Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"d435ba12-d8fe-4362-96fc-20984b241f20\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"107-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2237.9813210037205,\\n                        \\\"y\\\": 1108.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:54.275Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.203Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"dc7d5e87-71a1-4969-b95a-728efe6762e4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"107-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2237.9813210037205,\\n                        \\\"y\\\": 1133.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:54.275Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.203Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"7496deaf-61e7-4ee6-8dc9-2ca78481f36a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"107-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2237.9813210037205,\\n                        \\\"y\\\": 1158.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:54.275Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.203Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"c77482e1-aef4-4fc2-ad02-350fa3c3c0aa\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"107-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2237.9813210037205,\\n                        \\\"y\\\": 1183.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:54.275Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.203Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"4e3f0e99-0aa4-4eca-a039-55390b4dffd4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"107-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2237.9813210037205,\\n                        \\\"y\\\": 1208.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:54.275Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.203Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"836243a7-a250-4d68-8aaf-a4ae4c7a92e7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"107-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2137.9813210037205,\\n                        \\\"y\\\": 1058.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:54.275Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.203Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"44d5ef8d-1585-49c6-8b31-a65a17db3d22\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"107-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2137.9813210037205,\\n                        \\\"y\\\": 1083.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:54.275Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.203Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"163c5490-de64-428b-96e4-9ec704ea3005\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"107-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2137.9813210037205,\\n                        \\\"y\\\": 1108.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:54.275Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.203Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"1ba9eb1d-c735-41da-b8ad-4c23498d846b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"107-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2137.9813210037205,\\n                        \\\"y\\\": 1133.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:54.275Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.203Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"8249f879-7078-4fcb-8625-6d4ef9a19072\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"107-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2137.9813210037205,\\n                        \\\"y\\\": 1158.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:54.275Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.203Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"6e535e08-8c26-48e0-8e99-3dfb6ae55e5c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"107-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2137.9813210037205,\\n                        \\\"y\\\": 1183.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:54.275Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.203Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"2f775946-82bd-4b15-ae14-698a4a7dde78\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"107-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2137.9813210037205,\\n                        \\\"y\\\": 1208.4121414111594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:54.275Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.203Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"156c4db4-28ba-455c-9f55-1a417fafafef\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1376.3478773950628,\\n                \\\"y\\\": 1421.1920818412568\\n            },\\n            \\\"table_id\\\": \\\"108\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": 90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:32:55.310Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1376.3478773950628,\\n                    \\\"y\\\": 1421.1920818412568\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:33:37.205Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"a1f637ac-4e7a-4cf2-8a8c-7788391dacc0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"108-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1426.3478773950628,\\n                        \\\"y\\\": 1346.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.310Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.205Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"978229c3-3e64-4726-8b6b-519d14e3244d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"108-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1426.3478773950628,\\n                        \\\"y\\\": 1371.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.310Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.205Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"c1cb332e-582c-4ac2-bd24-1faf4c440fe1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"108-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1426.3478773950628,\\n                        \\\"y\\\": 1396.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.310Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.205Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"5f25c9c7-a59f-42e3-b4c7-d70158d72bce\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"108-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1426.3478773950628,\\n                        \\\"y\\\": 1421.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.310Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.205Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"cd984aff-84f8-497b-82a6-54139b4840f9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"108-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1426.3478773950628,\\n                        \\\"y\\\": 1446.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.310Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.205Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"9515b3cb-35f2-424c-b08b-6a805fa28846\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"108-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1426.3478773950628,\\n                        \\\"y\\\": 1471.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.310Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.205Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"e3272d23-7e96-4b2f-b5cf-1016eabaf036\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"108-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1426.3478773950628,\\n                        \\\"y\\\": 1496.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.310Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.205Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"009fa5fc-0ca5-4933-a9fb-623295ef2ef8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"108-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1326.3478773950628,\\n                        \\\"y\\\": 1346.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.310Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.205Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"8501073b-0eee-436f-890a-db4c95880ca3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"108-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1326.3478773950628,\\n                        \\\"y\\\": 1371.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.310Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.205Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"fb323cc6-c774-4f70-b1f3-cf228cc6482b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"108-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1326.3478773950628,\\n                        \\\"y\\\": 1396.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.310Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.205Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"2cb09787-9c57-4518-8d9c-56c8ad3a96e1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"108-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1326.3478773950628,\\n                        \\\"y\\\": 1421.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.310Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.205Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"c76a9eee-8943-4918-9150-0351b0e39c34\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"108-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1326.3478773950628,\\n                        \\\"y\\\": 1446.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.310Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.205Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"b2742507-0411-41bc-a97a-85bed2595b63\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"108-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1326.3478773950628,\\n                        \\\"y\\\": 1471.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.310Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.205Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"ce78ac8d-f36f-4ef2-b130-1d20122889bd\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"108-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1326.3478773950628,\\n                        \\\"y\\\": 1496.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.310Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.205Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"a67b7894-f1cb-44b7-9955-0f81f50bc3f4\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1511.6201179965058,\\n                \\\"y\\\": 1421.1920818412568\\n            },\\n            \\\"table_id\\\": \\\"109\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": 90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:32:55.993Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1511.6201179965058,\\n                    \\\"y\\\": 1421.1920818412568\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:33:37.209Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"3e740b44-f9db-43e6-aafd-a184735b5441\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"109-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1561.6201179965058,\\n                        \\\"y\\\": 1346.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.993Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.209Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"66db7737-7cbc-4808-b3f9-1f4e42424833\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"109-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1561.6201179965058,\\n                        \\\"y\\\": 1371.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.993Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.209Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"ea1dd7dd-6c59-4981-9cb4-b22cb7c56541\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"109-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1561.6201179965058,\\n                        \\\"y\\\": 1396.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.993Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.209Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"8a817f8e-09aa-447d-8203-10ca50b8e36e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"109-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1561.6201179965058,\\n                        \\\"y\\\": 1421.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.993Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.209Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"1eb0ba6b-0304-46ea-bc71-9ed91ca5e6d9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"109-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1561.6201179965058,\\n                        \\\"y\\\": 1446.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.993Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.209Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"9887cbe2-fc1f-4353-82d9-b611d0008aa8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"109-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1561.6201179965058,\\n                        \\\"y\\\": 1471.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.993Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.209Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"66daee92-4235-4422-8b73-ada4bb84e676\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"109-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1561.6201179965058,\\n                        \\\"y\\\": 1496.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.993Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.209Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"469b28ed-4dd6-4c41-8c21-6cd3cc259593\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"109-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1461.6201179965058,\\n                        \\\"y\\\": 1346.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.993Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.209Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"386f149a-cb08-4957-a723-154e6d944f64\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"109-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1461.6201179965058,\\n                        \\\"y\\\": 1371.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.993Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.209Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"4328d7f5-7b38-446c-b778-cacd8657c56e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"109-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1461.6201179965058,\\n                        \\\"y\\\": 1396.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.993Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.209Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"0ff728e7-398e-42f8-b34f-2b5eaf6020a0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"109-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1461.6201179965058,\\n                        \\\"y\\\": 1421.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.993Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.209Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"99ebf1d7-9f21-4cfa-a5fd-c7e346e79b88\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"109-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1461.6201179965058,\\n                        \\\"y\\\": 1446.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.993Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.209Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"c5fc169b-d249-4c0d-982a-97c9d6e4f358\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"109-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1461.6201179965058,\\n                        \\\"y\\\": 1471.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.993Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.209Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"6b06c51d-205a-41cd-975a-337904ef82c9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"109-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1461.6201179965058,\\n                        \\\"y\\\": 1496.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:55.993Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.209Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"3ee97052-01ad-436c-9e0b-5e3521dd366c\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1646.8923585979487,\\n                \\\"y\\\": 1421.1920818412568\\n            },\\n            \\\"table_id\\\": \\\"110\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": 90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:32:56.557Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1646.8923585979487,\\n                    \\\"y\\\": 1421.1920818412568\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:33:37.207Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"84d88fb8-78ff-41cc-a29a-2bc2e2f50115\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"110-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1696.8923585979487,\\n                        \\\"y\\\": 1346.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:56.557Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.207Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"fba2f2dc-f1d9-4a7f-b387-0a7430c8d631\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"110-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1696.8923585979487,\\n                        \\\"y\\\": 1371.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:56.557Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.207Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"3b79cd67-3521-4e87-88c4-c61021ff58d2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"110-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1696.8923585979487,\\n                        \\\"y\\\": 1396.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:56.557Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.207Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"87a9c770-01aa-44ea-8460-af9d6e1f8315\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"110-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1696.8923585979487,\\n                        \\\"y\\\": 1421.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:56.557Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.207Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"eb5a1ca9-0523-4df7-ad65-f7571be9c4c8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"110-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1696.8923585979487,\\n                        \\\"y\\\": 1446.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:56.557Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.207Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"c9f95c27-f609-44cb-8c81-8c46a73f3a69\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"110-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1696.8923585979487,\\n                        \\\"y\\\": 1471.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:56.557Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.207Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"36c36ddf-36db-430e-af97-6c036dcc142f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"110-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1696.8923585979487,\\n                        \\\"y\\\": 1496.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:56.557Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.207Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"97787a62-64aa-4072-8355-f3056eaacc12\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"110-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1596.8923585979487,\\n                        \\\"y\\\": 1346.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:56.557Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.207Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"4d332d21-2319-4a76-94ac-2384547e6933\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"110-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1596.8923585979487,\\n                        \\\"y\\\": 1371.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:56.557Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.207Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"df008323-5df7-4ec8-8c55-86b52e1bab44\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"110-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1596.8923585979487,\\n                        \\\"y\\\": 1396.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:56.557Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.207Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"e581a47c-8e14-47b2-931b-dfbf7e1715d2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"110-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1596.8923585979487,\\n                        \\\"y\\\": 1421.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:56.557Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.207Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"d5d27865-7df4-4c92-b9b9-a9b5ba64e071\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"110-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1596.8923585979487,\\n                        \\\"y\\\": 1446.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:56.557Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.207Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"caadbe10-5c0a-4309-beb7-bcb198043222\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"110-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1596.8923585979487,\\n                        \\\"y\\\": 1471.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:56.557Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.207Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"3cea4086-43ac-44b2-9dc6-2c1479a7d7c8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"110-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1596.8923585979487,\\n                        \\\"y\\\": 1496.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:56.557Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.207Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"9ccb1721-ecd7-4695-9de1-be23ac689b07\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1782.1645991993917,\\n                \\\"y\\\": 1421.1920818412568\\n            },\\n            \\\"table_id\\\": \\\"111\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": 90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:32:57.158Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1782.1645991993917,\\n                    \\\"y\\\": 1421.1920818412568\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:33:37.211Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"be28ad60-c1f4-4e91-bce5-d032958bf3a8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"111-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1832.1645991993917,\\n                        \\\"y\\\": 1346.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:57.158Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.211Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"1c2af8cc-fb1f-4d6b-a3be-3cff164fedc6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"111-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1832.1645991993917,\\n                        \\\"y\\\": 1371.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:57.158Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.211Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"eb2a3ddb-b0ac-41bc-bc16-2ad33f987869\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"111-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1832.1645991993917,\\n                        \\\"y\\\": 1396.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:57.158Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.211Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"f1077567-08ab-4ccb-a951-25683352d46b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"111-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1832.1645991993917,\\n                        \\\"y\\\": 1421.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:57.158Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.211Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"dd41778f-9d1c-4a21-832a-64be430b1946\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"111-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1832.1645991993917,\\n                        \\\"y\\\": 1446.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:57.158Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.211Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"a4e91ff7-54ab-4ae8-88c5-f54c4606ebf0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"111-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1832.1645991993917,\\n                        \\\"y\\\": 1471.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:57.158Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.211Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"715bb31c-e215-45ed-b535-92ec39c7f58a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"111-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1832.1645991993917,\\n                        \\\"y\\\": 1496.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:57.158Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.211Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"2d51c25f-5314-43ed-b943-5d757d830c05\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"111-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1732.1645991993917,\\n                        \\\"y\\\": 1346.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:57.158Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.211Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"f5e0000a-ec0f-48de-8e34-c4ef2f38891b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"111-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1732.1645991993917,\\n                        \\\"y\\\": 1371.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:57.158Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.211Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"5b34171f-aba8-4158-b3b2-82b88f201d73\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"111-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1732.1645991993917,\\n                        \\\"y\\\": 1396.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:57.158Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.211Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"096836ce-b7a1-46bb-a2f9-2f66b36e45b9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"111-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1732.1645991993917,\\n                        \\\"y\\\": 1421.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:57.158Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.211Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"152796cc-8d45-4643-bd79-3d5c82003305\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"111-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1732.1645991993917,\\n                        \\\"y\\\": 1446.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:57.158Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.211Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"89d2796c-414f-401b-9e68-e79ec87dbe8c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"111-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1732.1645991993917,\\n                        \\\"y\\\": 1471.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:57.158Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.211Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"8391a4c8-78ef-4c57-b4c9-c9577202c7ad\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"111-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1732.1645991993917,\\n                        \\\"y\\\": 1496.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:57.158Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.211Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"2ffd6624-0a5d-43ad-9b10-9780bdeaf546\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1917.4368398008344,\\n                \\\"y\\\": 1421.1920818412568\\n            },\\n            \\\"table_id\\\": \\\"112\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": 90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:32:58.111Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1917.4368398008344,\\n                    \\\"y\\\": 1421.1920818412568\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:33:37.213Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"3f7b81e0-1920-4a72-9d9b-db98048a7e5b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"112-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1967.4368398008344,\\n                        \\\"y\\\": 1346.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.111Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.213Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"d4b5c451-0f0a-4de9-9071-c88ab164e0fd\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"112-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1967.4368398008344,\\n                        \\\"y\\\": 1371.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.111Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.213Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"b9ce91da-aa65-4b9a-a8d1-aa11a962c8f6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"112-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1967.4368398008344,\\n                        \\\"y\\\": 1396.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.111Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.213Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"ae28c002-87db-4a1c-b5ae-12b131759428\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"112-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1967.4368398008344,\\n                        \\\"y\\\": 1421.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.111Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.213Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"6937bc1f-31fc-4dc9-9bce-03950d5320c9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"112-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1967.4368398008344,\\n                        \\\"y\\\": 1446.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.111Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.213Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"5ba48cf0-e12d-4d2a-86c1-3a8c37edecee\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"112-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1967.4368398008344,\\n                        \\\"y\\\": 1471.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.111Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.213Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"bb6d7f78-7408-46d0-b1c6-22d9c229284a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"112-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1967.4368398008344,\\n                        \\\"y\\\": 1496.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.111Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.213Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"755f95fa-24e9-49c4-934b-bbce505a07e7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"112-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1867.4368398008344,\\n                        \\\"y\\\": 1346.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.111Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.213Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"74c54a50-36fd-42c8-89d7-af7d3cf5a4ba\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"112-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1867.4368398008344,\\n                        \\\"y\\\": 1371.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.111Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.213Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"f3a1888c-f305-4c7f-a212-690ce3120b2d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"112-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1867.4368398008344,\\n                        \\\"y\\\": 1396.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.111Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.213Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"63faa049-e946-4ac8-b17d-abf161409137\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"112-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1867.4368398008344,\\n                        \\\"y\\\": 1421.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.111Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.213Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"89cffb86-9474-4151-a9c0-c01185f63f70\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"112-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1867.4368398008344,\\n                        \\\"y\\\": 1446.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.111Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.213Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"59dea3f7-e546-4644-8204-0e862a99b44f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"112-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1867.4368398008344,\\n                        \\\"y\\\": 1471.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.111Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.213Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"1a824cf3-b848-4f66-9960-69df50ed66ef\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"112-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1867.4368398008344,\\n                        \\\"y\\\": 1496.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.111Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.213Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"33b92e5d-74c9-4c9b-8aee-d51ec65eefaf\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2052.7090804022773,\\n                \\\"y\\\": 1421.1920818412568\\n            },\\n            \\\"table_id\\\": \\\"113\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": 90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:32:58.542Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2052.7090804022773,\\n                    \\\"y\\\": 1421.1920818412568\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:33:37.215Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"4b241366-40f2-4781-900c-8efc91748ed7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"113-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2102.7090804022773,\\n                        \\\"y\\\": 1346.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.542Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.215Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"ff45c626-62d0-4e9c-87c9-1fa02178e09c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"113-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2102.7090804022773,\\n                        \\\"y\\\": 1371.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.542Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.215Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"d86a5bc5-bdb0-4bb1-86d6-5f712e889677\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"113-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2102.7090804022773,\\n                        \\\"y\\\": 1396.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.542Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.215Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"c694f729-1647-4740-bd25-5d12c1422b6d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"113-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2102.7090804022773,\\n                        \\\"y\\\": 1421.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.542Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.215Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"5c43e63b-d5ca-4883-b961-690261af7ef7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"113-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2102.7090804022773,\\n                        \\\"y\\\": 1446.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.542Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.215Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"d138599e-3428-433e-8317-b2a22655eb7e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"113-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2102.7090804022773,\\n                        \\\"y\\\": 1471.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.542Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.215Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"526be7a3-9115-46f8-bed6-89aab47b87e1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"113-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2102.7090804022773,\\n                        \\\"y\\\": 1496.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.542Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.215Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"0027edfe-2c76-4c2a-a41c-88d05f2b00b8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"113-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2002.709080402277,\\n                        \\\"y\\\": 1346.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.542Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.215Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"e71d33f6-0759-4434-8183-379a6f91e4f8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"113-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2002.709080402277,\\n                        \\\"y\\\": 1371.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.542Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.215Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"4df2c69a-606b-4351-9621-bf9db0b69d94\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"113-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2002.709080402277,\\n                        \\\"y\\\": 1396.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.542Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.215Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"3340d521-8194-4b46-afda-89bfbf93337e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"113-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2002.709080402277,\\n                        \\\"y\\\": 1421.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.542Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.215Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"cea750b2-06f0-4c7e-8943-9b5c99a9e2fb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"113-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2002.709080402277,\\n                        \\\"y\\\": 1446.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.542Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.215Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"35f70704-0339-455a-9768-0a180e52ade7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"113-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2002.709080402277,\\n                        \\\"y\\\": 1471.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.542Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.215Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"b4e5708c-3f24-438d-ba86-d26e683ac126\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"113-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2002.709080402277,\\n                        \\\"y\\\": 1496.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:58.542Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.215Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"f32997dc-c17c-4b0c-b4d0-8b6ac9f54549\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2187.9813210037205,\\n                \\\"y\\\": 1421.1920818412568\\n            },\\n            \\\"table_id\\\": \\\"114\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": 90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:32:59.251Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2187.9813210037205,\\n                    \\\"y\\\": 1421.1920818412568\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:33:37.217Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"ec2d8788-5f34-43b5-bd6f-f7675bdb0408\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"114-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2237.9813210037205,\\n                        \\\"y\\\": 1346.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:59.251Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.217Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"f2458b9c-6ecd-4c3e-90f9-6c03a86eac7f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"114-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2237.9813210037205,\\n                        \\\"y\\\": 1371.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:59.251Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.217Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"ecb68fa1-f3ec-4966-97e4-e984a465b17c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"114-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2237.9813210037205,\\n                        \\\"y\\\": 1396.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:59.251Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.217Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"77215a15-9b96-4715-b05f-7cfd83008b3d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"114-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2237.9813210037205,\\n                        \\\"y\\\": 1421.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:59.251Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.217Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"789fafc7-6b2b-468f-a39b-ae131e8ebb98\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"114-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2237.9813210037205,\\n                        \\\"y\\\": 1446.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:59.251Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.217Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"3983eab1-e963-46e7-947f-a7331b7f6d2d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"114-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2237.9813210037205,\\n                        \\\"y\\\": 1471.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:59.251Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.217Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"02122b19-67cd-44d7-8637-af9b975e74b3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"114-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2237.9813210037205,\\n                        \\\"y\\\": 1496.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:59.251Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.217Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"5e2adcc7-e121-43e4-816a-93990db909c5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"114-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2137.9813210037205,\\n                        \\\"y\\\": 1346.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:59.251Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.217Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"148af9b7-39ff-4d3d-a5af-882d3ac33f02\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"114-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2137.9813210037205,\\n                        \\\"y\\\": 1371.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:59.251Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.217Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"e00ed2b9-0676-4c9a-8e0f-ef411e4f613f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"114-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2137.9813210037205,\\n                        \\\"y\\\": 1396.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:59.251Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.217Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"642678fb-a0b9-4827-8c1c-19b8fba7462a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"114-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2137.9813210037205,\\n                        \\\"y\\\": 1421.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:59.251Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.217Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"5a51dd19-fd5e-4dfb-a0e2-c8f808f12ad4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"114-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2137.9813210037205,\\n                        \\\"y\\\": 1446.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:59.251Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.217Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"0a241e6f-53e7-4e75-b16f-ae2b22bf6e7e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"114-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2137.9813210037205,\\n                        \\\"y\\\": 1471.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:59.251Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.217Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"c811a853-8211-4c45-8f9a-6b2f4fcf1c37\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"114-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2137.9813210037205,\\n                        \\\"y\\\": 1496.1920818412568\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:32:59.251Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.217Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"aebf53ed-368d-4b10-8d90-cf50670faa87\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1376.3478773950628,\\n                \\\"y\\\": 1708.9720222713545\\n            },\\n            \\\"table_id\\\": \\\"115\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": 90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:33:00.133Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1376.3478773950628,\\n                    \\\"y\\\": 1708.9720222713545\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:33:37.219Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"5c44ea2b-7715-4c00-b72e-41532e13cba7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"115-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1426.3478773950628,\\n                        \\\"y\\\": 1633.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.133Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.219Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"bf67f9a5-e9d5-41d2-a6a3-afb63d0890a1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"115-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1426.3478773950628,\\n                        \\\"y\\\": 1658.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.133Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.219Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"50c04d4a-d95a-4e43-8a2a-16cf09b6db95\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"115-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1426.3478773950628,\\n                        \\\"y\\\": 1683.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.133Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.219Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"8fa432b0-76a8-4317-bae9-286f8e1acd01\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"115-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1426.3478773950628,\\n                        \\\"y\\\": 1708.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.133Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.219Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"50d62f6f-13d3-45b9-b8f5-e89aad459d1e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"115-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1426.3478773950628,\\n                        \\\"y\\\": 1733.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.133Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.219Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"f2adde95-215d-4e84-bc94-8438d27f01e2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"115-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1426.3478773950628,\\n                        \\\"y\\\": 1758.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.133Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.219Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"5e56505a-92ac-4074-b365-69689708c967\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"115-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1426.3478773950628,\\n                        \\\"y\\\": 1783.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.133Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.219Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"5094e349-8a75-4675-92e4-3a2183050333\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"115-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1326.3478773950628,\\n                        \\\"y\\\": 1633.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.133Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.219Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"ee96b5db-698c-48a4-b765-aa8ca06ae2ba\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"115-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1326.3478773950628,\\n                        \\\"y\\\": 1658.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.133Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.219Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"2fd9948f-248e-46c3-a129-e4b378864cff\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"115-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1326.3478773950628,\\n                        \\\"y\\\": 1683.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.133Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.219Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"36e7b046-1735-49eb-a439-ac38f7a15261\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"115-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1326.3478773950628,\\n                        \\\"y\\\": 1708.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.133Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.219Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"883aebfb-34e5-4a2f-addc-7eea2397a53c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"115-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1326.3478773950628,\\n                        \\\"y\\\": 1733.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.133Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.219Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"3bca8bfa-c43e-4ab9-9d2f-fba98822c260\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"115-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1326.3478773950628,\\n                        \\\"y\\\": 1758.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.133Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.219Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"7eebf46c-08c4-41a0-88ac-a945d4eac9f0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"115-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1326.3478773950628,\\n                        \\\"y\\\": 1783.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.133Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.219Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"5857929a-49e9-47f7-982e-7f2ce6cc9cc8\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1511.6201179965058,\\n                \\\"y\\\": 1708.9720222713545\\n            },\\n            \\\"table_id\\\": \\\"116\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": 90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:33:00.644Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1511.6201179965058,\\n                    \\\"y\\\": 1708.9720222713545\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:33:37.221Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"e0142434-52b0-430f-910b-27ceffde72f4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"116-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1561.6201179965058,\\n                        \\\"y\\\": 1633.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.644Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.221Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"3c7cad8e-9ed5-47d1-881e-47202bba2376\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"116-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1561.6201179965058,\\n                        \\\"y\\\": 1658.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.644Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.221Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"a84a42c0-af8f-465e-953a-b77a3a53511a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"116-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1561.6201179965058,\\n                        \\\"y\\\": 1683.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.644Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.221Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"dd052a29-4cc4-4daa-a8ec-322470b5d70c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"116-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1561.6201179965058,\\n                        \\\"y\\\": 1708.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.644Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.221Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"9bcbd6e2-8918-44cf-8136-554e9528085e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"116-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1561.6201179965058,\\n                        \\\"y\\\": 1733.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.644Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.221Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"3611e117-c6a9-4422-91bf-996545c42e18\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"116-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1561.6201179965058,\\n                        \\\"y\\\": 1758.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.644Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.221Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"f2d18e3f-5b1c-4eac-9cdd-d0d76da01bb1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"116-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1561.6201179965058,\\n                        \\\"y\\\": 1783.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.644Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.221Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"5fd176c5-1d94-4f93-9d10-57f5e200d336\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"116-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1461.6201179965058,\\n                        \\\"y\\\": 1633.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.644Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.221Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"2b603349-dc3b-4550-af67-3e88685d3454\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"116-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1461.6201179965058,\\n                        \\\"y\\\": 1658.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.644Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.221Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"25538fa4-5762-4388-ac3c-d7a7d13e617b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"116-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1461.6201179965058,\\n                        \\\"y\\\": 1683.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.644Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.221Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"e0275ef1-db37-4872-835e-7a861c938e2f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"116-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1461.6201179965058,\\n                        \\\"y\\\": 1708.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.644Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.221Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"27675e18-e1b5-4e02-9a7e-a7e7790d2d56\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"116-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1461.6201179965058,\\n                        \\\"y\\\": 1733.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.644Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.221Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"3149efa3-e02c-4271-b875-d929a6cfe0bd\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"116-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1461.6201179965058,\\n                        \\\"y\\\": 1758.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.644Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.221Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"283d3ef0-98a2-4ef1-9008-2879c336d757\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"116-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1461.6201179965058,\\n                        \\\"y\\\": 1783.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:00.644Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.221Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"eedefbde-cd3a-4a20-bbfe-ac0a4a791c3b\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1646.8923585979487,\\n                \\\"y\\\": 1708.9720222713545\\n            },\\n            \\\"table_id\\\": \\\"117\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": 90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:33:01.080Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1646.8923585979487,\\n                    \\\"y\\\": 1708.9720222713545\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:33:37.223Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"44461f79-9772-4f19-a46c-267e9f606a70\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"117-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1696.8923585979487,\\n                        \\\"y\\\": 1633.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.080Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.223Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"a48ba97e-0fa6-41e9-bd64-ebcd7174d923\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"117-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1696.8923585979487,\\n                        \\\"y\\\": 1658.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.080Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.223Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"7ce8581f-5c99-456c-8ea5-6842b06a8f32\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"117-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1696.8923585979487,\\n                        \\\"y\\\": 1683.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.080Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.223Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"298764ef-f1f9-49b8-a81d-4f70f6c8ca87\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"117-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1696.8923585979487,\\n                        \\\"y\\\": 1708.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.080Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.223Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"51495b85-a682-4661-b50f-0bb0f21a12fc\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"117-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1696.8923585979487,\\n                        \\\"y\\\": 1733.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.080Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.223Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"1b44efbd-4e57-4977-8153-53e99d61a71b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"117-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1696.8923585979487,\\n                        \\\"y\\\": 1758.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.080Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.223Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"b059f66a-ce76-49a0-a1ba-900eade07e75\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"117-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1696.8923585979487,\\n                        \\\"y\\\": 1783.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.080Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.223Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"2a83ed8a-84bb-4c06-be54-d812697f0cf0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"117-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1596.8923585979487,\\n                        \\\"y\\\": 1633.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.080Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.223Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"3e9db65f-2bb4-4356-9efb-bc335dae6d84\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"117-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1596.8923585979487,\\n                        \\\"y\\\": 1658.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.080Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.223Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"d753f6e2-60f6-4861-8ada-5bcc0d78ee08\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"117-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1596.8923585979487,\\n                        \\\"y\\\": 1683.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.080Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.223Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"c56e76c7-dcb3-4cf1-90b0-665aa91ff8ad\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"117-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1596.8923585979487,\\n                        \\\"y\\\": 1708.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.080Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.223Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"925a2520-3235-4535-b6f1-538e13b976df\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"117-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1596.8923585979487,\\n                        \\\"y\\\": 1733.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.080Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.223Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"2f23e9ba-ca98-440f-837e-727c144349b8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"117-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1596.8923585979487,\\n                        \\\"y\\\": 1758.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.080Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.223Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"71d77f66-f66b-45d7-afd2-0cae68376647\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"117-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1596.8923585979487,\\n                        \\\"y\\\": 1783.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.080Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.223Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"67c96ea1-486a-46a4-8e08-029074d3393f\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1782.1645991993917,\\n                \\\"y\\\": 1708.9720222713545\\n            },\\n            \\\"table_id\\\": \\\"118\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": 90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:33:01.629Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1782.1645991993917,\\n                    \\\"y\\\": 1708.9720222713545\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:33:37.225Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"cfedb9eb-1938-434b-ba78-e944382ab00e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"118-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1832.1645991993917,\\n                        \\\"y\\\": 1633.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.629Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.225Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"592f16a1-e4fa-4f8b-a68f-c1adf108f9a7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"118-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1832.1645991993917,\\n                        \\\"y\\\": 1658.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.629Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.225Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"671a3a70-8ec3-49f7-8ceb-8124bffe9e3f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"118-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1832.1645991993917,\\n                        \\\"y\\\": 1683.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.629Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.225Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"4f827e78-8da0-420b-a1d7-30ac345efa5e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"118-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1832.1645991993917,\\n                        \\\"y\\\": 1708.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.629Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.225Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"08334c45-27b4-4ec0-9fde-5cd758f90a62\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"118-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1832.1645991993917,\\n                        \\\"y\\\": 1733.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.629Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.225Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"3a011f14-4ee6-4137-b6a5-2a6f34b9869f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"118-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1832.1645991993917,\\n                        \\\"y\\\": 1758.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.629Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.225Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"e1eb4988-8f08-4f04-a809-daae7feb7ccf\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"118-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1832.1645991993917,\\n                        \\\"y\\\": 1783.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.629Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.225Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"de4292ce-a573-4033-af94-bac249924b57\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"118-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1732.1645991993917,\\n                        \\\"y\\\": 1633.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.629Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.225Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"9a9af4e0-8819-4642-9462-61d2defb5569\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"118-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1732.1645991993917,\\n                        \\\"y\\\": 1658.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.629Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.225Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"93c3bfbf-9120-4bc8-9087-cedb0e4654a5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"118-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1732.1645991993917,\\n                        \\\"y\\\": 1683.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.629Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.225Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"3561f850-414b-42d4-97ec-75ea3de64fe8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"118-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1732.1645991993917,\\n                        \\\"y\\\": 1708.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.629Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.225Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"895ca2d3-598d-4401-9d9b-1b6dcb879e57\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"118-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1732.1645991993917,\\n                        \\\"y\\\": 1733.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.629Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.225Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"2bf40d9b-96d5-459f-9bb9-d99b888edf7d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"118-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1732.1645991993917,\\n                        \\\"y\\\": 1758.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.629Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.225Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"e6d543fb-f87d-4316-813a-88ffba0973aa\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"118-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1732.1645991993917,\\n                        \\\"y\\\": 1783.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:01.629Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.225Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"495e6ef8-fa95-4cc0-96e1-d2b7d7d3db09\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1917.4368398008344,\\n                \\\"y\\\": 1708.9720222713545\\n            },\\n            \\\"table_id\\\": \\\"119\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": 90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:33:02.395Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1917.4368398008344,\\n                    \\\"y\\\": 1708.9720222713545\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:33:37.226Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"2d9a7040-2306-4407-92a4-b6b9dfb8241c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"119-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1967.4368398008344,\\n                        \\\"y\\\": 1633.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.395Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.226Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"ef95ffa3-483b-482f-8c28-dc9f67c21ed3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"119-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1967.4368398008344,\\n                        \\\"y\\\": 1658.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.395Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.226Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"d160e725-794c-4e82-b04d-ef49777e96d8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"119-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1967.4368398008344,\\n                        \\\"y\\\": 1683.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.395Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.226Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"7a3a51c1-f5de-4b2e-9cad-67ceeda31f50\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"119-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1967.4368398008344,\\n                        \\\"y\\\": 1708.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.395Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.226Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"a1d329fb-1f75-4a1e-bb6d-f1af589f292e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"119-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1967.4368398008344,\\n                        \\\"y\\\": 1733.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.395Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.226Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"a23e3de1-a8cc-480c-a209-cd715f3aa949\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"119-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1967.4368398008344,\\n                        \\\"y\\\": 1758.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.395Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.226Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"6481af92-32ae-47c5-b298-0a01d5f31b01\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"119-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1967.4368398008344,\\n                        \\\"y\\\": 1783.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.395Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.226Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"b3af9737-e4ee-4b06-a55d-aaec544fb7e7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"119-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1867.4368398008344,\\n                        \\\"y\\\": 1633.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.395Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.226Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"03c9e0b7-9a9f-4fd2-a4bf-76fd0fba996d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"119-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1867.4368398008344,\\n                        \\\"y\\\": 1658.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.395Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.226Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"94c501d4-7751-4a8b-8e2b-1cd469e323b6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"119-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1867.4368398008344,\\n                        \\\"y\\\": 1683.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.395Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.226Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"f6ec0092-23fd-4ea2-9abf-83232b71069b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"119-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1867.4368398008344,\\n                        \\\"y\\\": 1708.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.395Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.226Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"7aa3baa0-1ebd-437c-a292-7a906d48852c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"119-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1867.4368398008344,\\n                        \\\"y\\\": 1733.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.395Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.226Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"fe39fe67-ed52-4b19-818f-067aecf3e37f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"119-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1867.4368398008344,\\n                        \\\"y\\\": 1758.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.395Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.226Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"c012581f-d958-477d-8eb6-49b17c27761c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"119-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1867.4368398008344,\\n                        \\\"y\\\": 1783.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.395Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.226Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"974947ed-bfb2-4305-aa41-bf9e3bcffde0\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2052.7090804022773,\\n                \\\"y\\\": 1708.9720222713545\\n            },\\n            \\\"table_id\\\": \\\"120\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": 90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:33:02.861Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2052.7090804022773,\\n                    \\\"y\\\": 1708.9720222713545\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:33:37.228Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"5fa9a9d1-5b1b-4b1a-aa08-09b372e67ddb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"120-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2102.7090804022773,\\n                        \\\"y\\\": 1633.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.861Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.228Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"be5d08c7-9f45-4957-8c43-66011d1f5e82\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"120-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2102.7090804022773,\\n                        \\\"y\\\": 1658.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.861Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.228Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"c29c2d44-9fdf-4125-b7c8-0de43530f047\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"120-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2102.7090804022773,\\n                        \\\"y\\\": 1683.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.861Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.228Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"21b703b0-f302-4690-a6fd-9a4f3a1f77eb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"120-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2102.7090804022773,\\n                        \\\"y\\\": 1708.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.861Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.228Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"b17121e6-99e1-4029-b1c8-68160a774370\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"120-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2102.7090804022773,\\n                        \\\"y\\\": 1733.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.861Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.228Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"78cc37e7-9b74-4299-906e-008a9a214356\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"120-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2102.7090804022773,\\n                        \\\"y\\\": 1758.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.861Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.228Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"e3be47da-c28b-4da4-8996-b06e70ea515c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"120-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2102.7090804022773,\\n                        \\\"y\\\": 1783.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.861Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.228Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"6980ca50-50fa-459b-a014-0f6ba61307bc\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"120-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2002.709080402277,\\n                        \\\"y\\\": 1633.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.861Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.228Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"0bb0d5a8-88a5-4475-b7d5-07c7d2d15108\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"120-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2002.709080402277,\\n                        \\\"y\\\": 1658.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.861Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.228Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"9ad7ab26-0252-4d86-a9fc-31292e9ebd2f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"120-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2002.709080402277,\\n                        \\\"y\\\": 1683.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.861Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.228Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"345f261c-3a25-4736-959a-e2e1e89693d7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"120-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2002.709080402277,\\n                        \\\"y\\\": 1708.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.861Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.228Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"4776866c-aa16-4da1-bd7b-394253948ca2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"120-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2002.709080402277,\\n                        \\\"y\\\": 1733.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.861Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.228Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"433a4e56-aabe-440c-8002-d6aedf16bf32\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"120-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2002.709080402277,\\n                        \\\"y\\\": 1758.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.861Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.228Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"d158f270-cfa6-4e3f-b24f-f1ec7264dfa4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"120-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2002.709080402277,\\n                        \\\"y\\\": 1783.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:02.861Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.228Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"fff5438d-ef63-4207-aee4-cddb317fe787\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2187.9813210037205,\\n                \\\"y\\\": 1708.9720222713545\\n            },\\n            \\\"table_id\\\": \\\"121\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": 90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:33:03.359Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2187.9813210037205,\\n                    \\\"y\\\": 1708.9720222713545\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:33:37.230Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"a6d408a0-3e6b-4507-bebe-852710827be2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"121-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2237.9813210037205,\\n                        \\\"y\\\": 1633.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:03.359Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.230Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"07171ce2-c555-4206-bcc7-9a9b42881a87\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"121-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2237.9813210037205,\\n                        \\\"y\\\": 1658.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:03.359Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.230Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"e5561824-6a55-43d7-ab52-208402b64b9c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"121-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2237.9813210037205,\\n                        \\\"y\\\": 1683.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:03.359Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.230Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"7e16a190-83e5-4986-a299-503b633691fd\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"121-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2237.9813210037205,\\n                        \\\"y\\\": 1708.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:03.359Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.230Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"1c7ca7d3-5f6e-4c6b-8e6a-61074f17844a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"121-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2237.9813210037205,\\n                        \\\"y\\\": 1733.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:03.359Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.230Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"2eeefc8d-8338-4a23-8e12-9ee3f8f74883\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"121-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2237.9813210037205,\\n                        \\\"y\\\": 1758.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:03.359Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.230Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"d847d60f-ea9d-4499-9102-ed6eb1549a77\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"121-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2237.9813210037205,\\n                        \\\"y\\\": 1783.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:03.359Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.230Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"c8e43c14-7dde-4fa4-a092-99d20ca820cf\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"121-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2137.9813210037205,\\n                        \\\"y\\\": 1633.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:03.359Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.230Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"fb7aeb56-0476-4a1c-ac66-61a093967df8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"121-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2137.9813210037205,\\n                        \\\"y\\\": 1658.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:03.359Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.230Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"440fa3d3-93dc-4ea0-a0fa-05724f381f79\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"121-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2137.9813210037205,\\n                        \\\"y\\\": 1683.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:03.359Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.230Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"24f955f3-2c0b-4e15-954c-303025344b3b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"121-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2137.9813210037205,\\n                        \\\"y\\\": 1708.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:03.359Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.230Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"8deb69b4-7eca-459e-9501-4d6cbc1b2119\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"121-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2137.9813210037205,\\n                        \\\"y\\\": 1733.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:03.359Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.230Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"ffdd3a1f-cbdc-4bb0-92bd-e8c90fec39c0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"121-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2137.9813210037205,\\n                        \\\"y\\\": 1758.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:03.359Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.230Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"29b1a254-b8ba-4720-ab6d-9a613d581a9b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"121-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2137.9813210037205,\\n                        \\\"y\\\": 1783.9720222713545\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:33:03.359Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:33:37.230Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"5b72ed8f-2c70-439f-94c4-1a84c027e051\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2370.6413187264407,\\n                \\\"y\\\": 1136.5729704814491\\n            },\\n            \\\"table_id\\\": \\\"201\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:36:38.461Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2380.6413187264407,\\n                    \\\"y\\\": 1136.5729704814491\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"cc9bc057-a2aa-42a1-b551-504de8a16a95\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"201-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2330.6413187264407,\\n                        \\\"y\\\": 1211.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.461Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"56b8372b-77ab-4ec7-b911-1d414febb899\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"201-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2330.6413187264407,\\n                        \\\"y\\\": 1186.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.461Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"a67cef5c-0657-46a1-a1ae-7dd1024030b9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"201-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2330.6413187264407,\\n                        \\\"y\\\": 1161.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.461Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"f0ca55c9-3ecf-4254-9ebd-1c58f1e26086\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"201-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2330.6413187264407,\\n                        \\\"y\\\": 1136.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.461Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"e144427b-44db-4c1d-9ee8-f707a62921d5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"201-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2330.64131872644,\\n                        \\\"y\\\": 1111.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.461Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"1ebfa491-7a88-4de0-8b88-ce92cb2564f7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"201-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2330.6413187264407,\\n                        \\\"y\\\": 1086.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.461Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"fecf300e-de51-4d47-9949-dd26446b617b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"201-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2330.6413187264407,\\n                        \\\"y\\\": 1061.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.461Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"5b0c2b23-6e8b-4a76-8bfa-e3ae6b1a6043\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"201-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2430.6413187264407,\\n                        \\\"y\\\": 1211.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.461Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"b4d760c4-fa43-42d7-8c30-a044a59e11f7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"201-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2430.6413187264407,\\n                        \\\"y\\\": 1186.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.461Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"5b9a08c1-f29c-41a2-80c3-510f7f8aa507\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"201-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2430.641318726441,\\n                        \\\"y\\\": 1161.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.461Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"41263b5f-c02d-4bc0-b65f-16ef2934375c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"201-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2430.6413187264407,\\n                        \\\"y\\\": 1136.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.461Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"7d26a11d-966f-44b7-86ae-3f79a6a35686\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"201-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2430.6413187264407,\\n                        \\\"y\\\": 1111.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.461Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"8050804f-120d-42dc-9a29-0058399cf8a8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"201-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2430.6413187264407,\\n                        \\\"y\\\": 1086.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.461Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"2ba3dfe4-bf5a-4bcd-a710-3d6394252ac8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"201-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2430.6413187264407,\\n                        \\\"y\\\": 1061.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.461Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"c3a159a8-d81d-48dd-9f5d-beb7a073aa46\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2508.1905658778724,\\n                \\\"y\\\": 1136.5729704814491\\n            },\\n            \\\"table_id\\\": \\\"202\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:36:38.979Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2518.1905658778724,\\n                    \\\"y\\\": 1136.5729704814491\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"7110167c-6f4b-4b1c-9c9d-367e2febf328\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"202-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2468.1905658778724,\\n                        \\\"y\\\": 1211.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"2743c18f-f1d1-4ff7-9aa8-4ec4cfb56d75\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"202-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2468.1905658778724,\\n                        \\\"y\\\": 1186.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"80596cbc-e255-454f-94d4-1202d539db5a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"202-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2468.1905658778724,\\n                        \\\"y\\\": 1161.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"7c14a666-5b3c-4c63-b37a-274cd8b86cde\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"202-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2468.1905658778724,\\n                        \\\"y\\\": 1136.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"b6c3857c-926c-484d-a133-6b17a7663e7d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"202-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2468.190565877872,\\n                        \\\"y\\\": 1111.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"39ccb69c-a19e-4af7-b31e-426aa3b218b1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"202-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2468.1905658778724,\\n                        \\\"y\\\": 1086.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"52806e47-e5f8-4569-9f3a-687cfa34fc70\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"202-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2468.1905658778724,\\n                        \\\"y\\\": 1061.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"8d821601-efae-4893-8910-47aeb8fa2fc3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"202-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2568.1905658778724,\\n                        \\\"y\\\": 1211.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"44b4d159-5d61-4b16-9536-5e793970dbf0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"202-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2568.1905658778724,\\n                        \\\"y\\\": 1186.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"dd3b928f-b8bc-47f2-9b61-9e1574015376\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"202-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2568.190565877873,\\n                        \\\"y\\\": 1161.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"065aca35-5a80-45ae-8203-6db3f469d5ae\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"202-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2568.1905658778724,\\n                        \\\"y\\\": 1136.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"c5515698-54d5-48ad-bc0e-aba076724959\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"202-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2568.1905658778724,\\n                        \\\"y\\\": 1111.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"9c03569e-4285-49e6-8591-ff210a0ef059\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"202-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2568.1905658778724,\\n                        \\\"y\\\": 1086.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                },\\n                {\\n                    \\\"id\\\": \\\"accbe97e-55bb-4c22-9f43-c9293e59825e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 1000,\\n                    \\\"seat_id\\\": \\\"202-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2568.1905658778724,\\n                        \\\"y\\\": 1061.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:38.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 125\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"fc90d7f0-d045-4671-bc1f-a24339c681d9\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2645.739813029304,\\n                \\\"y\\\": 1136.5729704814491\\n            },\\n            \\\"table_id\\\": \\\"203\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:36:39.379Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2655.739813029304,\\n                    \\\"y\\\": 1136.5729704814491\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"9dbe954b-d977-466f-8bb1-bb55cc0bd2ba\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"203-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2605.739813029304,\\n                        \\\"y\\\": 1211.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.379Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"93159638-638c-47fc-84c1-97dee28cf0bf\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"203-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2605.739813029304,\\n                        \\\"y\\\": 1186.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.379Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"092eecf1-6159-4177-a4dd-ada0000b5e02\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"203-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2605.739813029304,\\n                        \\\"y\\\": 1161.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.379Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"7afa3811-bbb8-4377-ada7-f979f91600be\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"203-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2605.739813029304,\\n                        \\\"y\\\": 1136.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.379Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"2ae950ee-a0b3-47c6-88ed-8810ab60db8f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"203-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2605.7398130293036,\\n                        \\\"y\\\": 1111.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.379Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"e3911693-a730-4786-97f7-2f02530649d6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"203-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2605.739813029304,\\n                        \\\"y\\\": 1086.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.379Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"9fd1fbf5-2f09-47cb-8d25-ac6acf261891\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"203-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2605.739813029304,\\n                        \\\"y\\\": 1061.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.379Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"f1f2d0b6-ba82-4902-9394-eaf9a12a2d8b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"203-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2705.739813029304,\\n                        \\\"y\\\": 1211.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.379Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"e56f1e4f-4e67-4d0d-bd26-a5ae7e6fcbc5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"203-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2705.739813029304,\\n                        \\\"y\\\": 1186.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.379Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"fb8cda91-9ad4-4699-beef-80f60655f463\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"203-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2705.7398130293045,\\n                        \\\"y\\\": 1161.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.379Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"d749c478-96d0-4858-8f3a-e7135ff8ef6e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"203-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2705.739813029304,\\n                        \\\"y\\\": 1136.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.379Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"8d3ed8d2-1683-4246-b0e3-1c9bdc62389d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"203-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2705.739813029304,\\n                        \\\"y\\\": 1111.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.379Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"c822baf0-f226-4162-8e4e-6665e202b1b9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"203-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2705.739813029304,\\n                        \\\"y\\\": 1086.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.379Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"63072583-9ded-4874-85c4-4b3e84728fea\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"203-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2705.739813029304,\\n                        \\\"y\\\": 1061.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.379Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"37696cc2-e06d-4350-82a6-e8515ed53393\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2783.289060180736,\\n                \\\"y\\\": 1136.5729704814491\\n            },\\n            \\\"table_id\\\": \\\"204\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:36:39.803Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2793.289060180736,\\n                    \\\"y\\\": 1136.5729704814491\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"11143757-e879-4695-a86b-c72f40b21cc8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"204-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2743.289060180736,\\n                        \\\"y\\\": 1211.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.803Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"f8c53bab-fc41-4006-95b9-e2d140075ae4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"204-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2743.289060180736,\\n                        \\\"y\\\": 1186.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.803Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"5f2476fa-d59f-408c-b023-1651f37abf38\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"204-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2743.289060180736,\\n                        \\\"y\\\": 1161.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.803Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"b42b973a-450e-4a6b-bb8e-b3df21d995ca\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"204-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2743.289060180736,\\n                        \\\"y\\\": 1136.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.803Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"10c65633-af58-404b-adc2-c9f9d2c6f872\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"204-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2743.2890601807353,\\n                        \\\"y\\\": 1111.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.803Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"705cc0a7-eec5-41bf-94df-7bca9a85fa32\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"204-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2743.289060180736,\\n                        \\\"y\\\": 1086.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.803Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"ba3c95d4-2ec7-4622-a710-f39210e5f458\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"204-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2743.289060180736,\\n                        \\\"y\\\": 1061.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.803Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"4ec0a0b1-34de-4e78-8787-71f37334dcf4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"204-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2843.289060180736,\\n                        \\\"y\\\": 1211.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.803Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"4da7a943-3a6d-4296-bec2-a0e7d5b1778d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"204-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2843.289060180736,\\n                        \\\"y\\\": 1186.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.803Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"91d0e290-a86b-407d-a2c2-8ef90206a598\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"204-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2843.289060180736,\\n                        \\\"y\\\": 1161.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.803Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"a2c2ca27-dcfd-4916-97d6-7b76052c5c9c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"204-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2843.289060180736,\\n                        \\\"y\\\": 1136.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.803Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"1ee1fa98-af54-4c31-bd21-5285710838e3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"204-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2843.289060180736,\\n                        \\\"y\\\": 1111.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.803Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"ccd909a4-c69d-4880-a9be-0377435b2f05\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"204-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2843.289060180736,\\n                        \\\"y\\\": 1086.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.803Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"4660c03c-c4b4-48bb-9ee2-9ddfe91a86ed\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"204-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2843.289060180736,\\n                        \\\"y\\\": 1061.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:39.803Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"e1481d4f-5955-49af-9b5c-ee763dc45f66\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2920.8383073321675,\\n                \\\"y\\\": 1136.5729704814491\\n            },\\n            \\\"table_id\\\": \\\"205\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:36:40.562Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2930.8383073321675,\\n                    \\\"y\\\": 1136.5729704814491\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"5772b347-489c-4818-a795-0b292109a66b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"205-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2880.8383073321675,\\n                        \\\"y\\\": 1211.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:40.562Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"02941662-bd2f-4745-9aaa-04fc8141be4b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"205-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2880.8383073321675,\\n                        \\\"y\\\": 1186.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:40.562Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"4442ae1c-e228-4077-be25-60f978eb00bf\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"205-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2880.8383073321675,\\n                        \\\"y\\\": 1161.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:40.562Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"25d82267-5d98-4f1f-8672-c72ba5b569e0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"205-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2880.8383073321675,\\n                        \\\"y\\\": 1136.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:40.562Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"71b9aeb5-f445-42fa-97a4-35afd73c877c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"205-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2880.838307332167,\\n                        \\\"y\\\": 1111.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:40.562Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"fa1731fe-dbd6-4c88-909c-c731bc4dd3c6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"205-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2880.8383073321675,\\n                        \\\"y\\\": 1086.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:40.562Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"972d7708-c2ff-4f13-9123-ecb845d99d76\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"205-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2880.8383073321675,\\n                        \\\"y\\\": 1061.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:40.562Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"6bded733-47f5-438b-a52e-78d4fab8a5a8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"205-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2980.8383073321675,\\n                        \\\"y\\\": 1211.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:40.562Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"bc36e6ac-c6e3-4b5c-8821-7c79104e1f2f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"205-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2980.8383073321675,\\n                        \\\"y\\\": 1186.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:40.562Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"2dfcf6c5-06e0-4e96-9a2a-9c9d3fb9063e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"205-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2980.838307332168,\\n                        \\\"y\\\": 1161.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:40.562Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"1b8b26fc-8c13-4b8c-a729-c503a9547588\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"205-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2980.8383073321675,\\n                        \\\"y\\\": 1136.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:40.562Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"f0bf2767-726f-4cac-bb12-cf1c39f1e898\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"205-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2980.8383073321675,\\n                        \\\"y\\\": 1111.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:40.562Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"75a87c9c-e359-4e4f-8f38-33480770c03c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"205-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2980.8383073321675,\\n                        \\\"y\\\": 1086.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:40.562Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"d1a8a79d-e8ee-4fdb-8034-8a60b5de69c6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"205-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2980.8383073321675,\\n                        \\\"y\\\": 1061.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:40.562Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"eebba5cd-df2c-44f4-b900-905d5051eca9\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 3058.387554483599,\\n                \\\"y\\\": 1136.5729704814491\\n            },\\n            \\\"table_id\\\": \\\"206\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:36:41.211Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 3068.387554483599,\\n                    \\\"y\\\": 1136.5729704814491\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"2bc32131-b916-40d4-b395-33963247dbf0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"206-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3018.387554483599,\\n                        \\\"y\\\": 1211.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:41.211Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"4e39126d-13ab-4869-a8a5-373da1ded88f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"206-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3018.387554483599,\\n                        \\\"y\\\": 1186.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:41.211Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"9ae19ef4-5e8c-4330-9edd-e2b643d57dc2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"206-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3018.387554483599,\\n                        \\\"y\\\": 1161.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:41.211Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"7e57bfdc-d546-4385-b7d3-9cb9d2aeaca2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"206-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3018.387554483599,\\n                        \\\"y\\\": 1136.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:41.211Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"7eb0d1ac-014f-48c4-863f-9b92bb1ca0dc\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"206-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3018.3875544835987,\\n                        \\\"y\\\": 1111.5729704814494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:41.211Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"8dae6426-e1d5-479b-b5bb-953a72c369be\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"206-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3018.387554483599,\\n                        \\\"y\\\": 1086.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:41.211Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"5a6a8978-1631-4f36-b2de-804cced38abe\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"206-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3018.387554483599,\\n                        \\\"y\\\": 1061.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:41.211Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"4469674a-c3ff-4b77-9016-4f842ba8b375\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"206-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3118.387554483599,\\n                        \\\"y\\\": 1211.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:41.211Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"4895065a-d4cc-4e31-9544-3bca162a45cb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"206-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3118.387554483599,\\n                        \\\"y\\\": 1186.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:41.211Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"9e746884-143c-42c4-8286-861e61480eaf\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"206-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3118.3875544835996,\\n                        \\\"y\\\": 1161.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:41.211Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"631cea4a-f81a-4bff-bd55-89a5249b5bdb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"206-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3118.387554483599,\\n                        \\\"y\\\": 1136.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:41.211Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"98977dec-fd78-467b-8782-b7535fcf5be2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"206-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3118.387554483599,\\n                        \\\"y\\\": 1111.5729704814491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:41.211Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"1f109324-85fa-491d-9387-8ab0da6fd324\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"206-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3118.387554483599,\\n                        \\\"y\\\": 1086.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:41.211Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"48667106-2758-4312-86cc-56d68cf1b89c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"206-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3118.387554483599,\\n                        \\\"y\\\": 1061.572970481449\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:41.211Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"4b625bdc-ba50-4ed6-9514-29dd14e97f1b\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2370.6413187264407,\\n                \\\"y\\\": 1425.426389499457\\n            },\\n            \\\"table_id\\\": \\\"207\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:36:42.132Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2380.6413187264407,\\n                    \\\"y\\\": 1425.426389499457\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"95078c33-5355-46cc-9acb-b6caf977834f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"207-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2330.6413187264407,\\n                        \\\"y\\\": 1500.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.132Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"86367e99-fd05-4ed3-870a-458ed4292e56\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"207-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2330.6413187264407,\\n                        \\\"y\\\": 1475.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.132Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"1a617c61-e7de-4ccb-9b71-d7f46c7b13de\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"207-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2330.6413187264407,\\n                        \\\"y\\\": 1450.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.132Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"05938e37-2601-4e0b-b12b-f47bec6c430c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"207-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2330.6413187264407,\\n                        \\\"y\\\": 1425.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.132Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"8e612059-3d16-4da9-9b6c-2d1cdc93cdad\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"207-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2330.64131872644,\\n                        \\\"y\\\": 1400.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.132Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"f65066cf-56d4-46aa-bd45-e9a833c85a63\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"207-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2330.6413187264407,\\n                        \\\"y\\\": 1375.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.132Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"7a5cc317-0776-49b3-ac8e-16d0f6350d85\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"207-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2330.6413187264407,\\n                        \\\"y\\\": 1350.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.132Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"ccca4059-bcc3-4f47-9d71-3d4c8ac13cc1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"207-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2430.6413187264407,\\n                        \\\"y\\\": 1500.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.132Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"a88fe772-2172-4280-878c-6fbd59e0ffb4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"207-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2430.6413187264407,\\n                        \\\"y\\\": 1475.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.132Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"0f3057b4-8b7d-490d-aaeb-34b7758c44d8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"207-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2430.641318726441,\\n                        \\\"y\\\": 1450.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.132Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"5b30b457-3069-4fe3-9515-5e4009b3699f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"207-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2430.6413187264407,\\n                        \\\"y\\\": 1425.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.132Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"3772607f-fe58-4fd9-b029-89a268cbefe3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"207-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2430.6413187264407,\\n                        \\\"y\\\": 1400.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.132Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"ee2496bd-a2ea-4aa9-9326-9efb9e30d4a2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"207-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2430.6413187264407,\\n                        \\\"y\\\": 1375.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.132Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"e70bc5f9-67c8-4abc-a27d-59a85fa9b23e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"207-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2430.6413187264407,\\n                        \\\"y\\\": 1350.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.132Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"d69c003c-946e-4a6c-be70-4b7c8ad5b3f4\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2508.1905658778724,\\n                \\\"y\\\": 1425.426389499457\\n            },\\n            \\\"table_id\\\": \\\"208\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:36:42.746Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2518.1905658778724,\\n                    \\\"y\\\": 1425.426389499457\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"6700182c-8f7a-4f1c-bc9b-218cfa788a1e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"208-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2468.1905658778724,\\n                        \\\"y\\\": 1500.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.746Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"162ef53f-3d5d-4dc1-8165-5b1832b8c8ba\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"208-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2468.1905658778724,\\n                        \\\"y\\\": 1475.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.746Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"02e27dd7-76cc-4b2d-bc4e-aeb3f06956a1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"208-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2468.1905658778724,\\n                        \\\"y\\\": 1450.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.746Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"6a3bbd69-86e5-4235-a7ec-502a7ca120a7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"208-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2468.1905658778724,\\n                        \\\"y\\\": 1425.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.746Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"36cf7ea4-5327-401a-b0d9-030aa7578c55\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"208-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2468.190565877872,\\n                        \\\"y\\\": 1400.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.746Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"8852d09a-2c43-475a-aa37-850917534acd\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"208-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2468.1905658778724,\\n                        \\\"y\\\": 1375.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.746Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"33b3279c-086a-439f-8860-681d26aad952\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"208-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2468.1905658778724,\\n                        \\\"y\\\": 1350.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.746Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"edd4fde7-7c90-4fc6-b607-f76844ba7ea9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"208-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2568.1905658778724,\\n                        \\\"y\\\": 1500.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.746Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"2ea5fb82-d033-4012-a308-068f7174bbbc\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"208-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2568.1905658778724,\\n                        \\\"y\\\": 1475.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.746Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"227a55ce-c164-4d5a-b5ee-727f23dffe7c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"208-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2568.190565877873,\\n                        \\\"y\\\": 1450.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.746Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"fb96e621-f2eb-48f9-a197-fb81c8641d5a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"208-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2568.1905658778724,\\n                        \\\"y\\\": 1425.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.746Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"a449af61-e683-42c3-bb44-733a3d1d1ad8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"208-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2568.1905658778724,\\n                        \\\"y\\\": 1400.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.746Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"981b0ad4-d795-4c40-9811-11a410d8e514\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"208-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2568.1905658778724,\\n                        \\\"y\\\": 1375.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.746Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"75acdd25-fc57-425f-ac44-aedd30b4efeb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"208-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2568.1905658778724,\\n                        \\\"y\\\": 1350.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:42.746Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"c62c4e5a-3d35-443a-9ee9-ccf305637c22\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2645.739813029304,\\n                \\\"y\\\": 1425.426389499457\\n            },\\n            \\\"table_id\\\": \\\"209\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:36:43.277Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2655.739813029304,\\n                    \\\"y\\\": 1425.426389499457\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"c5333f40-6c73-4705-a57c-8340c6fcad81\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"209-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2605.739813029304,\\n                        \\\"y\\\": 1500.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.277Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"980fef0d-31cc-4957-a91e-ebee634c1b69\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"209-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2605.739813029304,\\n                        \\\"y\\\": 1475.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.277Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"52e53ec1-8487-42fe-a523-9de4aedc67aa\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"209-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2605.739813029304,\\n                        \\\"y\\\": 1450.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.277Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"bf5a55ef-ae29-444d-a639-cadddf7693d9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"209-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2605.739813029304,\\n                        \\\"y\\\": 1425.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.277Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"136d0a23-ae9c-4205-a3a8-bab60c43cce1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"209-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2605.7398130293036,\\n                        \\\"y\\\": 1400.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.277Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"9ae95b24-385c-4f34-8468-a8d8c246f1cb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"209-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2605.739813029304,\\n                        \\\"y\\\": 1375.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.277Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"5a8f6676-5696-45ca-a659-af3a9508376f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"209-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2605.739813029304,\\n                        \\\"y\\\": 1350.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.277Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"db406fb0-59c0-4e64-9a82-f6a7daef140c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"209-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2705.739813029304,\\n                        \\\"y\\\": 1500.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.277Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"36046274-67bb-4c16-8d59-47a54913792e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"209-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2705.739813029304,\\n                        \\\"y\\\": 1475.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.277Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"5c1869e1-a50d-42af-9fd5-77a781fa1de0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"209-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2705.7398130293045,\\n                        \\\"y\\\": 1450.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.277Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"7b634e95-83f3-4593-97b6-8b6059e806ef\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"209-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2705.739813029304,\\n                        \\\"y\\\": 1425.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.277Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"40ad4f97-e453-41b7-9a29-2fe701e7b1f1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"209-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2705.739813029304,\\n                        \\\"y\\\": 1400.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.277Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"2ba01b19-8248-425f-b361-7bb699326f11\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"209-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2705.739813029304,\\n                        \\\"y\\\": 1375.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.277Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"bc9ad0c3-e26f-417f-9c81-b51e48424b02\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"209-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2705.739813029304,\\n                        \\\"y\\\": 1350.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.277Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"ae77ce59-5695-4102-b438-2032381bdd7d\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2783.289060180736,\\n                \\\"y\\\": 1425.426389499457\\n            },\\n            \\\"table_id\\\": \\\"210\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:36:43.711Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2793.289060180736,\\n                    \\\"y\\\": 1425.426389499457\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"f25688e5-5432-4314-87e9-ed99a03b9058\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"210-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2743.289060180736,\\n                        \\\"y\\\": 1500.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.711Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"37e00f7e-894a-45a3-9ef5-05490bbe81bd\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"210-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2743.289060180736,\\n                        \\\"y\\\": 1475.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.711Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"b2c12c46-027f-495f-9e5c-0fd74a0d8c1a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"210-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2743.289060180736,\\n                        \\\"y\\\": 1450.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.711Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"d1d6b0a5-d9a9-4431-a38e-505470771575\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"210-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2743.289060180736,\\n                        \\\"y\\\": 1425.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.711Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"6d7ae1ff-503e-4619-b2d1-a086b71a78a4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"210-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2743.2890601807353,\\n                        \\\"y\\\": 1400.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.711Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"cf7b3348-40b2-4f9e-9179-07cf73c334e6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"210-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2743.289060180736,\\n                        \\\"y\\\": 1375.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.711Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"c0a57109-31cb-4e52-893e-1aacdd4f6557\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"210-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2743.289060180736,\\n                        \\\"y\\\": 1350.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.711Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"f4a79862-a285-4fa0-a355-c9bfc00c81ea\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"210-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2843.289060180736,\\n                        \\\"y\\\": 1500.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.711Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"54f0d592-b3ad-4168-8631-b17d159a8b82\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"210-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2843.289060180736,\\n                        \\\"y\\\": 1475.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.711Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"4ab863ee-1b2d-410b-9071-0fb602e7c309\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"210-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2843.289060180736,\\n                        \\\"y\\\": 1450.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.711Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"67d91fbd-7598-493b-9857-d1d3aceba887\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"210-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2843.289060180736,\\n                        \\\"y\\\": 1425.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.711Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"e2a6451c-4bb2-4fd3-bd3c-e41e505af979\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"210-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2843.289060180736,\\n                        \\\"y\\\": 1400.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.711Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"17a05643-a9d3-45bd-a031-446120165292\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"210-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2843.289060180736,\\n                        \\\"y\\\": 1375.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.711Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"35d84554-78e9-4bcd-969e-294cae7d5496\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"210-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2843.289060180736,\\n                        \\\"y\\\": 1350.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:43.711Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"83f18620-c6b2-4e23-9371-27a51d649a3f\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2920.8383073321675,\\n                \\\"y\\\": 1425.426389499457\\n            },\\n            \\\"table_id\\\": \\\"211\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:36:44.328Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2930.8383073321675,\\n                    \\\"y\\\": 1425.426389499457\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"dc113827-cfd9-443a-8246-395ceccb1bdc\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"211-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2880.8383073321675,\\n                        \\\"y\\\": 1500.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.328Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"a28722d8-f248-4b00-8e76-f05c0009980e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"211-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2880.8383073321675,\\n                        \\\"y\\\": 1475.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.328Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"4533e075-1b3d-4bb2-925f-8c60ec33ac81\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"211-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2880.8383073321675,\\n                        \\\"y\\\": 1450.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.328Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"7a43a000-dd68-4925-983f-602ef5d8a6e1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"211-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2880.8383073321675,\\n                        \\\"y\\\": 1425.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.328Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"138493af-1ae8-4031-8b99-65302e5ba14d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"211-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2880.838307332167,\\n                        \\\"y\\\": 1400.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.328Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"b876de4f-0d88-4f0b-836f-2b490a6f0eb3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"211-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2880.8383073321675,\\n                        \\\"y\\\": 1375.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.328Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"c824ab8c-cccc-4aa6-aba1-7dee474af7b7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"211-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2880.8383073321675,\\n                        \\\"y\\\": 1350.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.328Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"e79131ca-0ab5-4f25-b307-06ab8eabce92\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"211-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2980.8383073321675,\\n                        \\\"y\\\": 1500.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.328Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"3f71cc26-c7b2-4dfa-919e-6ef0a151fb00\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"211-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2980.8383073321675,\\n                        \\\"y\\\": 1475.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.328Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"5b419300-aec7-4f7c-a08b-a3b660413065\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"211-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2980.838307332168,\\n                        \\\"y\\\": 1450.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.328Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"9bda0038-38e4-4a28-ad1d-e65bbe0db6ae\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"211-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2980.8383073321675,\\n                        \\\"y\\\": 1425.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.328Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"5a20980a-0032-472a-9702-d62ed1c08ff9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"211-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2980.8383073321675,\\n                        \\\"y\\\": 1400.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.328Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"5e82e7d1-128f-46c4-9ebf-54abd8e6f44c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"211-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2980.8383073321675,\\n                        \\\"y\\\": 1375.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.328Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"6ee8f3b4-d8c1-4884-938c-281a67ad69ff\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"211-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2980.8383073321675,\\n                        \\\"y\\\": 1350.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.328Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"04319a1f-03a7-46cc-9e49-b35cb8201f87\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 3058.387554483599,\\n                \\\"y\\\": 1425.426389499457\\n            },\\n            \\\"table_id\\\": \\\"212\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:36:44.796Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 3068.387554483599,\\n                    \\\"y\\\": 1425.426389499457\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"b71e3e34-ae2e-45bf-bc85-3e00352d70bb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"212-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3018.387554483599,\\n                        \\\"y\\\": 1500.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.796Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"d9b59892-6fb7-4bd2-9fb1-9ea32e2d8970\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"212-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3018.387554483599,\\n                        \\\"y\\\": 1475.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.796Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"7fd570e7-e441-49e4-9bcb-1c8ef696442e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"212-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3018.387554483599,\\n                        \\\"y\\\": 1450.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.796Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"a2e5ee92-3784-4da4-b8bf-787974a8f40b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"212-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3018.387554483599,\\n                        \\\"y\\\": 1425.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.796Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"24d5833a-388e-462b-8fe3-9ed591bfd7ad\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"212-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3018.3875544835987,\\n                        \\\"y\\\": 1400.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.796Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"de0e99c8-450e-4945-9606-5f1d6ffcbc43\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"212-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3018.387554483599,\\n                        \\\"y\\\": 1375.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.796Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"4cd1da23-6eea-4076-bd3e-f92f9b9342ea\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"212-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3018.387554483599,\\n                        \\\"y\\\": 1350.4263894994572\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.796Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"613742d1-cd0b-4c3b-ae32-454979102385\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"212-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3118.387554483599,\\n                        \\\"y\\\": 1500.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.796Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"d9f5fd1f-8baa-4297-afad-e1fc0099787f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"212-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3118.387554483599,\\n                        \\\"y\\\": 1475.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.796Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"e3392a88-4aa1-4d42-ba43-0c81c0deeb2b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"212-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3118.3875544835996,\\n                        \\\"y\\\": 1450.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.796Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"104cd4a4-452e-4acd-9964-33747036b819\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"212-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3118.387554483599,\\n                        \\\"y\\\": 1425.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.796Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"088225a8-f1ff-4bf0-ac60-fcdf3e9e5417\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"212-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3118.387554483599,\\n                        \\\"y\\\": 1400.426389499457\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.796Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"4f7d3c86-cf84-4154-8fef-712d66f8597a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"212-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3118.387554483599,\\n                        \\\"y\\\": 1375.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.796Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"97fc6298-b05e-44ab-997c-b4849a6880ea\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"212-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3118.387554483599,\\n                        \\\"y\\\": 1350.4263894994567\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:44.796Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"35a77aa9-5d6d-4d28-b55f-c6488d1ab3ad\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2370.6413187264407,\\n                \\\"y\\\": 1714.2798085174647\\n            },\\n            \\\"table_id\\\": \\\"213\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:36:45.498Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2380.6413187264407,\\n                    \\\"y\\\": 1714.2798085174647\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"a8855ff2-8278-483b-ba57-a26c14f2d9ab\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"213-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2330.6413187264407,\\n                        \\\"y\\\": 1789.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.498Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"513b9c72-5e73-4cd5-8f9b-b372b31d59d4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"213-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2330.6413187264407,\\n                        \\\"y\\\": 1764.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.498Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"1cb45e11-da27-4a8a-923d-04ef8b493dc7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"213-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2330.6413187264407,\\n                        \\\"y\\\": 1739.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.498Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"885b8b72-b545-40bf-9cbc-1d07c10a5bd2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"213-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2330.6413187264407,\\n                        \\\"y\\\": 1714.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.498Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"2c299e44-b4a2-4a39-b27c-06f960f1b093\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"213-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2330.64131872644,\\n                        \\\"y\\\": 1689.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.498Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"0be91286-da59-4d12-bab7-6be968a2ac47\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"213-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2330.6413187264407,\\n                        \\\"y\\\": 1664.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.498Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"4ceda199-f90f-413f-8354-cd4f86d82c57\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"213-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2330.6413187264407,\\n                        \\\"y\\\": 1639.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.498Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"2ed42c96-695e-46c6-9b80-8ac89927be1c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"213-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2430.6413187264407,\\n                        \\\"y\\\": 1789.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.498Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"f13bd282-7fcc-40d7-ae3e-12dea4a8cc9b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"213-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2430.6413187264407,\\n                        \\\"y\\\": 1764.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.498Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"acc22fef-ee6c-4157-8c84-4225b1132c10\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"213-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2430.641318726441,\\n                        \\\"y\\\": 1739.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.498Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"b22b8d08-3d19-4c12-ac1e-354a95ca9aa9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"213-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2430.6413187264407,\\n                        \\\"y\\\": 1714.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.498Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"4c8bdc43-a5c3-4e60-9312-ac1d3709a0b0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"213-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2430.6413187264407,\\n                        \\\"y\\\": 1689.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.498Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"95131758-0f00-411b-80b6-613050b1489b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"213-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2430.6413187264407,\\n                        \\\"y\\\": 1664.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.498Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"265eac1e-d8d9-4067-848a-71f563e9d69e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"213-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2430.6413187264407,\\n                        \\\"y\\\": 1639.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.498Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"d8cc62f7-5607-4fdd-978a-6cadec9c7cc0\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2508.1905658778724,\\n                \\\"y\\\": 1714.2798085174647\\n            },\\n            \\\"table_id\\\": \\\"214\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:36:45.979Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2518.1905658778724,\\n                    \\\"y\\\": 1714.2798085174647\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"93a5b536-403a-42df-8850-992c020261a2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"214-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2468.1905658778724,\\n                        \\\"y\\\": 1789.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"1795d5d0-5de8-47a1-ab65-bc75ca09b5bc\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"214-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2468.1905658778724,\\n                        \\\"y\\\": 1764.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"02672cae-9d18-4f83-92df-dd1e9136bdf6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"214-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2468.1905658778724,\\n                        \\\"y\\\": 1739.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"6331e7a3-7c55-4cb9-96ad-556f69624e67\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"214-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2468.1905658778724,\\n                        \\\"y\\\": 1714.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"ca782908-2360-4c08-9eaa-2f6db7d62c51\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"214-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2468.190565877872,\\n                        \\\"y\\\": 1689.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"3ea810df-bb8d-4698-9ac4-26846e4194bb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"214-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2468.1905658778724,\\n                        \\\"y\\\": 1664.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"9b2ec240-a85d-4082-95a3-dd1926668d69\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"214-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2468.1905658778724,\\n                        \\\"y\\\": 1639.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"70f1bc7d-b5e3-49f0-968f-7a4d393d59d1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"214-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2568.1905658778724,\\n                        \\\"y\\\": 1789.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"54fce0f6-d2f1-4625-b4b2-2fc5cb5668ef\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"214-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2568.1905658778724,\\n                        \\\"y\\\": 1764.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"d5063128-412e-4f10-a856-f21c54d0aeaf\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"214-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2568.190565877873,\\n                        \\\"y\\\": 1739.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"70328aee-6d77-4edc-be72-49d1315a832d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"214-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2568.1905658778724,\\n                        \\\"y\\\": 1714.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"1ff673ad-dc27-4588-a616-d1cf209f4457\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"214-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2568.1905658778724,\\n                        \\\"y\\\": 1689.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"8e4bec5a-5f3e-4195-b88c-4db074549966\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"214-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2568.1905658778724,\\n                        \\\"y\\\": 1664.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"330a8ac7-3fa7-4bd5-b5f6-b5cb533d329d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"214-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2568.1905658778724,\\n                        \\\"y\\\": 1639.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:45.979Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"bab67230-929d-4b4b-b02a-b3a773c4d106\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2645.739813029304,\\n                \\\"y\\\": 1714.2798085174647\\n            },\\n            \\\"table_id\\\": \\\"215\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:36:46.428Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2655.739813029304,\\n                    \\\"y\\\": 1714.2798085174647\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"692c665e-2ce7-455c-8e10-99076cfe3705\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"215-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2605.739813029304,\\n                        \\\"y\\\": 1789.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.428Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"7d337772-6da0-44e4-8bba-01fe02872054\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"215-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2605.739813029304,\\n                        \\\"y\\\": 1764.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.428Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"8592da93-4bb4-42bf-a2b3-4612d2eb3822\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"215-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2605.739813029304,\\n                        \\\"y\\\": 1739.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.428Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"a4dd9f84-0e76-4bd7-a073-dfa408d811b3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"215-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2605.739813029304,\\n                        \\\"y\\\": 1714.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.428Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"ae1fc4dd-aa21-478b-bf84-2f40f8cdb91a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"215-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2605.7398130293036,\\n                        \\\"y\\\": 1689.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.428Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"a183bb67-461c-4ba5-93f1-000e9a0bf2b9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"215-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2605.739813029304,\\n                        \\\"y\\\": 1664.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.428Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"08bd26e0-fe44-4d1a-ad5c-4148e70d7256\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"215-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2605.739813029304,\\n                        \\\"y\\\": 1639.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.428Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"91bf0ec2-7543-4173-9057-56c304c65d09\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"215-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2705.739813029304,\\n                        \\\"y\\\": 1789.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.428Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"4a77f083-c1c0-4cb3-a92c-6f39c99f7ad1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"215-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2705.739813029304,\\n                        \\\"y\\\": 1764.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.428Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"bca977ea-09f0-4513-a9e8-29c631e1d6b8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"215-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2705.7398130293045,\\n                        \\\"y\\\": 1739.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.428Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"73cb6e54-1ec7-4ba7-b90c-723b8f676c27\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"215-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2705.739813029304,\\n                        \\\"y\\\": 1714.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.428Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"df405ced-cd98-4e09-b0d0-706a8606b180\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"215-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2705.739813029304,\\n                        \\\"y\\\": 1689.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.428Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"aceb4467-ef00-48c7-9a0f-b55e450ae33c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"215-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2705.739813029304,\\n                        \\\"y\\\": 1664.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.428Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                },\\n                {\\n                    \\\"id\\\": \\\"32aca151-4fcb-4009-a78c-a26ee6c69d01\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 400,\\n                    \\\"seat_id\\\": \\\"215-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2705.739813029304,\\n                        \\\"y\\\": 1639.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.428Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 127\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"6cc18dfc-ed7b-4cca-8acf-e8e7946512d2\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2783.289060180736,\\n                \\\"y\\\": 1714.2798085174647\\n            },\\n            \\\"table_id\\\": \\\"216\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:36:46.898Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2793.289060180736,\\n                    \\\"y\\\": 1714.2798085174647\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"fa8d7e12-fe1d-48a1-bdd1-103cffd1b6a0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"216-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2743.289060180736,\\n                        \\\"y\\\": 1789.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.898Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"ac8b476b-8012-4af6-b8fc-00bf36260cd3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"216-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2743.289060180736,\\n                        \\\"y\\\": 1764.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.898Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"288facf6-0b5b-4eb8-8ddc-32b6ce6d6729\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"216-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2743.289060180736,\\n                        \\\"y\\\": 1739.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.898Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"0ee7f806-87f4-414b-82a0-8c52262eb902\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"216-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2743.289060180736,\\n                        \\\"y\\\": 1714.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.898Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"b4a8a312-db5e-471b-9bee-776e87c43f07\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"216-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2743.2890601807353,\\n                        \\\"y\\\": 1689.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.898Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"3ff9634d-9f74-429a-885e-2d4616cd21e4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"216-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2743.289060180736,\\n                        \\\"y\\\": 1664.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.898Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"50487ef4-0efa-4ef6-a232-e35ecbfb02b4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"216-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2743.289060180736,\\n                        \\\"y\\\": 1639.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.898Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"a89f0df0-ff35-4d7d-9469-5d268ef25c79\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"216-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2843.289060180736,\\n                        \\\"y\\\": 1789.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.898Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"4a383d97-a2f5-453f-93e3-b2c83960ddfc\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"216-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2843.289060180736,\\n                        \\\"y\\\": 1764.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.898Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"30318249-1d37-47cf-8e6f-e4403f4e9c86\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"216-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2843.289060180736,\\n                        \\\"y\\\": 1739.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.898Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"4003a18e-43a3-492b-8f75-fa448fbed8ad\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"216-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2843.289060180736,\\n                        \\\"y\\\": 1714.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.898Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"70f7b9ac-4089-41bb-b565-a483ce504d18\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"216-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2843.289060180736,\\n                        \\\"y\\\": 1689.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.898Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"d8c9964f-404d-4869-8bd8-e724601ccdad\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"216-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2843.289060180736,\\n                        \\\"y\\\": 1664.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.898Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"c358ac2c-e5de-471e-8818-88e86f00152f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"216-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2843.289060180736,\\n                        \\\"y\\\": 1639.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:46.898Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"9535b530-87ee-442a-bbb5-c811d6cb6cfa\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2920.8383073321675,\\n                \\\"y\\\": 1714.2798085174647\\n            },\\n            \\\"table_id\\\": \\\"217\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:36:47.680Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2930.8383073321675,\\n                    \\\"y\\\": 1714.2798085174647\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"1cf489ad-f460-46f3-9ea9-ca36f7881773\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"217-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2880.8383073321675,\\n                        \\\"y\\\": 1789.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:47.680Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"266ed2bf-0bd1-4461-ba1a-91546418fece\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"217-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2880.8383073321675,\\n                        \\\"y\\\": 1764.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:47.680Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"368d25c0-68c1-4127-99e1-c733133371ff\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"217-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2880.8383073321675,\\n                        \\\"y\\\": 1739.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:47.680Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"4c1e70af-c8f2-44dd-bada-95363297ade0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"217-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2880.8383073321675,\\n                        \\\"y\\\": 1714.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:47.680Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"60ec5cac-d917-40a3-b8ce-405816bfcecd\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"217-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2880.838307332167,\\n                        \\\"y\\\": 1689.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:47.680Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"13f316bd-6479-4e7e-95e2-2008f8a1e1bf\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"217-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2880.8383073321675,\\n                        \\\"y\\\": 1664.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:47.680Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"494f7589-7416-41af-97fb-1177dbcce469\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"217-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2880.8383073321675,\\n                        \\\"y\\\": 1639.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:47.680Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"2fa4f7d5-0d48-4dfd-b170-0511174e32e8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"217-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2980.8383073321675,\\n                        \\\"y\\\": 1789.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:47.680Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"b55faec7-8c75-4a29-a84f-4add9e862724\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"217-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2980.8383073321675,\\n                        \\\"y\\\": 1764.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:47.680Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"fdca5405-1801-47d7-b484-00ded4088e34\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"217-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2980.838307332168,\\n                        \\\"y\\\": 1739.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:47.680Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"fa76718e-ba15-4f72-9b48-7d297970a543\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"217-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2980.8383073321675,\\n                        \\\"y\\\": 1714.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:47.680Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"33d7bb91-c270-478d-8b57-6db44cd3a11c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"217-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2980.8383073321675,\\n                        \\\"y\\\": 1689.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:47.680Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"830287f2-cdb7-4658-b6a0-23a960a6f9c0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"217-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2980.8383073321675,\\n                        \\\"y\\\": 1664.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:47.680Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"df0219ff-5598-4653-bd2c-2962f7b60bfa\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"217-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2980.8383073321675,\\n                        \\\"y\\\": 1639.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:47.680Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"f138a09b-9576-4b0b-93b3-c2134acc5b1f\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 3058.387554483599,\\n                \\\"y\\\": 1714.2798085174647\\n            },\\n            \\\"table_id\\\": \\\"218\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:36:48.193Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 3068.387554483599,\\n                    \\\"y\\\": 1714.2798085174647\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"b88bc573-accb-4443-afc0-60c4f9d89197\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"218-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3018.387554483599,\\n                        \\\"y\\\": 1789.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:48.193Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"7b2cc8d9-0a88-4b80-bdee-74286d696de2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"218-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3018.387554483599,\\n                        \\\"y\\\": 1764.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:48.193Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"4021869e-1fc1-439b-ad6e-f29e1e008e55\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"218-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3018.387554483599,\\n                        \\\"y\\\": 1739.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:48.193Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"43e05bbb-75a1-42cf-8fd7-4d148f97ce38\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"218-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3018.387554483599,\\n                        \\\"y\\\": 1714.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:48.193Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"390b721e-f734-45ea-89ec-8ffe1a1b19ad\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"218-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3018.3875544835987,\\n                        \\\"y\\\": 1689.279808517465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:48.193Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"f948f4d0-fb20-46eb-8dd6-9692615d42d8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"218-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3018.387554483599,\\n                        \\\"y\\\": 1664.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:48.193Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"a99799c3-5395-415f-8bdf-8073abd3d7cb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"218-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3018.387554483599,\\n                        \\\"y\\\": 1639.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:48.193Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"a05dfcfd-3ae3-4ac9-876c-900226d98718\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"218-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3118.387554483599,\\n                        \\\"y\\\": 1789.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:48.193Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"68c4f40b-89e3-4d99-b23c-fbe87c810d52\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"218-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3118.387554483599,\\n                        \\\"y\\\": 1764.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:48.193Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"251939eb-ba02-404c-958c-3340e0641f60\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"218-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3118.3875544835996,\\n                        \\\"y\\\": 1739.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:48.193Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"8c17f7ba-770d-46f6-afde-faa024358258\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"218-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3118.387554483599,\\n                        \\\"y\\\": 1714.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:48.193Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"4b377269-19d9-4d28-a0f1-da790682134d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"218-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3118.387554483599,\\n                        \\\"y\\\": 1689.2798085174647\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:48.193Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"e188ab4e-44d3-4732-8e49-d1029cf7d8cb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"218-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3118.387554483599,\\n                        \\\"y\\\": 1664.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:48.193Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"bd10ef89-d255-4cf5-bd53-20f3b82b6b99\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"218-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3118.387554483599,\\n                        \\\"y\\\": 1639.2798085174643\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:36:48.193Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:37:35.183Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"4523e8be-2480-4cc0-9f86-96faee20bd07\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1377.122489745334,\\n                \\\"y\\\": 2029.8766889777469\\n            },\\n            \\\"table_id\\\": \\\"301\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:45:51.165Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1377.122489745334,\\n                    \\\"y\\\": 2029.8766889777469\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:46:49.260Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"126ba077-e145-4d7c-bc8a-612c65eb4330\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"301-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1327.122489745334,\\n                        \\\"y\\\": 2104.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:51.165Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.260Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"c3b1e6d0-6e60-4281-a70b-e276b230d703\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"301-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1327.122489745334,\\n                        \\\"y\\\": 2079.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:51.165Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.260Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"215c3ebf-d652-4bad-889d-07c1f1a62cf4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"301-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1327.122489745334,\\n                        \\\"y\\\": 2054.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:51.165Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.260Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"1410754b-4acb-4d4b-a190-b173fdaa5a84\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"301-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1327.122489745334,\\n                        \\\"y\\\": 2029.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:51.165Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.260Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"823551f1-f2c0-4826-b7b3-a862760ceb19\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"301-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1327.122489745334,\\n                        \\\"y\\\": 2004.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:51.165Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.260Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"3f403d52-170c-4d78-bdf8-7a55e2934efc\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"301-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1327.122489745334,\\n                        \\\"y\\\": 1979.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:51.165Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.260Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"b1bcccf2-31b8-4025-bdec-d937ef0fe790\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"301-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1327.122489745334,\\n                        \\\"y\\\": 1954.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:51.165Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.260Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"f6d8b616-c500-4477-88a0-532800fb2348\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"301-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1427.122489745334,\\n                        \\\"y\\\": 2104.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:51.165Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.260Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"f1e744cb-d008-4c42-b5a6-5a2dff3143cf\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"301-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1427.122489745334,\\n                        \\\"y\\\": 2079.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:51.165Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.260Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"bc1aa643-b613-4f3f-aafa-6fcaf7210130\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"301-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1427.122489745334,\\n                        \\\"y\\\": 2054.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:51.165Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.260Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"bd50f995-e6f8-4397-b16d-05b0a64b27a8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"301-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1427.122489745334,\\n                        \\\"y\\\": 2029.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:51.165Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.260Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"31281b02-1ce4-40b3-b993-e9646837d749\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"301-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1427.122489745334,\\n                        \\\"y\\\": 2004.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:51.165Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.260Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"adfd4f87-e12a-42ad-9bfe-1fafe6a0979e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"301-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1427.122489745334,\\n                        \\\"y\\\": 1979.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:51.165Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.260Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"ba5227b7-1928-47df-9811-4dd93c592f77\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"301-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1427.122489745334,\\n                        \\\"y\\\": 1954.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:51.165Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.260Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"83623775-3290-44d8-851a-7e48f6e9d340\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1515.2599232270288,\\n                \\\"y\\\": 2029.8766889777469\\n            },\\n            \\\"table_id\\\": \\\"302\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:45:52.141Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1515.2599232270288,\\n                    \\\"y\\\": 2029.8766889777469\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:46:49.273Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"b7c9925a-6dda-460b-8fb0-22219e730266\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"302-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1465.2599232270288,\\n                        \\\"y\\\": 2104.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.141Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.273Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"546b3245-89e0-47d9-a3c4-d0d776f8c348\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"302-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1465.2599232270288,\\n                        \\\"y\\\": 2079.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.141Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.273Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"d4233811-b7ef-4d44-8a79-55d2b95e5cdd\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"302-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1465.2599232270288,\\n                        \\\"y\\\": 2054.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.141Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.273Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"88c94856-1b28-450e-b0a9-bdae24734168\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"302-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1465.2599232270288,\\n                        \\\"y\\\": 2029.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.141Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.273Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"1c01acc4-df29-4602-a112-7edbb8d463ec\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"302-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1465.2599232270288,\\n                        \\\"y\\\": 2004.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.141Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.273Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"acd3fe6a-a291-45ea-a753-af082207a8b3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"302-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1465.2599232270288,\\n                        \\\"y\\\": 1979.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.141Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.273Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"a55b61dc-0846-4096-b63f-18c15c814925\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"302-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1465.2599232270288,\\n                        \\\"y\\\": 1954.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.141Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.273Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"104d9268-c2ad-4e31-84b3-07e59e9a6d71\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"302-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1565.2599232270288,\\n                        \\\"y\\\": 2104.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.141Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.273Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"18f2ab5d-8257-4712-a375-6453aea20164\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"302-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1565.2599232270288,\\n                        \\\"y\\\": 2079.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.141Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.273Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"0e54340f-6d5b-4cd6-8c89-b45f32f89597\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"302-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1565.2599232270288,\\n                        \\\"y\\\": 2054.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.141Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.273Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"9610177e-4dc1-451a-b29f-81cd6d49db11\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"302-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1565.2599232270288,\\n                        \\\"y\\\": 2029.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.141Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.273Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"49635597-1d92-4ab8-8c7e-195476f14abe\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"302-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1565.2599232270288,\\n                        \\\"y\\\": 2004.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.141Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.273Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"a46df7ec-5edf-4a69-b9c9-6e4a41986a85\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"302-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1565.2599232270288,\\n                        \\\"y\\\": 1979.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.141Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.273Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"bf0d3773-dc62-456a-9edf-e397e8ec57d2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"302-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1565.2599232270288,\\n                        \\\"y\\\": 1954.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.141Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.273Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"424a359a-1777-4732-8a03-af715c706c7b\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1653.397356708724,\\n                \\\"y\\\": 2029.8766889777469\\n            },\\n            \\\"table_id\\\": \\\"303\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:45:52.950Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1653.397356708724,\\n                    \\\"y\\\": 2029.8766889777469\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:46:49.283Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"8b2cd043-d092-4dc6-9c4c-594f936b4fe6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"303-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1603.397356708724,\\n                        \\\"y\\\": 2104.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.950Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.283Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"56ab006c-a0fe-41ec-a3b0-8a6aedd8ad2a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"303-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1603.397356708724,\\n                        \\\"y\\\": 2079.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.950Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.283Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"bb791915-75e0-465b-b4f1-00499a92e256\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"303-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1603.397356708724,\\n                        \\\"y\\\": 2054.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.950Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.283Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"db8336f0-dbbb-4fc8-b538-18778b8e82f1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"303-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1603.397356708724,\\n                        \\\"y\\\": 2029.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.950Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.283Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"6fdc4bef-4397-4af2-844e-ca1793f04263\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"303-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1603.397356708724,\\n                        \\\"y\\\": 2004.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.950Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.283Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"2e49f6fe-f51f-4972-a7d2-64157a7f00c8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"303-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1603.397356708724,\\n                        \\\"y\\\": 1979.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.950Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.283Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"7083adaf-415b-41de-88e0-2bb204b27998\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"303-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1603.397356708724,\\n                        \\\"y\\\": 1954.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.950Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.283Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"37101d96-0d28-4882-8cd7-b068363cb1d3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"303-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1703.397356708724,\\n                        \\\"y\\\": 2104.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.950Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.283Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"4f12392a-c1f4-46f9-929e-7f78bc327387\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"303-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1703.397356708724,\\n                        \\\"y\\\": 2079.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.950Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.283Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"3535d182-bcde-49ae-95ee-bf45277b1962\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"303-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1703.397356708724,\\n                        \\\"y\\\": 2054.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.950Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.283Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"7c74a5c1-70b8-4a24-864f-4195692a6269\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"303-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1703.397356708724,\\n                        \\\"y\\\": 2029.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.950Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.283Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"09498c66-45ae-4ceb-b4cd-15419571912f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"303-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1703.397356708724,\\n                        \\\"y\\\": 2004.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.950Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.283Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"ecd1a968-009a-4586-8593-b1d38984baba\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"303-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1703.397356708724,\\n                        \\\"y\\\": 1979.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.950Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.283Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"b91fb19d-8d00-4a00-b17c-0d7166909199\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"303-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1703.397356708724,\\n                        \\\"y\\\": 1954.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:52.950Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.283Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"5715d733-420a-4d5d-8e4b-3cda77d3bc05\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1791.5347901904188,\\n                \\\"y\\\": 2029.8766889777469\\n            },\\n            \\\"table_id\\\": \\\"304\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:45:53.633Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1791.5347901904188,\\n                    \\\"y\\\": 2029.8766889777469\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:46:49.292Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"bf48d3db-2203-49f3-baa9-d8e52aa80498\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"304-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1741.5347901904188,\\n                        \\\"y\\\": 2104.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:53.633Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.292Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"c67dc27c-72fa-42ef-91c2-630499ce1197\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"304-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1741.5347901904188,\\n                        \\\"y\\\": 2079.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:53.633Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.292Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"ddd10476-81a0-47d6-ba8e-b086c7ae5de5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"304-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1741.5347901904188,\\n                        \\\"y\\\": 2054.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:53.633Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.292Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"3fa653c3-5819-4641-9f45-5c8781f8eef8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"304-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1741.5347901904188,\\n                        \\\"y\\\": 2029.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:53.633Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.292Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"3a531bf4-8ad7-4f56-b32e-5f6362ab6055\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"304-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1741.5347901904188,\\n                        \\\"y\\\": 2004.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:53.633Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.292Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"8cb6ce64-5743-4423-9604-981924b06169\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"304-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1741.5347901904188,\\n                        \\\"y\\\": 1979.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:53.633Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.292Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"993cf1e4-a087-4303-89d6-137c9eb32401\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"304-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1741.5347901904188,\\n                        \\\"y\\\": 1954.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:53.633Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.292Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"569c4e13-8cf6-4897-a651-ce4a3e573cbe\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"304-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1841.5347901904188,\\n                        \\\"y\\\": 2104.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:53.633Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.292Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"9854185e-4a78-4727-9c1b-da05fba4d7e0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"304-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1841.5347901904188,\\n                        \\\"y\\\": 2079.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:53.633Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.292Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"be71dc47-f1ca-4dfa-b03e-428fbe7e49b7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"304-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1841.5347901904188,\\n                        \\\"y\\\": 2054.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:53.633Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.292Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"1699e16e-fd56-4f50-9744-56836077a714\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"304-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1841.5347901904188,\\n                        \\\"y\\\": 2029.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:53.633Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.292Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"78172841-dc32-4b2a-a2cc-90460201a619\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"304-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1841.5347901904188,\\n                        \\\"y\\\": 2004.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:53.633Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.292Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"a9d62eac-2bad-4b32-a603-7b76279f28a5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"304-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1841.5347901904188,\\n                        \\\"y\\\": 1979.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:53.633Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.292Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"a352fcef-6cb1-4749-9524-ee7def4bbeda\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"304-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1841.5347901904188,\\n                        \\\"y\\\": 1954.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:53.633Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.292Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"aa27fc17-4204-4815-8a32-455e3a0bcf74\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1929.672223672114,\\n                \\\"y\\\": 2029.8766889777469\\n            },\\n            \\\"table_id\\\": \\\"305\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:45:54.283Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1929.672223672114,\\n                    \\\"y\\\": 2029.8766889777469\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:46:49.301Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"97f659ab-7a2f-471a-ad33-d8caed1ebae8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"305-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1879.672223672114,\\n                        \\\"y\\\": 2104.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.301Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"0923bc69-dc7f-4a8a-b8cc-199fb272a0b6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"305-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1879.672223672114,\\n                        \\\"y\\\": 2079.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.301Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"26aba67d-535e-4579-950f-b30cb66a99c5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"305-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1879.672223672114,\\n                        \\\"y\\\": 2054.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.301Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"a020b7fd-08b9-459b-92e8-2fc5b48176c8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"305-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1879.672223672114,\\n                        \\\"y\\\": 2029.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.301Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"fe57e4fa-2ca9-4e29-b6b5-85c5edc7e41f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"305-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1879.672223672114,\\n                        \\\"y\\\": 2004.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.301Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"d8c6a8c4-cbd6-4445-935d-bfcb6cf95a5e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"305-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1879.672223672114,\\n                        \\\"y\\\": 1979.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.301Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"a9270259-e90a-4884-8c14-db3b668e96ba\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"305-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1879.672223672114,\\n                        \\\"y\\\": 1954.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.301Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"b4b8e191-7fa0-4efd-b9d5-6c262b26dc6a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"305-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1979.672223672114,\\n                        \\\"y\\\": 2104.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.301Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"d9b285e9-b96d-4638-80d2-04519572bb21\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"305-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1979.672223672114,\\n                        \\\"y\\\": 2079.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.301Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"d1eee803-7818-4490-9fab-8c193420969a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"305-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1979.672223672114,\\n                        \\\"y\\\": 2054.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.301Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"6caa00fc-5299-4ddf-a5b4-ee49549acd8f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"305-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1979.672223672114,\\n                        \\\"y\\\": 2029.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.301Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"ff210c40-11b8-4eac-9bca-dbaf3abdf1d2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"305-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1979.672223672114,\\n                        \\\"y\\\": 2004.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.301Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"904de447-7eea-46b5-ab3b-6f318a204209\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"305-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1979.672223672114,\\n                        \\\"y\\\": 1979.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.301Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"d16547ae-b44d-4ae0-8172-4774528254ca\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"305-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1979.672223672114,\\n                        \\\"y\\\": 1954.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.301Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"09fc5747-aaf5-4aa5-8d54-d5293366bb71\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2067.809657153809,\\n                \\\"y\\\": 2029.8766889777469\\n            },\\n            \\\"table_id\\\": \\\"306\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:45:54.808Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2067.809657153809,\\n                    \\\"y\\\": 2029.8766889777469\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:46:49.306Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"a1855d1f-2985-4d55-b7a2-bd458ff672d6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"306-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2017.809657153809,\\n                        \\\"y\\\": 2104.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.808Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.306Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"9169066b-0640-4bce-94b1-b540d77147f2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"306-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2017.809657153809,\\n                        \\\"y\\\": 2079.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.808Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.306Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"8efa8c48-8765-4c5e-b6c5-bdfa7bb259ba\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"306-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2017.809657153809,\\n                        \\\"y\\\": 2054.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.808Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.306Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"e9b5190b-e583-471a-b308-9475c02feb21\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"306-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2017.809657153809,\\n                        \\\"y\\\": 2029.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.808Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.306Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"3bbf6b89-e40a-48f8-8912-bf215d009c8a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"306-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2017.809657153809,\\n                        \\\"y\\\": 2004.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.808Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.306Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"c07471be-2c84-4634-9490-e0eaf8a000e3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"306-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2017.809657153809,\\n                        \\\"y\\\": 1979.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.808Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.306Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"b52c774e-7df1-407c-aaab-69f344f274cb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"306-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2017.809657153809,\\n                        \\\"y\\\": 1954.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.808Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.306Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"4c3414c3-cbef-4f0e-b3df-6a99a83e9223\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"306-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2117.809657153809,\\n                        \\\"y\\\": 2104.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.808Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.306Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"f0d02c67-0e2a-4471-93c6-125920347bb5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"306-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2117.809657153809,\\n                        \\\"y\\\": 2079.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.808Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.306Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"e4b4ecfb-bba7-4dca-8b04-1a190fbc7467\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"306-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2117.809657153809,\\n                        \\\"y\\\": 2054.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.808Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.306Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"397548bf-ef8b-4b5f-b81e-baf7a8d507e4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"306-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2117.809657153809,\\n                        \\\"y\\\": 2029.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.808Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.306Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"20f52512-37c1-4918-ad93-7d86a0fb2f10\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"306-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2117.809657153809,\\n                        \\\"y\\\": 2004.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.808Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.306Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"f671376b-0bc5-41f5-99e1-51a53f369f0c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"306-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2117.809657153809,\\n                        \\\"y\\\": 1979.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.808Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.306Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"ffb44206-a5de-4311-9b1b-270565d7c5d2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"306-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2117.809657153809,\\n                        \\\"y\\\": 1954.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:54.808Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.306Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"7b51099b-e984-4e30-bb67-cade8990914d\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2205.9470906355036,\\n                \\\"y\\\": 2029.8766889777469\\n            },\\n            \\\"table_id\\\": \\\"307\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:45:55.700Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2205.9470906355036,\\n                    \\\"y\\\": 2029.8766889777469\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:46:49.312Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"1c6dd41f-9cc6-43a4-9f44-4adde726a27a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"307-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2155.9470906355036,\\n                        \\\"y\\\": 2104.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:55.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.312Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"a8e271e9-b5bd-4605-8359-fe71cb3481e5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"307-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2155.9470906355036,\\n                        \\\"y\\\": 2079.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:55.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.312Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"2c3d68d1-e33c-4b84-a493-3dc5403d6a0d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"307-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2155.9470906355036,\\n                        \\\"y\\\": 2054.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:55.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.312Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"20df59ae-5489-4e19-8459-b16078190607\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"307-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2155.9470906355036,\\n                        \\\"y\\\": 2029.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:55.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.312Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"8c1b3bd3-2df4-4061-b52e-eafcb46c01d0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"307-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2155.9470906355036,\\n                        \\\"y\\\": 2004.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:55.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.312Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"42fe6c3a-f75d-4d41-ae4a-1781e959d2d4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"307-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2155.9470906355036,\\n                        \\\"y\\\": 1979.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:55.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.312Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"a8bce1c3-b770-48cd-bb7c-5791c59576d6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"307-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2155.9470906355036,\\n                        \\\"y\\\": 1954.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:55.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.312Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"da434b4a-1759-4113-a2f0-6b14eea46479\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"307-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2255.9470906355036,\\n                        \\\"y\\\": 2104.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:55.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.312Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"e4f35c19-c319-4c7f-92e5-162f72fb7393\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"307-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2255.9470906355036,\\n                        \\\"y\\\": 2079.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:55.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.312Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"bd21efb4-f73d-47c8-9086-fd6150f9efe9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"307-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2255.9470906355036,\\n                        \\\"y\\\": 2054.8766889777467\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:55.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.312Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"656ce1cd-e3ce-40ac-9300-fa4c64b31a1d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"307-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2255.9470906355036,\\n                        \\\"y\\\": 2029.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:55.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.312Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"f4035764-9f6a-4382-8784-d090485541fd\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"307-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2255.9470906355036,\\n                        \\\"y\\\": 2004.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:55.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.312Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"03dfd5ac-f0bf-4cc6-95a3-04e9c79d0c33\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"307-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2255.9470906355036,\\n                        \\\"y\\\": 1979.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:55.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.312Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"dc02b323-f23d-4adc-ab02-1e0eb8b9f743\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"307-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2255.9470906355036,\\n                        \\\"y\\\": 1954.8766889777469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:55.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:46:49.312Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"8c28f533-628d-46d1-9ed1-cacee0d7058e\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1445.889596369409,\\n                \\\"y\\\": 2328.2121816250506\\n            },\\n            \\\"table_id\\\": \\\"308\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:45:58.853Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1435.889596369409,\\n                    \\\"y\\\": 2318.2121816250506\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"6b9c6ca2-aca5-4e8a-93d8-653da7d6273d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"308-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1385.889596369409,\\n                        \\\"y\\\": 2389.6407530536217\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:58.853Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"7706d1d5-46dd-4937-a456-4b9de87d3f95\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"308-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1385.889596369409,\\n                        \\\"y\\\": 2361.069324482193\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:58.853Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"d40a2878-82b1-40d8-ba51-77d932acd5be\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"308-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1385.889596369409,\\n                        \\\"y\\\": 2332.497895910765\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:58.853Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"155c40ee-3e4f-44aa-b15f-c3a810931d38\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"308-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1385.889596369409,\\n                        \\\"y\\\": 2303.9264673393363\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:58.853Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"01b646f5-95fa-4d77-b6b7-a6ea7c66e738\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"308-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1385.889596369409,\\n                        \\\"y\\\": 2275.355038767908\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:58.853Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"737d949f-83d6-4434-884b-5f50b2a8288f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"308-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1385.889596369409,\\n                        \\\"y\\\": 2246.783610196479\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:58.853Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"9ace6ca4-79ca-4dcd-8aad-3894e69d1e96\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"308-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1485.889596369409,\\n                        \\\"y\\\": 2389.6407530536217\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:58.853Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"dff6d175-992e-4ae6-877d-2e21d18ffb04\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"308-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1485.889596369409,\\n                        \\\"y\\\": 2361.069324482193\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:58.853Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"2fb3f63d-b91b-495f-9a0b-b322c327c7cd\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"308-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1485.889596369409,\\n                        \\\"y\\\": 2332.497895910765\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:58.853Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"3ae34f39-11cc-4450-a46b-ba58d85ae38a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"308-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1485.889596369409,\\n                        \\\"y\\\": 2303.9264673393363\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:58.853Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"ec3075f7-6a63-4395-a352-3954715575df\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"308-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1485.889596369409,\\n                        \\\"y\\\": 2275.355038767908\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:58.853Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"c2b747e7-93cd-4a03-9066-ed71c5a2d71f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"308-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1485.889596369409,\\n                        \\\"y\\\": 2246.783610196479\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:58.853Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"60473d1b-bccd-4766-83e1-b730eeeb744c\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1618.712193279914,\\n                \\\"y\\\": 2328.2121816250506\\n            },\\n            \\\"table_id\\\": \\\"309\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:45:59.640Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1608.712193279914,\\n                    \\\"y\\\": 2318.2121816250506\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"b0284bad-ca35-4dae-9a50-41a534ee0095\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"309-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1558.712193279914,\\n                        \\\"y\\\": 2389.640753053622\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:59.640Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"29fdeec8-dfeb-4edd-9018-e319918feda0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"309-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1558.712193279914,\\n                        \\\"y\\\": 2361.069324482193\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:59.640Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"aaac90f7-e538-4621-82a9-1ff9a4bb228d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"309-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1558.712193279914,\\n                        \\\"y\\\": 2332.497895910765\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:59.640Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"d2ec8fc9-5609-4995-9c7f-22faa5e6259d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"309-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1558.712193279914,\\n                        \\\"y\\\": 2303.9264673393363\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:59.640Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"b4c0a5a6-6589-4af7-8e9c-3f0f3a120723\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"309-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1558.712193279914,\\n                        \\\"y\\\": 2275.355038767908\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:59.640Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"f822c546-5a74-4cc8-a98a-84efded96f91\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"309-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1558.712193279914,\\n                        \\\"y\\\": 2246.783610196479\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:59.640Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"2f8b3fce-85d6-4e48-8664-09909fbed576\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"309-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1658.712193279914,\\n                        \\\"y\\\": 2389.640753053622\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:59.640Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"1654bcc1-38a8-4701-92df-14f0c10a2e44\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"309-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1658.712193279914,\\n                        \\\"y\\\": 2361.069324482193\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:59.640Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"290f32fc-6ef4-42fb-b27d-8bbc24d97516\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"309-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1658.712193279914,\\n                        \\\"y\\\": 2332.497895910765\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:59.640Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"93268c83-2943-4f67-bb2d-c869726a196b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"309-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1658.712193279914,\\n                        \\\"y\\\": 2303.9264673393363\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:59.640Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"0d32704b-4a17-4467-a9b3-cdebca7b002d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"309-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1658.712193279914,\\n                        \\\"y\\\": 2275.355038767908\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:59.640Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"93fe2cf7-4b43-4f79-8005-d19ca4ff5216\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"309-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1658.712193279914,\\n                        \\\"y\\\": 2246.783610196479\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:45:59.640Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"717a6d04-3ba6-435e-bd19-c2a36d79aae8\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1791.5347901904188,\\n                \\\"y\\\": 2324.5928602237836\\n            },\\n            \\\"table_id\\\": \\\"310\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:46:00.298Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1781.5347901904188,\\n                    \\\"y\\\": 2314.5928602237836\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"858534d4-32eb-4d70-b47e-9b95e18fa9a3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"310-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1731.5347901904188,\\n                        \\\"y\\\": 2386.021431652355\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.298Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"b1c23c58-ae13-4520-baa5-6490af412a5e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"310-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1731.5347901904188,\\n                        \\\"y\\\": 2357.4500030809263\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.298Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"1d9c9dc2-aadc-440f-85c3-1d869b939dac\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"310-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1731.5347901904188,\\n                        \\\"y\\\": 2328.878574509498\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.298Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"092582f6-14d3-4d21-a68a-bd3ed8d5b29a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"310-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1731.5347901904188,\\n                        \\\"y\\\": 2300.3071459380694\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.298Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"6fcaf205-fb5c-400b-8951-2b5bb512bdb8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"310-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1731.5347901904188,\\n                        \\\"y\\\": 2271.735717366641\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.298Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"6c9761f5-4547-45f3-82fe-cf9c8afe18b5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"310-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1731.5347901904188,\\n                        \\\"y\\\": 2243.164288795212\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.298Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"9c8e6dce-a3bb-415d-93be-b7069f3a04af\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"310-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1831.5347901904188,\\n                        \\\"y\\\": 2386.021431652355\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.298Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"c226a4d7-01c9-44f8-8224-6396750fc73e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"310-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1831.5347901904188,\\n                        \\\"y\\\": 2357.4500030809263\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.298Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"df85889a-fef0-466a-8692-019d82f3af1d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"310-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1831.5347901904188,\\n                        \\\"y\\\": 2328.878574509498\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.298Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"6406e467-6ac8-4e8d-bb4e-ca88437a44df\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"310-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1831.5347901904188,\\n                        \\\"y\\\": 2300.3071459380694\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.298Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"ecc4db6f-86f4-41f2-8db9-60d8bdff8b8c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"310-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1831.5347901904188,\\n                        \\\"y\\\": 2271.735717366641\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.298Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"d77ef0af-7c35-4d6d-90f2-7728628cff99\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"310-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1831.5347901904188,\\n                        \\\"y\\\": 2243.164288795212\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.298Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"99e03e42-fdc3-48e5-9f75-6a1545b1c700\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1964.3573871009237,\\n                \\\"y\\\": 2324.5928602237836\\n            },\\n            \\\"table_id\\\": \\\"311\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:46:00.732Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1954.3573871009237,\\n                    \\\"y\\\": 2314.5928602237836\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"8b648293-a2d9-448b-a3c9-ba91300ef020\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"311-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1904.3573871009237,\\n                        \\\"y\\\": 2386.021431652355\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.732Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"6ca8542f-e6ed-40e0-8e0c-f9ba3e7fcfee\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"311-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1904.3573871009237,\\n                        \\\"y\\\": 2357.4500030809263\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.732Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"10bc0edd-bfca-4c6d-82bd-a46be12d43ac\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"311-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1904.3573871009237,\\n                        \\\"y\\\": 2328.878574509498\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.732Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"b84352a2-6414-4971-b8f1-08bfb4803555\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"311-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1904.3573871009237,\\n                        \\\"y\\\": 2300.3071459380694\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.732Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"82c47bbf-3df1-4db6-93d1-e193211e75ca\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"311-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1904.3573871009237,\\n                        \\\"y\\\": 2271.735717366641\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.732Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"2f55cbd5-28af-44a2-8ba1-a47cce5e9257\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"311-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1904.3573871009237,\\n                        \\\"y\\\": 2243.164288795212\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.732Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"6f56bd6d-124b-4371-a10f-f3a47ba7f288\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"311-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2004.3573871009237,\\n                        \\\"y\\\": 2386.021431652355\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.732Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"0c4bf3a6-a73f-4939-8db3-1b7601a343a6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"311-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2004.3573871009237,\\n                        \\\"y\\\": 2357.4500030809263\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.732Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"2313eb0f-8455-45e5-825a-0dc61c43ddeb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"311-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2004.3573871009237,\\n                        \\\"y\\\": 2328.878574509498\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.732Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"f023b854-9434-4f32-9569-6a41d0bd7d7e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"311-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2004.3573871009237,\\n                        \\\"y\\\": 2300.3071459380694\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.732Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"fcc3cd60-7aeb-421c-9b0e-3f2e6ab304bc\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"311-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2004.3573871009237,\\n                        \\\"y\\\": 2271.735717366641\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.732Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"84aa9ab6-e252-40d9-be50-6f61d6c170f5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"311-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2004.3573871009237,\\n                        \\\"y\\\": 2243.164288795212\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:00.732Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"1f1a7c49-75f6-4eee-8ef9-1daaf91f2b66\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2137.1799840114286,\\n                \\\"y\\\": 2324.5928602237836\\n            },\\n            \\\"table_id\\\": \\\"312\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:46:01.593Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2127.1799840114286,\\n                    \\\"y\\\": 2314.5928602237836\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"d109c7f0-5729-4c29-a1f7-ab308697cf0a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"312-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2077.1799840114286,\\n                        \\\"y\\\": 2386.021431652355\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:01.593Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"68b2eb32-a5c9-4cc6-b18e-2923412dead3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"312-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2077.1799840114286,\\n                        \\\"y\\\": 2357.4500030809263\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:01.593Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"21b6dbba-60b4-4534-9b3d-c223f2176e33\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"312-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2077.1799840114286,\\n                        \\\"y\\\": 2328.878574509498\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:01.593Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"ae307b78-86f5-4e71-b43d-5b81de729f8e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"312-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2077.1799840114286,\\n                        \\\"y\\\": 2300.3071459380694\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:01.593Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"050697d8-a0b2-48b2-b2d2-193ef2887c74\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"312-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2077.1799840114286,\\n                        \\\"y\\\": 2271.735717366641\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:01.593Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"b0bc8bcc-6363-4a8b-94c9-4bb643d5f9ff\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"312-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2077.1799840114286,\\n                        \\\"y\\\": 2243.164288795212\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:01.593Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"210d6560-1e73-4d0a-939f-837c872543c6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"312-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2177.1799840114286,\\n                        \\\"y\\\": 2386.021431652355\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:01.593Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"398d2012-b76e-4811-a07b-ac727f0bafcf\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"312-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2177.1799840114286,\\n                        \\\"y\\\": 2357.4500030809263\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:01.593Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"43bad8a4-65ee-404c-8fe2-a814ece96d75\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"312-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2177.1799840114286,\\n                        \\\"y\\\": 2328.878574509498\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:01.593Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"f9800421-e4a1-46f6-b0fe-25748b5d5c86\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"312-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2177.1799840114286,\\n                        \\\"y\\\": 2300.3071459380694\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:01.593Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"f717a6c8-43ce-4d98-bc5d-514431b6e51e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"312-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2177.1799840114286,\\n                        \\\"y\\\": 2271.735717366641\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:01.593Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"45719b8d-b695-4880-942c-3301f27c25e6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"312-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2177.1799840114286,\\n                        \\\"y\\\": 2243.164288795212\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:46:01.593Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:47:10.120Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"82cfff60-02fa-4ac4-a22d-5620a2d22777\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 3287.0263674183902,\\n                \\\"y\\\": 1074.4016345511038\\n            },\\n            \\\"table_id\\\": \\\"501\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -135\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:48:32.172Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 3287.0263674183902,\\n                    \\\"y\\\": 1074.4016345511038\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:49:51.443Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"4979d82a-24dc-4b9d-b871-3727325c62fb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"501-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3304.7040369480537,\\n                        \\\"y\\\": 1162.7899821994224\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:32.172Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.443Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"ab64b069-a5bb-4ae2-8642-3db92d193b20\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"501-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3287.0263674183902,\\n                        \\\"y\\\": 1145.1123126697587\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:32.172Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.443Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"38b79cfc-7940-42dd-b1bc-83c2c2f52494\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"501-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3269.3486978887263,\\n                        \\\"y\\\": 1127.434643140095\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:32.172Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.443Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"d25277a3-7f0d-4e77-a147-c6e0159eadb1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"501-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3251.671028359063,\\n                        \\\"y\\\": 1109.7569736104313\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:32.172Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.443Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"934830ed-fb6d-445c-879f-b9ffbb91c8d6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"501-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3233.9933588293993,\\n                        \\\"y\\\": 1092.0793040807675\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:32.172Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.443Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"e4db58fb-b815-4577-a988-4663a5c18a4e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"501-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3216.3156892997354,\\n                        \\\"y\\\": 1074.4016345511038\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:32.172Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.443Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"7b96569d-520f-4886-bbc9-9ffd2043feb2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"501-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3198.638019770072,\\n                        \\\"y\\\": 1056.72396502144\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:32.172Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.443Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"790a4599-d5fc-40b6-81a2-75c826f35dd3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"501-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3375.4147150667086,\\n                        \\\"y\\\": 1092.0793040807675\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:32.172Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.443Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"a004e6c7-5563-4b37-8119-294709c87c53\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"501-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3357.737045537045,\\n                        \\\"y\\\": 1074.4016345511038\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:32.172Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.443Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"42df45d2-8f9d-4cf7-ae58-f398db815fe4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"501-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3340.059376007381,\\n                        \\\"y\\\": 1056.72396502144\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:32.172Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.443Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"a0088411-6ee1-4749-bca1-0c29819ce59e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"501-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3322.3817064777177,\\n                        \\\"y\\\": 1039.0462954917764\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:32.172Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.443Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"dffacab1-ca7b-41a5-9d14-51594369998d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"501-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3304.704036948054,\\n                        \\\"y\\\": 1021.3686259621128\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:32.172Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.443Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"83d9984b-2fb9-4aff-b502-e3a0c3fa0df0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"501-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3287.0263674183902,\\n                        \\\"y\\\": 1003.6909564324492\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:32.172Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.443Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"647d254c-8ce2-4dbd-b469-dc44afc4afb8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"501-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3269.3486978887267,\\n                        \\\"y\\\": 986.0132869027856\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:32.172Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.443Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"c4d2fd83-7f3a-4537-a88d-43230a38bfe2\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 3287.0263674183902,\\n                \\\"y\\\": 1257.0102248686223\\n            },\\n            \\\"table_id\\\": \\\"502\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -135\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:48:37.506Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 3287.0263674183902,\\n                    \\\"y\\\": 1257.0102248686223\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:49:51.449Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"aae03e7c-6903-4498-ab2f-2cba66a20e16\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"502-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3304.7040369480537,\\n                        \\\"y\\\": 1345.398572516941\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.506Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.449Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"6356f55c-e79a-4db9-96b9-168a95fb1513\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"502-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3287.0263674183902,\\n                        \\\"y\\\": 1327.7209029872772\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.506Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.449Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"9fbf1e0c-13f3-4257-971d-96603da59a7e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"502-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3269.3486978887263,\\n                        \\\"y\\\": 1310.0432334576135\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.506Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.449Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"d90c3f15-9311-4dea-a471-c7852815532c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"502-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3251.671028359063,\\n                        \\\"y\\\": 1292.3655639279498\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.506Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.449Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"aad4d6f1-2b75-45bd-b789-f474f63baeea\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"502-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3233.9933588293993,\\n                        \\\"y\\\": 1274.687894398286\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.506Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.449Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"0dedd08e-9fec-4aad-8be1-3c32592fce33\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"502-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3216.3156892997354,\\n                        \\\"y\\\": 1257.0102248686223\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.506Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.449Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"734ac443-d129-41fa-a71b-2e05fbff685c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"502-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3198.638019770072,\\n                        \\\"y\\\": 1239.3325553389586\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.506Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.449Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"7721fa98-c515-4ac2-b5b5-9061f6d0a276\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"502-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3375.4147150667086,\\n                        \\\"y\\\": 1274.687894398286\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.506Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.449Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"f7340886-f02a-47c4-9e83-76846c35a368\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"502-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3357.737045537045,\\n                        \\\"y\\\": 1257.0102248686223\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.506Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.449Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"574729bd-5de4-4c45-8ae9-bcc3cefb5778\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"502-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3340.059376007381,\\n                        \\\"y\\\": 1239.3325553389586\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.506Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.449Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"5716d6b8-6b81-4ee1-8e3b-61ca74f76c80\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"502-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3322.3817064777177,\\n                        \\\"y\\\": 1221.654885809295\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.506Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.449Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"6528f90e-94d4-462f-9d2d-809deec2b26f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"502-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3304.704036948054,\\n                        \\\"y\\\": 1203.9772162796312\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.506Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.449Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"1456dffd-78cd-45d6-9bb3-93ddc5ffad6b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"502-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3287.0263674183902,\\n                        \\\"y\\\": 1186.2995467499677\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.506Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.449Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"f73dff57-17ce-47bf-907e-58a7c0e0fcb8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"502-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3269.3486978887267,\\n                        \\\"y\\\": 1168.6218772203038\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.506Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.449Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"7d16a411-7148-4b96-90e2-fe07e66384eb\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 3531.5539624987455,\\n                \\\"y\\\": 1254.9112755546278\\n            },\\n            \\\"table_id\\\": \\\"503\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -135\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:48:37.983Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 3531.5539624987455,\\n                    \\\"y\\\": 1254.9112755546278\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:49:51.455Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"fa5dbd29-00fe-4613-af09-788d8479e70c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"503-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3549.231632028409,\\n                        \\\"y\\\": 1343.2996232029463\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.983Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.455Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"932aa8d3-cdc1-4e92-acbc-51aab4300846\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"503-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3531.5539624987455,\\n                        \\\"y\\\": 1325.6219536732826\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.983Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.455Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"53dea116-2bf8-4b66-a5f6-57a6c805d6fa\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"503-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3513.8762929690815,\\n                        \\\"y\\\": 1307.944284143619\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.983Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.455Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"65097abe-6e32-4e39-94c5-839886748755\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"503-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3496.198623439418,\\n                        \\\"y\\\": 1290.2666146139552\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.983Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.455Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"4dcbf9db-57b6-43c7-8d14-debe61ace32b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"503-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3478.5209539097546,\\n                        \\\"y\\\": 1272.5889450842917\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.983Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.455Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"08a77fc0-3cba-40d9-a36f-1056e3b9a769\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"503-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3460.8432843800906,\\n                        \\\"y\\\": 1254.9112755546278\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.983Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.455Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"3b8e7adf-89d9-4314-b281-857169207860\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"503-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3443.165614850427,\\n                        \\\"y\\\": 1237.233606024964\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.983Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.455Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"29a49250-7815-4362-afbf-9375df2c5cca\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"503-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3619.942310147064,\\n                        \\\"y\\\": 1272.5889450842917\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.983Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.455Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"0813cb4a-2303-47d1-a20b-c9845342db0f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"503-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3602.2646406174003,\\n                        \\\"y\\\": 1254.9112755546278\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.983Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.455Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"f12348de-665b-4654-9d63-4fb7928816a1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"503-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3584.5869710877364,\\n                        \\\"y\\\": 1237.233606024964\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.983Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.455Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"6b63d9c3-81b3-4cfc-be8d-441503a9b95e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"503-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3566.909301558073,\\n                        \\\"y\\\": 1219.5559364953003\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.983Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.455Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"b7ed60c3-e688-42f0-892c-69bec4a70340\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"503-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3549.2316320284094,\\n                        \\\"y\\\": 1201.8782669656366\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.983Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.455Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"c6878d46-0e27-4de3-a54d-710850be0bb1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"503-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3531.5539624987455,\\n                        \\\"y\\\": 1184.200597435973\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.983Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.455Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"3b82cf31-16cc-4242-b7db-ec7a27183265\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"503-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3513.876292969082,\\n                        \\\"y\\\": 1166.5229279063092\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:37.983Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.455Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"cb110bdc-acdb-46c4-b52d-84d9783ae9fd\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 3287.0263674183902,\\n                \\\"y\\\": 1439.6188151861409\\n            },\\n            \\\"table_id\\\": \\\"504\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -135\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:48:38.484Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 3287.0263674183902,\\n                    \\\"y\\\": 1459.6188151861409\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:50:07.199Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"d9d34043-56e0-4253-9852-1f1c0d3fa1c1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"504-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3304.7040369480537,\\n                        \\\"y\\\": 1548.0071628344597\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.484Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:07.199Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"ac2355cf-888d-4b37-a37e-b62a524220bf\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"504-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3287.0263674183902,\\n                        \\\"y\\\": 1530.3294933047955\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.484Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:07.199Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"2aad5480-9782-415a-9078-6d91b3d86029\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"504-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3269.3486978887263,\\n                        \\\"y\\\": 1512.651823775132\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.484Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:07.199Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"f7a87923-1d8f-4af7-acfc-67ceef698719\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"504-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3251.671028359063,\\n                        \\\"y\\\": 1494.9741542454683\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.484Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:07.199Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"f2538a44-8c67-41fa-a692-ab5aee2de403\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"504-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3233.9933588293993,\\n                        \\\"y\\\": 1477.2964847158046\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.484Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:07.199Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"bec1d053-3dad-41f0-a266-57fd8e77bc50\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"504-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3216.3156892997354,\\n                        \\\"y\\\": 1459.6188151861409\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.484Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:07.199Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"23d1235d-404d-4fe8-a87f-8b3256687ccf\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"504-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3198.638019770072,\\n                        \\\"y\\\": 1441.9411456564771\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.484Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:07.199Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"2353f891-d1b7-45a0-a34f-331453202c6f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"504-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3375.4147150667086,\\n                        \\\"y\\\": 1477.2964847158046\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.484Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:07.199Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"d6979b9d-616d-4c25-9ba9-270db57e974f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"504-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3357.737045537045,\\n                        \\\"y\\\": 1459.6188151861409\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.484Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:07.199Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"411673ab-7d6d-4488-857e-d055940ed066\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"504-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3340.059376007381,\\n                        \\\"y\\\": 1441.9411456564771\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.484Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:07.199Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"73f1359a-4d34-446a-80ee-f01eed0b8621\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"504-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3322.3817064777177,\\n                        \\\"y\\\": 1424.2634761268134\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.484Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:07.199Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"2b7b8026-dbbc-4aba-98da-3408f2c90b70\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"504-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3304.704036948054,\\n                        \\\"y\\\": 1406.5858065971497\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.484Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:07.199Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"b0f58962-c373-45aa-bd80-b47e690e7e4a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"504-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3287.0263674183902,\\n                        \\\"y\\\": 1388.908137067486\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.484Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:07.199Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"3fa28231-6f19-46e7-96ca-59a448ceb7fa\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"504-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3269.3486978887267,\\n                        \\\"y\\\": 1371.2304675378225\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.484Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:07.199Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"dd3fa393-3fc3-40dc-bd4c-67cbf787357b\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 3531.5539624987455,\\n                \\\"y\\\": 1448.0146124421185\\n            },\\n            \\\"table_id\\\": \\\"505\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -135\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:48:38.901Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 3531.5539624987455,\\n                    \\\"y\\\": 1448.0146124421185\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:49:51.469Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"34bda770-ec30-4421-ac82-8ca42e704bb6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"505-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3549.231632028409,\\n                        \\\"y\\\": 1536.402960090437\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.901Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.469Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"37212fe1-7b2d-47e1-9282-2360a4ef0565\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"505-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3531.5539624987455,\\n                        \\\"y\\\": 1518.7252905607734\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.901Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.469Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"d92b6f63-b7ee-47ab-a043-2bc49dd5528b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"505-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3513.8762929690815,\\n                        \\\"y\\\": 1501.0476210311097\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.901Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.469Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"95c129b6-f1f2-4e19-99d9-20ed4f9bb405\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"505-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3496.198623439418,\\n                        \\\"y\\\": 1483.369951501446\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.901Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.469Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"876ad324-34e8-4f34-b811-4c3ab076ed78\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"505-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3478.5209539097546,\\n                        \\\"y\\\": 1465.6922819717822\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.901Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.469Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"7896288c-fc2c-4de8-8f40-c9cd5c254c17\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"505-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3460.8432843800906,\\n                        \\\"y\\\": 1448.0146124421185\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.901Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.469Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"71473217-4d1e-410a-be98-b95330d0fc6c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"505-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3443.165614850427,\\n                        \\\"y\\\": 1430.3369429124548\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.901Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.469Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"0fe5317f-6546-4e67-a785-3a5500fddc71\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"505-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3619.942310147064,\\n                        \\\"y\\\": 1465.6922819717822\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.901Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.469Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"ddeafd69-4baa-4970-96b4-1a34b71c2e2a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"505-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3602.2646406174003,\\n                        \\\"y\\\": 1448.0146124421185\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.901Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.469Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"29224f05-fe58-4cf0-af46-43c7dfbc215e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"505-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3584.5869710877364,\\n                        \\\"y\\\": 1430.3369429124548\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.901Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.469Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"5b60269a-a5aa-4c96-8ab3-7081d0cb4623\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"505-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3566.909301558073,\\n                        \\\"y\\\": 1412.659273382791\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.901Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.469Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"6b3de74c-4dfa-4f48-a68d-01f9ffaa5de1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"505-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3549.2316320284094,\\n                        \\\"y\\\": 1394.9816038531274\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.901Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.469Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"bf7f61aa-5be9-4249-9660-7e7b9723a685\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"505-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3531.5539624987455,\\n                        \\\"y\\\": 1377.3039343234636\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.901Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.469Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"db1eaa08-5f39-4d71-a4fc-8d8f2962231f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"505-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3513.876292969082,\\n                        \\\"y\\\": 1359.6262647938\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:38.901Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.469Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"5cd2190e-aab4-481a-94c2-3bb7227fd52b\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 3287.0263674183902,\\n                \\\"y\\\": 1622.2274055036594\\n            },\\n            \\\"table_id\\\": \\\"506\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -135\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:48:39.314Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 3287.0263674183902,\\n                    \\\"y\\\": 1642.2274055036594\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:50:05.016Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"70490910-3ac5-49d7-ba55-f1d559969692\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"506-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3304.7040369480537,\\n                        \\\"y\\\": 1730.615753151978\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.314Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:05.016Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"a06bc55d-c010-448c-8f9f-64ea5faac3a6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"506-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3287.0263674183902,\\n                        \\\"y\\\": 1712.9380836223145\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.314Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:05.016Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"94054148-e19e-43e6-b29a-8612f301cd12\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"506-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3269.3486978887263,\\n                        \\\"y\\\": 1695.2604140926503\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.314Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:05.016Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"46700758-6e06-4243-bd1f-8d70c13e2082\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"506-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3251.671028359063,\\n                        \\\"y\\\": 1677.5827445629868\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.314Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:05.016Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"4b1deb03-ba0c-49c0-9565-aaf3fc9593a5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"506-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3233.9933588293993,\\n                        \\\"y\\\": 1659.905075033323\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.314Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:05.016Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"880c1c1c-3de8-4c7c-b88a-7f40daa57626\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"506-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3216.3156892997354,\\n                        \\\"y\\\": 1642.2274055036594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.314Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:05.016Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"f9bd3787-f91b-41a1-8463-1e217ad71dc6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"506-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3198.638019770072,\\n                        \\\"y\\\": 1624.5497359739957\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.314Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:05.016Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"2074e706-efd9-4510-b941-b5b69ee5c8ef\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"506-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3375.4147150667086,\\n                        \\\"y\\\": 1659.905075033323\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.314Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:05.016Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"e81b3523-314c-4ff4-8529-a3870076fcd7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"506-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3357.737045537045,\\n                        \\\"y\\\": 1642.2274055036594\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.314Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:05.016Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"5caf7fc3-e94b-454a-95a5-46d78e09b969\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"506-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3340.059376007381,\\n                        \\\"y\\\": 1624.5497359739957\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.314Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:05.016Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"854b68eb-9b4c-44b6-80d0-d82e65ffb2c9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"506-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3322.3817064777177,\\n                        \\\"y\\\": 1606.872066444332\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.314Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:05.016Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"77fdd49e-f2f9-45ee-878f-efdde9e91fa7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"506-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3304.704036948054,\\n                        \\\"y\\\": 1589.1943969146682\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.314Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:05.016Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"966ad01b-4164-4f98-a145-3ac2988a13fa\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"506-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3287.0263674183902,\\n                        \\\"y\\\": 1571.5167273850043\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.314Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:05.016Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"6090463e-711a-441c-ba50-aa29a9af628b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"506-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3269.3486978887267,\\n                        \\\"y\\\": 1553.8390578553408\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.314Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:05.016Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"9dadd413-aa54-4c19-83fe-28263c3c96d7\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 3531.5539624987455,\\n                \\\"y\\\": 1641.1179493296092\\n            },\\n            \\\"table_id\\\": \\\"507\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -135\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:48:39.700Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 3531.5539624987455,\\n                    \\\"y\\\": 1641.1179493296092\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:49:51.479Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"36de5ffa-aca6-49ce-82d6-58e4685a22d1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"507-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3549.231632028409,\\n                        \\\"y\\\": 1729.5062969779278\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.479Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"e863dd1f-9881-4c6f-b439-f92f9d13cff7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"507-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3531.5539624987455,\\n                        \\\"y\\\": 1711.828627448264\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.479Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"801110db-b0cd-45e5-9fdb-f731ced5b9ae\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"507-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3513.8762929690815,\\n                        \\\"y\\\": 1694.1509579186004\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.479Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"713ff752-dc69-4926-820d-b72c64cbc82c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"507-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3496.198623439418,\\n                        \\\"y\\\": 1676.473288388937\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.479Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"a9435074-215a-4bc4-8c25-adc4dafcfdbf\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"507-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3478.5209539097546,\\n                        \\\"y\\\": 1658.795618859273\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.479Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"4c30a75a-acb2-42c6-985e-9b17e05fd87a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"507-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3460.8432843800906,\\n                        \\\"y\\\": 1641.1179493296092\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.479Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"9e419754-4992-4d79-9cbf-eba9725951e8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"507-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3443.165614850427,\\n                        \\\"y\\\": 1623.4402797999455\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.479Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"374968ab-f99a-4286-87d3-160c84792200\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"507-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3619.942310147064,\\n                        \\\"y\\\": 1658.795618859273\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.479Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"43834920-0ea9-4304-a1ef-49f780110668\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"507-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3602.2646406174003,\\n                        \\\"y\\\": 1641.1179493296092\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.479Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"3ee48c53-f955-4eef-8b76-736dfcd16468\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"507-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3584.5869710877364,\\n                        \\\"y\\\": 1623.4402797999455\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.479Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"27200063-62b2-4639-a4c4-d2f69494ff6f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"507-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3566.909301558073,\\n                        \\\"y\\\": 1605.7626102702818\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.479Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"ea08105d-61ea-4486-a641-fb9a272adfbd\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"507-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3549.2316320284094,\\n                        \\\"y\\\": 1588.084940740618\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.479Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"567e57a1-09b6-4771-ad37-f919220154f7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"507-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3531.5539624987455,\\n                        \\\"y\\\": 1570.4072712109544\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.479Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"e0ea87b0-e79f-49e4-b3c1-72fe65a87d2b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"507-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3513.876292969082,\\n                        \\\"y\\\": 1552.729601681291\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:39.700Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:49:51.479Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"597f379b-f719-4f75-8a7f-da013f118e68\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 3287.0263674183902,\\n                \\\"y\\\": 1804.835995821178\\n            },\\n            \\\"table_id\\\": \\\"508\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -135\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:48:40.452Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 3287.0263674183902,\\n                    \\\"y\\\": 1834.835995821178\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:50:01.977Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"3254021d-7494-4403-82be-2021da7a5520\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"508-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3304.7040369480537,\\n                        \\\"y\\\": 1923.2243434694965\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:40.452Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:01.977Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"281e8832-d4f3-4471-86f9-61aa4c3b27cf\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"508-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3287.0263674183902,\\n                        \\\"y\\\": 1905.5466739398328\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:40.452Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:01.977Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"2c9ee4be-1305-4135-8c9d-986033ac2af9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"508-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3269.3486978887263,\\n                        \\\"y\\\": 1887.869004410169\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:40.452Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:01.977Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"906a0802-f017-4ed4-a136-fcc4dd12fbbe\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"508-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3251.671028359063,\\n                        \\\"y\\\": 1870.191334880505\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:40.452Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:01.977Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"d94e696c-60c7-44fc-a181-aac29ab6053a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"508-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3233.9933588293993,\\n                        \\\"y\\\": 1852.5136653508416\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:40.452Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:01.977Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"f4b75252-f73f-4b45-b9d9-a46d2b1f071e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"508-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3216.3156892997354,\\n                        \\\"y\\\": 1834.835995821178\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:40.452Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:01.977Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"cde665fe-a36d-45d0-b0c1-096613e26ee2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"508-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3198.638019770072,\\n                        \\\"y\\\": 1817.1583262915144\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:40.452Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:01.977Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"f003e195-f12e-4072-9b0c-1d7f521d6f49\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"508-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3375.4147150667086,\\n                        \\\"y\\\": 1852.5136653508416\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:40.452Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:01.977Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"6dd508ea-c411-4c34-a154-cf946eccfcf3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"508-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3357.737045537045,\\n                        \\\"y\\\": 1834.835995821178\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:40.452Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:01.977Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"8d613db6-5abd-4d59-9a98-2c3cd0a0c135\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"508-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3340.059376007381,\\n                        \\\"y\\\": 1817.1583262915144\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:40.452Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:01.977Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"1001f3bf-59d7-430e-b911-8f08f581744f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"508-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3322.3817064777177,\\n                        \\\"y\\\": 1799.4806567618505\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:40.452Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:01.977Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"96222ff3-167f-4702-9b28-cadbcb63c69d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"508-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3304.704036948054,\\n                        \\\"y\\\": 1781.8029872321868\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:40.452Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:01.977Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"c1cb782a-3e38-4932-b149-b12aada9376f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"508-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3287.0263674183902,\\n                        \\\"y\\\": 1764.125317702523\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:40.452Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:01.977Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"587ff35a-cb42-409f-91b4-4c95298eedbf\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"508-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3269.3486978887267,\\n                        \\\"y\\\": 1746.447648172859\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:40.452Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:01.977Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"c352c07f-94d1-4a79-bde9-a24ed17e10b0\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 3287.0263674183902,\\n                \\\"y\\\": 1987.4445861386964\\n            },\\n            \\\"table_id\\\": \\\"509\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -135\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:48:41.000Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 3287.0263674183902,\\n                    \\\"y\\\": 2037.4445861386964\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:50:00.418Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"68931932-8eed-459d-afd0-fa598f15833c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"509-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3304.7040369480537,\\n                        \\\"y\\\": 2125.832933787015\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:41.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:00.418Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"5ed9fec5-d040-4ef5-bba2-210f02ba9ce3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"509-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3287.0263674183902,\\n                        \\\"y\\\": 2108.155264257351\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:41.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:00.418Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"44ab89a0-6082-4895-9f6f-a12739338d17\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"509-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3269.3486978887263,\\n                        \\\"y\\\": 2090.4775947276876\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:41.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:00.418Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"5c3a6c35-c399-4ef4-8d7b-35274e87a17f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"509-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3251.671028359063,\\n                        \\\"y\\\": 2072.7999251980236\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:41.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:00.418Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"9c2af2a9-a13b-41b5-92f4-e711656c554e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"509-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3233.9933588293993,\\n                        \\\"y\\\": 2055.12225566836\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:41.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:00.418Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"d2088ca7-92d6-4b35-8666-2a29a2cf5c54\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"509-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3216.3156892997354,\\n                        \\\"y\\\": 2037.4445861386964\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:41.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:00.418Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"3122c19c-5c38-4909-8286-34dbf99ce716\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"509-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3198.638019770072,\\n                        \\\"y\\\": 2019.7669166090327\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 315,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:41.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:00.418Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"a0434292-95d3-4bf3-adaa-d0128940d659\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"509-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3375.4147150667086,\\n                        \\\"y\\\": 2055.12225566836\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:41.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:00.418Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"25b74b62-531d-41bc-86a9-2a1850656a4c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"509-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3357.737045537045,\\n                        \\\"y\\\": 2037.4445861386964\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:41.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:00.418Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"c21947ec-e09b-46c2-b90a-fc5ff911df56\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"509-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3340.059376007381,\\n                        \\\"y\\\": 2019.7669166090327\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:41.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:00.418Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"d0593972-ad72-4433-980f-2530892168fd\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"509-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3322.3817064777177,\\n                        \\\"y\\\": 2002.089247079369\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:41.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:00.418Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"3dd9995a-4bae-4e89-81c6-fea927ef590f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"509-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3304.704036948054,\\n                        \\\"y\\\": 1984.4115775497053\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:41.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:00.418Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"7a861603-8bc1-4d19-821a-8cd1684539e0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"509-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3287.0263674183902,\\n                        \\\"y\\\": 1966.7339080200416\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:41.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:00.418Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"56401d1b-fd59-421a-9547-80d3f1dcab85\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"509-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3269.3486978887267,\\n                        \\\"y\\\": 1949.0562384903776\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 135,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:48:41.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:50:00.418Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"f563a65a-4f62-4f08-ad94-e7be8d4ad814\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2375.8061133162328,\\n                \\\"y\\\": 2038.0998663118744\\n            },\\n            \\\"table_id\\\": \\\"401\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:51:38.813Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2375.8061133162328,\\n                    \\\"y\\\": 2038.0998663118744\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:53:01.844Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"996d4344-e079-4c63-9a43-f74dbcca7df5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"401-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2325.8061133162328,\\n                        \\\"y\\\": 2113.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:38.813Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.844Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"e86ab593-b13c-4d03-af1d-bf249de4f36c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"401-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2325.8061133162328,\\n                        \\\"y\\\": 2088.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:38.813Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.844Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"f425767c-175d-434a-bbe5-506dc1cd18f1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"401-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2325.8061133162328,\\n                        \\\"y\\\": 2063.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:38.813Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.844Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"a0db49d1-177f-43e3-afa9-0a09dd216233\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"401-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2325.8061133162328,\\n                        \\\"y\\\": 2038.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:38.813Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.844Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"738f5b30-7fe0-4f59-8e5b-be7e79110a77\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"401-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2325.8061133162328,\\n                        \\\"y\\\": 2013.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:38.813Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.844Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"3131aa9a-d80f-47a9-bd56-0c8b09476993\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"401-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2325.8061133162328,\\n                        \\\"y\\\": 1988.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:38.813Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.844Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"62dbb0b9-4e7d-49b1-93df-050019167d42\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"401-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2325.8061133162328,\\n                        \\\"y\\\": 1963.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:38.813Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.844Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"b23ec860-056b-43a3-9c43-97122561edf1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"401-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2425.8061133162328,\\n                        \\\"y\\\": 2113.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:38.813Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.844Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"1619de6a-68af-493d-a13d-d91db7d4bbc8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"401-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2425.8061133162328,\\n                        \\\"y\\\": 2088.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:38.813Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.844Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"6a7754b1-185e-4622-8618-25a758d6e6e1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"401-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2425.8061133162328,\\n                        \\\"y\\\": 2063.099866311875\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:38.813Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.844Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"55174162-32f9-4fb8-80f8-737e69ee4756\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"401-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2425.8061133162328,\\n                        \\\"y\\\": 2038.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:38.813Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.844Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"a97a3507-0311-42ec-9f59-fa326677e65c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"401-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2425.8061133162328,\\n                        \\\"y\\\": 2013.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:38.813Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.844Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"2e11fb86-a0e1-4486-8898-1b7bdafa7059\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"401-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2425.8061133162328,\\n                        \\\"y\\\": 1988.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:38.813Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.844Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"62ab8572-4f82-4803-a97d-593e0da45339\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"401-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2425.8061133162328,\\n                        \\\"y\\\": 1963.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:38.813Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.844Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"9dca84c9-b19c-40f7-b60e-f8a9ff9cbef2\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2511.814583998479,\\n                \\\"y\\\": 2038.0998663118744\\n            },\\n            \\\"table_id\\\": \\\"402\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:51:39.485Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2511.814583998479,\\n                    \\\"y\\\": 2038.0998663118744\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:53:01.860Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"cca07cf3-6837-46bd-aa34-c4560c63ae6d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"402-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2461.814583998479,\\n                        \\\"y\\\": 2113.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.485Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.860Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"c1a0b909-b7ed-4e91-a77c-9b98b0c202c4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"402-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2461.814583998479,\\n                        \\\"y\\\": 2088.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.485Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.860Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"6920973f-adea-466b-b9da-3a92fcf77724\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"402-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2461.814583998479,\\n                        \\\"y\\\": 2063.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.485Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.860Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"76887c2d-a7dd-41c2-818d-729a1167f1ba\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"402-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2461.814583998479,\\n                        \\\"y\\\": 2038.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.485Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.860Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"95614a7c-4fcb-472d-bffd-66a8c3a2ea60\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"402-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2461.814583998479,\\n                        \\\"y\\\": 2013.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.485Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.860Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"dff410b4-491b-48a5-aef3-fd0427aac156\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"402-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2461.814583998479,\\n                        \\\"y\\\": 1988.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.485Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.860Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"1cc9fc57-6814-417b-9027-226492ba10ee\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"402-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2461.814583998479,\\n                        \\\"y\\\": 1963.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.485Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.860Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"d2afff4f-d372-44db-b8c3-e50a4538c0ed\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"402-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2561.814583998479,\\n                        \\\"y\\\": 2113.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.485Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.860Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"0ee4dc90-99b3-4910-8edd-f7a6e07279dc\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"402-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2561.814583998479,\\n                        \\\"y\\\": 2088.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.485Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.860Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"68824d76-aa91-40d2-9fcd-bbf6b4dc5b57\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"402-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2561.814583998479,\\n                        \\\"y\\\": 2063.099866311875\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.485Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.860Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"3dab5a08-d040-45c7-8fc6-60f5a4afafc7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"402-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2561.814583998479,\\n                        \\\"y\\\": 2038.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.485Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.860Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"6f208971-65a0-45bc-9c08-2e86bf9e6eca\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"402-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2561.814583998479,\\n                        \\\"y\\\": 2013.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.485Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.860Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"fd15a527-8d9d-4a18-ae40-2e22793a8ba8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"402-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2561.814583998479,\\n                        \\\"y\\\": 1988.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.485Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.860Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"061faf06-41bb-4ced-b41d-bf2c272f1dd2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"402-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2561.814583998479,\\n                        \\\"y\\\": 1963.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.485Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:01.860Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"c3f544f5-22e1-4f07-9fb1-04dcbe473d94\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2647.823054680726,\\n                \\\"y\\\": 2038.0998663118744\\n            },\\n            \\\"table_id\\\": \\\"403\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:51:39.954Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2647.823054680726,\\n                    \\\"y\\\": 2038.0998663118744\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:53:15.412Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"c067c602-a40a-4827-bbf2-d2b697384c43\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"403-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2597.823054680726,\\n                        \\\"y\\\": 2113.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.954Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:15.412Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"5e2f9536-f9f1-416d-926d-db9fb883a43d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"403-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2597.823054680726,\\n                        \\\"y\\\": 2088.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.954Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:15.412Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"cf57db5a-8006-4f43-beed-2791ca8d8040\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"403-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2597.823054680726,\\n                        \\\"y\\\": 2063.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.954Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:15.412Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"8ae451be-fcbc-4e86-891f-159a8e5e3492\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"403-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2597.823054680726,\\n                        \\\"y\\\": 2038.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.954Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:15.412Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"1be624b8-7b84-42ce-8d9a-bdbd61db5d1b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"403-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2597.823054680726,\\n                        \\\"y\\\": 2013.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.954Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:15.412Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"aafed6f6-d6bc-4edc-84d6-8324d8d24d08\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"403-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2597.823054680726,\\n                        \\\"y\\\": 1988.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.954Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:15.412Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"890382e7-f244-454c-8507-47bd6818092a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"403-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2597.823054680726,\\n                        \\\"y\\\": 1963.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.954Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:15.412Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"a7b61f3e-f19a-4107-980b-7c05f7391c8a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"403-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2697.823054680726,\\n                        \\\"y\\\": 2113.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.954Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:15.412Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"8f8a56d9-c037-4ad1-8798-18a40e6733ae\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"403-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2697.823054680726,\\n                        \\\"y\\\": 2088.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.954Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:15.412Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"72ef1533-b99a-4e95-9974-b9abff581e03\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"403-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2697.823054680726,\\n                        \\\"y\\\": 2063.099866311875\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.954Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:15.412Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"0ae7df83-fd9a-4f63-aec6-61f05a8f1fde\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"403-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2697.823054680726,\\n                        \\\"y\\\": 2038.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.954Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:15.412Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"55873872-c1b5-4fc4-bcde-e2266b8175d6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"403-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2697.823054680726,\\n                        \\\"y\\\": 2013.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.954Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:15.412Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"6d6649c8-c36b-4628-937b-fa932ad71c5f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"403-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2697.823054680726,\\n                        \\\"y\\\": 1988.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.954Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:15.412Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"c1208a7c-56bd-4dea-ab42-0c038dc88bd9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"403-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2697.823054680726,\\n                        \\\"y\\\": 1963.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:39.954Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:15.412Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"f2a63602-ddaf-468d-ab02-0393872d2003\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2783.8315253629717,\\n                \\\"y\\\": 2038.0998663118744\\n            },\\n            \\\"table_id\\\": \\\"404\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:51:40.385Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2783.8315253629717,\\n                    \\\"y\\\": 2038.0998663118744\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:53:13.269Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"5b0c913a-61c4-4dd0-b795-cfec969295f8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"404-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2733.8315253629717,\\n                        \\\"y\\\": 2113.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:40.385Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:13.269Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"e37021cd-031e-4c73-ac90-0d910400009f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"404-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2733.8315253629717,\\n                        \\\"y\\\": 2088.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:40.385Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:13.269Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"b7b744f4-06b3-4a9c-942a-e00dc21058da\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"404-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2733.8315253629717,\\n                        \\\"y\\\": 2063.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:40.385Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:13.269Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"3d8c200b-4c8a-43e0-be0f-fdef0789c9b6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"404-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2733.8315253629717,\\n                        \\\"y\\\": 2038.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:40.385Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:13.269Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"f62f6874-38d8-4efb-921c-d47d0606d0ea\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"404-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2733.8315253629717,\\n                        \\\"y\\\": 2013.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:40.385Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:13.269Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"479c6054-7b8c-428f-8022-65b285feae29\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"404-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2733.8315253629717,\\n                        \\\"y\\\": 1988.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:40.385Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:13.269Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"28286cde-900e-4ce7-89d6-e140588a083b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"404-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2733.8315253629717,\\n                        \\\"y\\\": 1963.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:40.385Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:13.269Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"653a6ce6-943d-47cd-9603-26c4b7112ca2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"404-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2833.8315253629717,\\n                        \\\"y\\\": 2113.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:40.385Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:13.269Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"523799ef-fb15-42f6-ab23-aea567dc3d28\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"404-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2833.8315253629717,\\n                        \\\"y\\\": 2088.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:40.385Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:13.269Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"25003090-a50e-4ea8-802a-42291237e566\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"404-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2833.8315253629717,\\n                        \\\"y\\\": 2063.099866311875\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:40.385Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:13.269Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"0562daa4-928a-4501-892a-5f9226bc0da7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"404-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2833.8315253629717,\\n                        \\\"y\\\": 2038.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:40.385Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:13.269Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"8f8281bc-5452-4d5e-8375-605d1c176001\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"404-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2833.8315253629717,\\n                        \\\"y\\\": 2013.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:40.385Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:13.269Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"c2b03da5-eeb3-4b2f-8640-d806c2789e31\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"404-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2833.8315253629717,\\n                        \\\"y\\\": 1988.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:40.385Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:13.269Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"74e35953-f2fc-4b80-8013-4db5969aa171\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"404-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2833.8315253629717,\\n                        \\\"y\\\": 1963.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:40.385Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:13.269Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"665b8995-1871-484a-ae56-9e80cfcc4acd\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2919.839996045218,\\n                \\\"y\\\": 2038.0998663118744\\n            },\\n            \\\"table_id\\\": \\\"405\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:51:41.079Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2919.839996045218,\\n                    \\\"y\\\": 2038.0998663118744\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:53:12.068Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"659a52fe-5a25-4185-b009-6c31c6beb59d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"405-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2869.839996045218,\\n                        \\\"y\\\": 2113.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.079Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:12.068Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"3de8b00a-7572-4a89-8256-c23be0e38508\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"405-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2869.839996045218,\\n                        \\\"y\\\": 2088.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.079Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:12.068Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"85b0495e-7548-468a-9b5e-0ed10eefad0f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"405-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2869.839996045218,\\n                        \\\"y\\\": 2063.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.079Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:12.068Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"bae4c4e5-77f6-42db-b043-d1b88010c4bd\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"405-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2869.839996045218,\\n                        \\\"y\\\": 2038.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.079Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:12.068Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"88218093-daf7-406a-b72d-9951ee8876c3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"405-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2869.839996045218,\\n                        \\\"y\\\": 2013.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.079Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:12.068Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"df947f57-eaf7-4c0d-a466-ed7974fd89d8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"405-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2869.839996045218,\\n                        \\\"y\\\": 1988.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.079Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:12.068Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"bf86e69a-e881-4c15-97a1-962e23631cc7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"405-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2869.839996045218,\\n                        \\\"y\\\": 1963.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.079Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:12.068Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"dc52a093-7176-4ffe-866e-5be3f65cce7e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"405-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2969.839996045218,\\n                        \\\"y\\\": 2113.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.079Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:12.068Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"dff4a2e4-dc73-4fe4-a0bb-2d26b57f3e6b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"405-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2969.839996045218,\\n                        \\\"y\\\": 2088.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.079Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:12.068Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"5c437899-7b37-44d3-9d74-f9404332719b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"405-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2969.839996045218,\\n                        \\\"y\\\": 2063.099866311875\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.079Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:12.068Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"2c5a8b65-46ef-4b95-ac47-2c8112c70925\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"405-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2969.839996045218,\\n                        \\\"y\\\": 2038.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.079Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:12.068Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"7d4d3e95-c0db-421b-8d33-e60344fba4b0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"405-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2969.839996045218,\\n                        \\\"y\\\": 2013.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.079Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:12.068Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"4763992c-6966-4cab-a741-5909e533ff9a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"405-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2969.839996045218,\\n                        \\\"y\\\": 1988.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.079Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:12.068Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"9d268698-9f49-497f-b4e2-07eb611849d3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"405-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2969.839996045218,\\n                        \\\"y\\\": 1963.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.079Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:12.068Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"f0538845-4ad2-4c10-8043-d5c1776cb91e\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 3055.8484667274643,\\n                \\\"y\\\": 2038.0998663118744\\n            },\\n            \\\"table_id\\\": \\\"406\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:51:41.671Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 3055.8484667274643,\\n                    \\\"y\\\": 2038.0998663118744\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 14,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:53:10.626Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"98d4e056-5df8-4151-bb5f-d693d966328a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"406-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3005.8484667274643,\\n                        \\\"y\\\": 2113.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.671Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:10.626Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"03b82b2a-f75f-4b57-84db-9f64d55f9938\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"406-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3005.8484667274643,\\n                        \\\"y\\\": 2088.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.671Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:10.626Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"c24ae0d1-9abb-4221-b0f9-6a54b7e85e95\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"406-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3005.8484667274643,\\n                        \\\"y\\\": 2063.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.671Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:10.626Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"94cf4ce7-9a8a-4cf9-b221-56ba54c927e7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"406-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3005.8484667274643,\\n                        \\\"y\\\": 2038.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.671Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:10.626Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"23c39ee0-bcbd-4b9e-807d-0c9386a005fc\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"406-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3005.8484667274643,\\n                        \\\"y\\\": 2013.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.671Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:10.626Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"01285efb-71bc-44df-bdd1-df3ed96ec52f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"406-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3005.8484667274643,\\n                        \\\"y\\\": 1988.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.671Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:10.626Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"11a63ec5-b1c8-4c1b-bf4c-82b006f7821b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"406-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3005.8484667274643,\\n                        \\\"y\\\": 1963.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.671Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:10.626Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"65d37a05-be70-4317-9588-bdd70cdcffd7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"406-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3105.8484667274643,\\n                        \\\"y\\\": 2113.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.671Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:10.626Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"d8f47410-ac76-43b0-a2c2-db158dc1d449\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"406-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3105.8484667274643,\\n                        \\\"y\\\": 2088.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.671Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:10.626Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"ea37e71c-2815-415f-a61c-8292ece8397c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"406-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3105.8484667274643,\\n                        \\\"y\\\": 2063.099866311875\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.671Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:10.626Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"6354e2e3-0142-474a-9c82-e8ab7caae718\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"406-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3105.8484667274643,\\n                        \\\"y\\\": 2038.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.671Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:10.626Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"704ba9df-f360-4ff4-a775-91cf24570943\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"406-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3105.8484667274643,\\n                        \\\"y\\\": 2013.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.671Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:10.626Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"0ec0cc97-cf25-49a5-b386-430c8b7b557d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"406-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3105.8484667274643,\\n                        \\\"y\\\": 1988.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.671Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:10.626Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"85104f40-168c-4006-b2b2-b7f319391181\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"406-B7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3105.8484667274643,\\n                        \\\"y\\\": 1963.0998663118744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:41.671Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:10.626Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"168e02bc-5838-480b-b8a9-969cd91e22a1\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2329.348872644609,\\n                \\\"y\\\": 2329.3793911577695\\n            },\\n            \\\"table_id\\\": \\\"407\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:51:45.550Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2329.348872644609,\\n                    \\\"y\\\": 2318.3793911577695\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"d0801410-6c67-46ec-b58f-4ad0587f5bf0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"407-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2279.348872644609,\\n                        \\\"y\\\": 2389.807962586341\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:45.550Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"99fdd1cd-a7e4-4dc2-90a8-3baa8913c5bb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"407-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2279.348872644609,\\n                        \\\"y\\\": 2361.236534014912\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:45.550Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"78b4487a-0c74-46a8-a310-949f08fc944d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"407-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2279.348872644609,\\n                        \\\"y\\\": 2332.665105443484\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:45.550Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"d8f3ddc8-92b9-49de-81d7-1ed0d0cad6d8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"407-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2279.348872644609,\\n                        \\\"y\\\": 2304.0936768720553\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:45.550Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"b008750c-2fe4-4399-b3d5-36fc021e4534\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"407-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2279.348872644609,\\n                        \\\"y\\\": 2275.522248300627\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:45.550Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"e253060a-f169-45b0-9528-5cc2b0fd1179\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"407-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2279.348872644609,\\n                        \\\"y\\\": 2246.950819729198\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:45.550Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"d1eab590-564c-427d-9726-bdfd976d6723\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"407-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2379.348872644609,\\n                        \\\"y\\\": 2389.807962586341\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:45.550Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"5896a531-8f79-4be9-99a0-f87c9ac4e651\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"407-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2379.348872644609,\\n                        \\\"y\\\": 2361.236534014912\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:45.550Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"e016bb83-cd16-4547-9336-b54657e2df26\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"407-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2379.348872644609,\\n                        \\\"y\\\": 2332.665105443484\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:45.550Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"52a11ae9-20bc-49c0-88a1-5b0e4b45181c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"407-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2379.348872644609,\\n                        \\\"y\\\": 2304.0936768720553\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:45.550Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"f970cabf-6bb3-4c50-bb2b-b79b8e8945c4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"407-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2379.348872644609,\\n                        \\\"y\\\": 2275.522248300627\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:45.550Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"c4620e7e-b766-4216-94a8-8ee850067899\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"407-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2379.348872644609,\\n                        \\\"y\\\": 2246.950819729198\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:45.550Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"eba84d1a-f141-4b4b-bcbc-ba422eabf0e8\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2504.116587552146,\\n                \\\"y\\\": 2329.3793911577695\\n            },\\n            \\\"table_id\\\": \\\"408\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:51:47.153Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2504.116587552146,\\n                    \\\"y\\\": 2318.3793911577695\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"a763b0c0-1c5a-441a-8f34-104212237161\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"408-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2454.116587552146,\\n                        \\\"y\\\": 2389.807962586341\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.153Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"7aa02a63-23fe-4430-90f8-8866e31a6234\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"408-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2454.116587552146,\\n                        \\\"y\\\": 2361.236534014912\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.153Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"3eb6239d-4028-4070-b947-2634677f6bcb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"408-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2454.116587552146,\\n                        \\\"y\\\": 2332.665105443484\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.153Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"7b55f2ac-7719-4488-ab48-1cb5d1fddd6b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"408-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2454.116587552146,\\n                        \\\"y\\\": 2304.0936768720553\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.153Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"bac158a7-fec7-4e6c-adef-8376d4eb35a5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"408-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2454.116587552146,\\n                        \\\"y\\\": 2275.522248300627\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.153Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"d41d994e-18e1-4cb7-bc0b-95554ab252dc\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"408-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2454.116587552146,\\n                        \\\"y\\\": 2246.950819729198\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.153Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"16dc8e66-e59f-48a5-8606-4fef0fde3640\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"408-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2554.116587552146,\\n                        \\\"y\\\": 2389.807962586341\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.153Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"eb125206-dcee-40de-8e5e-d4f0abc01156\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"408-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2554.116587552146,\\n                        \\\"y\\\": 2361.236534014912\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.153Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"c4168341-5ae9-4ce9-b61b-fc6543933645\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"408-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2554.116587552146,\\n                        \\\"y\\\": 2332.665105443484\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.153Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"01df5b5f-752b-4583-875b-3ad260578c73\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"408-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2554.116587552146,\\n                        \\\"y\\\": 2304.0936768720553\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.153Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"b48c9595-37fa-400a-a9be-2d74138a6a2f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"408-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2554.116587552146,\\n                        \\\"y\\\": 2275.522248300627\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.153Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"aa7727e4-c70c-47d4-b8e8-7fa1a97d46e1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"408-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2554.116587552146,\\n                        \\\"y\\\": 2246.950819729198\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.153Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"a5418935-810f-4d4f-8e84-6e76e7f67926\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2678.884302459683,\\n                \\\"y\\\": 2329.3793911577695\\n            },\\n            \\\"table_id\\\": \\\"409\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:51:47.919Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2678.884302459683,\\n                    \\\"y\\\": 2318.3793911577695\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"6f33d034-e8a3-4a70-aaf5-37125eb9c5de\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"409-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2628.884302459683,\\n                        \\\"y\\\": 2389.807962586341\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.919Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"1a87562d-c8b8-42b7-be9e-3c064475f300\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"409-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2628.884302459683,\\n                        \\\"y\\\": 2361.236534014912\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.919Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"4a5e2acd-e7e8-46d1-8359-8af39e54c232\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"409-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2628.884302459683,\\n                        \\\"y\\\": 2332.665105443484\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.919Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"10230906-6b29-404e-acd8-9083d738bb7a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"409-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2628.884302459683,\\n                        \\\"y\\\": 2304.0936768720553\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.919Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"8d671c73-f6da-43c5-aff9-ad789d1da080\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"409-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2628.884302459683,\\n                        \\\"y\\\": 2275.522248300627\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.919Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"1e4bc147-8416-44e0-8978-dfde51516e3a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"409-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2628.884302459683,\\n                        \\\"y\\\": 2246.950819729198\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.919Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"ce49c3f1-6189-4034-8e28-6ef6d1efb9a0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"409-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2728.884302459683,\\n                        \\\"y\\\": 2389.807962586341\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.919Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"b0464ea3-6211-4149-9d95-5f031cac2d96\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"409-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2728.884302459683,\\n                        \\\"y\\\": 2361.236534014912\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.919Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"e0307ee6-6f0b-4507-98d6-b2089662bbe5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"409-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2728.884302459683,\\n                        \\\"y\\\": 2332.665105443484\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.919Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"c1c27aec-7e88-45ec-ac5f-0bc28d8388d5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"409-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2728.884302459683,\\n                        \\\"y\\\": 2304.0936768720553\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.919Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"a32c56c4-a73b-4237-864f-b769b269c011\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"409-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2728.884302459683,\\n                        \\\"y\\\": 2275.522248300627\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.919Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"f65a02ee-c603-43f4-9599-fa88cc61ef81\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"409-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2728.884302459683,\\n                        \\\"y\\\": 2246.950819729198\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:47.919Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"47cfabfb-ad09-4af3-9cf7-fc684f1d0f90\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2853.65201736722,\\n                \\\"y\\\": 2329.3793911577695\\n            },\\n            \\\"table_id\\\": \\\"410\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:51:48.666Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2853.65201736722,\\n                    \\\"y\\\": 2318.3793911577695\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"34d01879-9506-495a-9f91-aaa4c7d49fe8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"410-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2803.65201736722,\\n                        \\\"y\\\": 2389.807962586341\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:48.666Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"701f79f7-90d4-4ac4-8c2d-8730cff8db2f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"410-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2803.65201736722,\\n                        \\\"y\\\": 2361.236534014912\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:48.666Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"6ff13fe9-4c79-4705-a665-0f3d7f2017e3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"410-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2803.65201736722,\\n                        \\\"y\\\": 2332.665105443484\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:48.666Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"4a7b264f-d7eb-498f-b725-dcf0f3c1dcf1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"410-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2803.65201736722,\\n                        \\\"y\\\": 2304.0936768720553\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:48.666Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"1013fb7e-4428-434c-a25e-cddfac7e55b1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"410-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2803.65201736722,\\n                        \\\"y\\\": 2275.522248300627\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:48.666Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"ff1bf7aa-25ce-4090-b5e0-b43495f73da9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"410-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2803.65201736722,\\n                        \\\"y\\\": 2246.950819729198\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:48.666Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"047bc287-85f3-4692-9a85-33d9cc9aa605\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"410-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2903.65201736722,\\n                        \\\"y\\\": 2389.807962586341\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:48.666Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"901978de-6a2d-4e8f-a2a3-c7609a963ad9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"410-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2903.65201736722,\\n                        \\\"y\\\": 2361.236534014912\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:48.666Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"533a41a9-c7fc-42a4-aa28-e4992f7fb373\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"410-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2903.65201736722,\\n                        \\\"y\\\": 2332.665105443484\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:48.666Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"ce2aa858-0a21-458c-a22d-0630f1e3fdc4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"410-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2903.65201736722,\\n                        \\\"y\\\": 2304.0936768720553\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:48.666Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"527dee8c-4fce-44ed-942c-e54d3338324d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"410-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2903.65201736722,\\n                        \\\"y\\\": 2275.522248300627\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:48.666Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"5603df6a-c2a3-4f0f-b760-49a8f634d866\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"410-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2903.65201736722,\\n                        \\\"y\\\": 2246.950819729198\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:51:48.666Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:53:49.579Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"037a9676-45c9-47a8-9bd5-39649082d995\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 940.0749457065278,\\n                \\\"y\\\": 1052.4411652566312\\n            },\\n            \\\"table_id\\\": \\\"601\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -45\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:54:25.161Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 940.0749457065278,\\n                    \\\"y\\\": 1052.4411652566312\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:56:47.942Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"fbf009d2-20cc-4739-9161-5eead95ae92c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"601-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 854.2119794195899,\\n                        \\\"y\\\": 1067.5934534249143\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:25.161Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.942Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"dc85451e-b6d8-442c-a4db-78f265e7bf7a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"601-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 874.4150303106342,\\n                        \\\"y\\\": 1047.39040253387\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:25.161Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.942Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"6540934d-430f-4dda-a556-2698f8b594ea\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"601-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 894.6180812016785,\\n                        \\\"y\\\": 1027.187351642826\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:25.161Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.942Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"53e464bd-6227-4829-b7c5-d410cf44f03c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"601-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 914.8211320927228,\\n                        \\\"y\\\": 1006.9843007517816\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:25.161Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.942Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"0bc13240-dfda-44c3-8a36-1f03150a4928\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"601-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 935.0241829837668,\\n                        \\\"y\\\": 986.7812498607376\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:25.161Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.942Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"3750f199-09ba-4dd7-a83e-26825504ad71\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"601-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 955.2272338748112,\\n                        \\\"y\\\": 966.5781989696932\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:25.161Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.942Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"f459308c-d8a3-440d-bd15-27482224efba\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"601-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 924.9226575382444,\\n                        \\\"y\\\": 1138.3041315435692\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:25.161Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.942Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"b18cc6e6-1044-4b5d-bdfa-775b9ee2ffa3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"601-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 945.1257084292888,\\n                        \\\"y\\\": 1118.1010806525248\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:25.161Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.942Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"c62c0b57-6d78-4ce8-a508-e6eecdb1c6bd\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"601-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 965.3287593203332,\\n                        \\\"y\\\": 1097.8980297614808\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:25.161Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.942Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"8bce8ac3-5acd-46c3-bbcb-79eae22a3c0d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"601-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 985.5318102113774,\\n                        \\\"y\\\": 1077.6949788704364\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:25.161Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.942Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"3a1833d2-c159-48c3-baed-703e9ed6b794\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"601-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1005.7348611024214,\\n                        \\\"y\\\": 1057.491927979392\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:25.161Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.942Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"d2baab49-db45-4a50-8a04-93aec1cc2baa\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"601-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1025.9379119934658,\\n                        \\\"y\\\": 1037.288877088348\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:25.161Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.942Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"307ac156-6fc7-4f21-9470-c9689ec8c312\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1168.2369586658951,\\n                \\\"y\\\": 1052.4411652566312\\n            },\\n            \\\"table_id\\\": \\\"602\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -45\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:54:26.634Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1168.2369586658951,\\n                    \\\"y\\\": 1052.4411652566312\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:56:47.950Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"54647958-b372-4538-92fa-3b71099bc3ca\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"602-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1082.3739923789572,\\n                        \\\"y\\\": 1067.5934534249143\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:26.634Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.950Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"00007e3b-6cdc-4958-a7a9-74e9cbd242e6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"602-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1102.5770432700012,\\n                        \\\"y\\\": 1047.3904025338702\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:26.634Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.950Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"11a0a8bf-e573-4c5e-a19b-45699b95e401\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"602-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1122.7800941610456,\\n                        \\\"y\\\": 1027.187351642826\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:26.634Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.950Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"a4cb56cf-5295-45ef-b21f-668d1507cb46\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"602-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1142.98314505209,\\n                        \\\"y\\\": 1006.9843007517816\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:26.634Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.950Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"73fe0e2e-192a-4370-9a3c-b6b720417f67\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"602-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1163.1861959431342,\\n                        \\\"y\\\": 986.7812498607376\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:26.634Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.950Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"3a94f4ad-fa87-490c-8ed1-7c6be414510c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"602-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1183.3892468341785,\\n                        \\\"y\\\": 966.5781989696934\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:26.634Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.950Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"9dfa7a7e-c157-4832-aaf5-67134cdfe780\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"602-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1153.084670497612,\\n                        \\\"y\\\": 1138.3041315435692\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:26.634Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.950Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"898c9932-8b48-4d6c-9d8b-317c89c7a8b6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"602-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1173.2877213886563,\\n                        \\\"y\\\": 1118.1010806525248\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:26.634Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.950Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"0c6ae1fd-6da1-4cd2-afc9-191e6be796b4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"602-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1193.4907722797004,\\n                        \\\"y\\\": 1097.8980297614808\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:26.634Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.950Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"d02754b8-157b-4e4e-a2fc-1281de26b2dc\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"602-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1213.6938231707447,\\n                        \\\"y\\\": 1077.6949788704364\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:26.634Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.950Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"e458aa8e-e332-4e5e-ad59-19d36e55e663\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"602-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1233.896874061789,\\n                        \\\"y\\\": 1057.491927979392\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:26.634Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.950Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"3c2253b7-a636-4a84-918a-97bfce8a3fe7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"602-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1254.0999249528331,\\n                        \\\"y\\\": 1037.2888770883478\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:26.634Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.950Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"c6bf04b2-fb69-4aae-934e-092b2ec11d47\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 940.0749457065278,\\n                \\\"y\\\": 1265.053383143032\\n            },\\n            \\\"table_id\\\": \\\"603\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -45\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:54:29.117Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 940.0749457065278,\\n                    \\\"y\\\": 1265.053383143032\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:56:47.958Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"ac8365e9-de79-4ca6-927d-42fd7c16ee8e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"603-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 854.2119794195899,\\n                        \\\"y\\\": 1280.205671311315\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.117Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.958Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"9697e2f1-4a25-4419-acbb-81e9b66b767a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"603-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 874.4150303106343,\\n                        \\\"y\\\": 1260.002620420271\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.117Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.958Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"1dc73ba1-3671-43da-a05d-893b2605b36a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"603-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 894.6180812016785,\\n                        \\\"y\\\": 1239.7995695292266\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.117Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.958Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"84b7ea68-23de-40e9-aa49-6528650d091f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"603-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 914.8211320927228,\\n                        \\\"y\\\": 1219.5965186381825\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.117Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.958Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"cbf7d90a-79aa-43e1-86a8-a436810cdee1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"603-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 935.0241829837668,\\n                        \\\"y\\\": 1199.3934677471382\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.117Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.958Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"4880ec17-3d81-4259-a3af-4bed9fe0ff98\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"603-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 955.2272338748112,\\n                        \\\"y\\\": 1179.190416856094\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.117Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.958Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"b4f3453f-c576-46c4-9ff8-59ede016f9c0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"603-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 924.9226575382444,\\n                        \\\"y\\\": 1350.9163494299698\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.117Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.958Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"c8664c13-c36c-4369-9724-b93fa74830d0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"603-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 945.1257084292888,\\n                        \\\"y\\\": 1330.7132985389255\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.117Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.958Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"b2a99db5-3799-4886-9265-c9cd14cb417b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"603-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 965.3287593203332,\\n                        \\\"y\\\": 1310.5102476478814\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.117Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.958Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"e1816bf5-256b-4797-a81c-f763c4f81372\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"603-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 985.5318102113774,\\n                        \\\"y\\\": 1290.3071967568371\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.117Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.958Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"6d3b20e1-f84e-4a4c-8ece-db801d912e06\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"603-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1005.7348611024214,\\n                        \\\"y\\\": 1270.1041458657928\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.117Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.958Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"1768c073-8023-4ea5-a4ef-b65db7af6408\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"603-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1025.9379119934658,\\n                        \\\"y\\\": 1249.9010949747487\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.117Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.958Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"3febfc8e-d7d6-41d4-b193-7e42181a0042\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1168.2369586658951,\\n                \\\"y\\\": 1265.053383143032\\n            },\\n            \\\"table_id\\\": \\\"604\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -45\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:54:29.600Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1168.2369586658951,\\n                    \\\"y\\\": 1265.053383143032\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:56:47.965Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"ec4d8881-dc0e-49ee-934e-709dc3e7615f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"604-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1082.3739923789572,\\n                        \\\"y\\\": 1280.205671311315\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.600Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.965Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"10b4ca78-342f-4470-89f1-cb58a1df8fe7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"604-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1102.5770432700012,\\n                        \\\"y\\\": 1260.002620420271\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.600Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.965Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"2d7686e1-2d24-4403-8f78-74850c6991fb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"604-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1122.7800941610456,\\n                        \\\"y\\\": 1239.7995695292266\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.600Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.965Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"b286242e-5b40-43ee-a1ab-a94f9e00f5cc\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"604-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1142.98314505209,\\n                        \\\"y\\\": 1219.5965186381825\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.600Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.965Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"0ea36d01-4a39-4c77-8244-63416b037400\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"604-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1163.186195943134,\\n                        \\\"y\\\": 1199.3934677471382\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.600Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.965Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"629b9c77-51f2-4348-9237-2260c92736fb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"604-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1183.3892468341785,\\n                        \\\"y\\\": 1179.190416856094\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.600Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.965Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"55a44d26-ab81-4c4f-a9bc-94771d00e868\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"604-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1153.084670497612,\\n                        \\\"y\\\": 1350.9163494299698\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.600Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.965Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"bfb2037b-992d-4eee-bdcc-fb9a01309c60\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"604-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1173.2877213886563,\\n                        \\\"y\\\": 1330.7132985389255\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.600Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.965Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"c987b97a-9000-4528-bc2a-7af7f15f8b0d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"604-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1193.4907722797004,\\n                        \\\"y\\\": 1310.5102476478814\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.600Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.965Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"aab2b8a1-207d-4a04-99be-7d55cf19fe06\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"604-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1213.6938231707447,\\n                        \\\"y\\\": 1290.3071967568371\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.600Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.965Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"844daed2-fef6-4c3a-b3ed-1938b7823e59\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"604-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1233.896874061789,\\n                        \\\"y\\\": 1270.1041458657928\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.600Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.965Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"5745077e-4b48-4876-9db1-11ca11c625e7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"604-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1254.0999249528331,\\n                        \\\"y\\\": 1249.9010949747487\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:29.600Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.965Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"caefce39-a72d-452a-9899-be2a827d0e37\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 711.9129327471603,\\n                \\\"y\\\": 1315.053383143032\\n            },\\n            \\\"table_id\\\": \\\"605\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -45\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:54:30.517Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 711.9129327471603,\\n                    \\\"y\\\": 1359.3036077340664\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:56:47.976Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"67d63180-f924-44ab-bbe6-6edde723b03e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"605-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 626.0499664602223,\\n                        \\\"y\\\": 1374.4558959023495\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:30.517Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.976Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"47a7f803-05c5-45fe-99d0-c1f62a6a6452\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"605-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 646.2530173512667,\\n                        \\\"y\\\": 1354.2528450113057\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:30.517Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.976Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"b8a560b5-abe2-4e12-bbfd-14fd6724676d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"605-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 666.456068242311,\\n                        \\\"y\\\": 1334.0497941202611\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:30.517Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.976Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"ffb73589-845e-4a63-9b0d-44eec33551ba\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"605-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 686.6591191333553,\\n                        \\\"y\\\": 1313.8467432292168\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:30.517Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.976Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"734e46d4-8060-4fe1-b93e-822fbd7ba8e0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"605-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 706.8621700243992,\\n                        \\\"y\\\": 1293.6436923381727\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:30.517Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.976Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"c2be1e66-0ee8-45de-aaf9-39f5d28cb4db\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"605-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 727.0652209154437,\\n                        \\\"y\\\": 1273.4406414471284\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:30.517Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.976Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"5f627a4c-a96a-4ec4-b0ac-0000c4acb5c4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"605-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 696.760644578877,\\n                        \\\"y\\\": 1445.1665740210044\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:30.517Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.976Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"fc7ea627-81a3-4b1a-a8f7-7d7f5490712e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"605-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 716.9636954699214,\\n                        \\\"y\\\": 1424.96352312996\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:30.517Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.976Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"c9d6b2bf-b931-4c88-a23b-0f25ea3e7986\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"605-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 737.1667463609656,\\n                        \\\"y\\\": 1404.760472238916\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:30.517Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.976Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"681dd636-a4ca-422b-8e9f-4dc681925ebc\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"605-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 757.3697972520099,\\n                        \\\"y\\\": 1384.5574213478717\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:30.517Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.976Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"f424f703-b3e5-4a5e-b822-5e148a14babc\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"605-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 777.5728481430539,\\n                        \\\"y\\\": 1364.3543704568274\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:30.517Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.976Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"32464886-7631-4599-8655-de26096c6169\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"605-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 797.7758990340983,\\n                        \\\"y\\\": 1344.1513195657833\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:30.517Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.976Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"4d6e39e1-cf89-4f01-b96c-17798b9e0626\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 940.0749457065278,\\n                \\\"y\\\": 1477.6656010294323\\n            },\\n            \\\"table_id\\\": \\\"606\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -45\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:54:31.150Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 940.0749457065278,\\n                    \\\"y\\\": 1477.6656010294323\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:56:47.984Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"582f68c8-7698-4b6d-897f-b5ae53ea1aca\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"606-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 854.2119794195899,\\n                        \\\"y\\\": 1492.8178891977157\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.150Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.984Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"b048ad86-84b3-44a1-b899-97b0169c3bf6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"606-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 874.4150303106343,\\n                        \\\"y\\\": 1472.6148383066716\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.150Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.984Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"a2447a1b-f11c-426c-9752-97c553e6b8ff\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"606-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 894.6180812016785,\\n                        \\\"y\\\": 1452.4117874156273\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.150Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.984Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"2d3b9f35-d577-4cc1-a2c1-8e86dffbd21b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"606-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 914.8211320927228,\\n                        \\\"y\\\": 1432.208736524583\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.150Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.984Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"1ed7b29e-4154-4bc2-a54c-10f6ff13dc2e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"606-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 935.0241829837668,\\n                        \\\"y\\\": 1412.0056856335389\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.150Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.984Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"3daae845-4db5-4028-8c97-d4141ee56e42\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"606-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 955.2272338748112,\\n                        \\\"y\\\": 1391.8026347424943\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.150Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.984Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"fcf95d84-dd38-417f-b8c9-708f6260c0e3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"606-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 924.9226575382444,\\n                        \\\"y\\\": 1563.5285673163703\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.150Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.984Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"a64967a3-6993-42a1-bc2b-2a08ead7c8b9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"606-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 945.1257084292888,\\n                        \\\"y\\\": 1543.3255164253262\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.150Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.984Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"83b32018-30a2-4f0c-8fad-732b495b15dc\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"606-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 965.3287593203332,\\n                        \\\"y\\\": 1523.122465534282\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.150Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.984Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"ca321edf-5935-49fb-a46a-7ce6b41cc71f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"606-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 985.5318102113774,\\n                        \\\"y\\\": 1502.9194146432378\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.150Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.984Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"7f812ce7-aa45-418a-9340-7c4b6ec0aedd\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"606-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1005.7348611024214,\\n                        \\\"y\\\": 1482.7163637521935\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.150Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.984Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"a571fb46-aa5d-4d92-ac89-69f74f641ddb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"606-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1025.9379119934658,\\n                        \\\"y\\\": 1462.5133128611494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.150Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.984Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"d4e8d5f3-a930-487f-b60c-5b12875b9978\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1168.2369586658951,\\n                \\\"y\\\": 1477.6656010294323\\n            },\\n            \\\"table_id\\\": \\\"607\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -45\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:54:31.717Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1168.2369586658951,\\n                    \\\"y\\\": 1477.6656010294323\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:56:47.992Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"16625a45-7edb-43b7-90e4-bccdbf531688\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"607-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1082.3739923789572,\\n                        \\\"y\\\": 1492.8178891977157\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.717Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.992Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"1bda15be-7d52-47c2-9e2e-ce0f68fecbf5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"607-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1102.5770432700012,\\n                        \\\"y\\\": 1472.6148383066716\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.717Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.992Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"1dc6d8ff-5c57-4811-95d7-2dbfb91ad0d1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"607-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1122.7800941610456,\\n                        \\\"y\\\": 1452.4117874156273\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.717Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.992Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"555317f1-5f85-489f-bcfd-36597cde5443\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"607-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1142.98314505209,\\n                        \\\"y\\\": 1432.208736524583\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.717Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.992Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"7e0315a9-362f-4a7a-8f75-09c954410407\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"607-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1163.186195943134,\\n                        \\\"y\\\": 1412.0056856335389\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.717Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.992Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"7751cb53-232c-467c-ac21-bcc1320017ca\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"607-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1183.3892468341785,\\n                        \\\"y\\\": 1391.8026347424943\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.717Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.992Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"d4410b87-7f3e-45dd-9b61-dd8d9ea85709\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"607-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1153.084670497612,\\n                        \\\"y\\\": 1563.5285673163703\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.717Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.992Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"c9f3a7bd-d4aa-4eff-8a14-18ea9aa34652\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"607-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1173.2877213886563,\\n                        \\\"y\\\": 1543.3255164253262\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.717Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.992Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"45512f68-b9f7-4395-8de9-6d5dcbc7a867\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"607-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1193.4907722797004,\\n                        \\\"y\\\": 1523.122465534282\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.717Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.992Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"0fae9e66-61bc-4dfb-8db0-aea1b60fc6bb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"607-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1213.6938231707447,\\n                        \\\"y\\\": 1502.9194146432378\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.717Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.992Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"f1a93192-6a0e-4929-b665-a69583a7687b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"607-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1233.896874061789,\\n                        \\\"y\\\": 1482.7163637521935\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.717Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.992Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                },\\n                {\\n                    \\\"id\\\": \\\"a66f5b78-2df2-4c52-8e8b-42dd046cd2c7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 500,\\n                    \\\"seat_id\\\": \\\"607-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1254.0999249528331,\\n                        \\\"y\\\": 1462.5133128611494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:31.717Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.992Z\\\",\\n                    \\\"price_tier_id\\\": 126\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"23aa993e-acc4-436c-876a-65e2bc5c8f56\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 711.9129327471603,\\n                \\\"y\\\": 1577.6656010294323\\n            },\\n            \\\"table_id\\\": \\\"608\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -45\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:54:32.283Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 711.9129327471603,\\n                    \\\"y\\\": 1577.6656010294323\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:56:47.998Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"69be3cf8-7663-4ae0-b593-53233b29f02d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"608-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 626.0499664602223,\\n                        \\\"y\\\": 1592.8178891977157\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:32.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.998Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"a67cdb59-6cdf-427a-9a4a-44647d51e186\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"608-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 646.2530173512667,\\n                        \\\"y\\\": 1572.6148383066716\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:32.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.998Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"a90b2404-14c9-4985-8ad5-b0a5d9baae98\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"608-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 666.456068242311,\\n                        \\\"y\\\": 1552.4117874156273\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:32.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.998Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"303812b3-8394-431c-a378-98a3801e9754\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"608-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 686.6591191333553,\\n                        \\\"y\\\": 1532.208736524583\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:32.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.998Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"c21df307-ef40-46f6-81e9-551406a47764\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"608-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 706.8621700243992,\\n                        \\\"y\\\": 1512.0056856335389\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:32.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.998Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"c2342461-1b18-48ba-a32f-e946a5ed5049\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"608-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 727.0652209154437,\\n                        \\\"y\\\": 1491.8026347424943\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:32.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.998Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"55559aa2-7b31-40c7-9e34-97c19c500c03\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"608-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 696.760644578877,\\n                        \\\"y\\\": 1663.5285673163703\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:32.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.998Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"5e55af92-baa7-45fe-8c75-06670ca48c83\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"608-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 716.9636954699214,\\n                        \\\"y\\\": 1643.3255164253262\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:32.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.998Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"51996d20-96b4-4f52-bf77-f122658cc696\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"608-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 737.1667463609656,\\n                        \\\"y\\\": 1623.122465534282\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:32.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.998Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"2e569616-e106-4677-9c6f-23cb5a769c3a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"608-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 757.3697972520099,\\n                        \\\"y\\\": 1602.9194146432378\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:32.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.998Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"d25210fc-eb29-4660-886e-04aaf9f50963\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"608-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 777.5728481430539,\\n                        \\\"y\\\": 1582.7163637521935\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:32.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.998Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"d8bca9c1-6848-4c20-b188-b879047d9789\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"608-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 797.7758990340983,\\n                        \\\"y\\\": 1562.5133128611494\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:32.283Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:47.998Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"0595604e-b968-4252-af65-fc5347aaff76\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 940.0749457065278,\\n                \\\"y\\\": 1690.2778189158332\\n            },\\n            \\\"table_id\\\": \\\"609\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -45\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:54:33.000Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 940.0749457065278,\\n                    \\\"y\\\": 1690.2778189158332\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:56:48.008Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"fa8a51d0-e32b-4e7d-8034-5cbdd4ac5c8b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"609-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 854.2119794195899,\\n                        \\\"y\\\": 1705.4301070841163\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.008Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"9540ac6a-7544-4cec-99a2-dadc7bb06602\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"609-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 874.4150303106343,\\n                        \\\"y\\\": 1685.2270561930725\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.008Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"089973af-69f2-4ebc-9e28-ddc3fc595c4a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"609-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 894.6180812016785,\\n                        \\\"y\\\": 1665.024005302028\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.008Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"8f0c54cb-0659-46ac-beda-613288182c9e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"609-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 914.8211320927228,\\n                        \\\"y\\\": 1644.8209544109836\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.008Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"9d6da0bd-f7dd-4bff-ac31-c6ab53d88734\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"609-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 935.0241829837668,\\n                        \\\"y\\\": 1624.6179035199395\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.008Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"0c9816d9-20d1-44bf-97df-f098479cfb9d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"609-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 955.2272338748112,\\n                        \\\"y\\\": 1604.4148526288952\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.008Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"7222010e-0e17-4d40-b561-8362b4a11140\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"609-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 924.9226575382444,\\n                        \\\"y\\\": 1776.1407852027712\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.008Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"62407eaf-8bc7-4cc6-8065-00804c451675\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"609-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 945.1257084292888,\\n                        \\\"y\\\": 1755.937734311727\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.008Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"36034dae-40ee-4bab-a874-10460146e44e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"609-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 965.3287593203332,\\n                        \\\"y\\\": 1735.7346834206828\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.008Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"5e490013-ee43-4017-9378-bc11aeeb0576\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"609-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 985.5318102113774,\\n                        \\\"y\\\": 1715.5316325296385\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.008Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"1e423efb-f07d-4816-9777-ec8678ce721c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"609-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1005.7348611024214,\\n                        \\\"y\\\": 1695.3285816385942\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.008Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"28c51946-002c-4918-858b-68fd047cb6a4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"609-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1025.9379119934658,\\n                        \\\"y\\\": 1675.12553074755\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.000Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.008Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"2765a9ee-4c8e-4644-b54a-b737b4673cd1\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1168.2369586658951,\\n                \\\"y\\\": 1690.2778189158332\\n            },\\n            \\\"table_id\\\": \\\"610\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -45\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:54:33.684Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1168.2369586658951,\\n                    \\\"y\\\": 1690.2778189158332\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:56:48.015Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"e1b00227-48f7-44fa-bb81-a3878dd2641a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"610-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1082.3739923789572,\\n                        \\\"y\\\": 1705.4301070841163\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.684Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.015Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"a72c2063-f374-475c-b7f9-45f824973630\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"610-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1102.5770432700012,\\n                        \\\"y\\\": 1685.2270561930725\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.684Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.015Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"1df6a62d-07ea-47cd-8517-ac38ddc2eabd\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"610-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1122.7800941610456,\\n                        \\\"y\\\": 1665.024005302028\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.684Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.015Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"6f4ea8d0-609d-4f8b-abd9-5039ebe26500\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"610-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1142.98314505209,\\n                        \\\"y\\\": 1644.8209544109836\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.684Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.015Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"5467ec63-dca6-4dee-be5b-54e56004ef84\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"610-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1163.186195943134,\\n                        \\\"y\\\": 1624.6179035199395\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.684Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.015Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"18ce4d2b-4d3e-4d61-af25-c92be8f8a02b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"610-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1183.3892468341785,\\n                        \\\"y\\\": 1604.4148526288952\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.684Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.015Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"8c24f339-acb5-4dbe-99f0-871e4dd694ba\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"610-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1153.084670497612,\\n                        \\\"y\\\": 1776.1407852027712\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.684Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.015Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"4c4d8ba8-fac0-4b56-8180-4b155b9781eb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"610-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1173.2877213886563,\\n                        \\\"y\\\": 1755.937734311727\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.684Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.015Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"fc9b4344-ee5f-4275-bf99-d1173378606f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"610-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1193.4907722797004,\\n                        \\\"y\\\": 1735.7346834206828\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.684Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.015Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"bed81cbe-7646-4038-876c-b11be0905ba8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"610-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1213.6938231707447,\\n                        \\\"y\\\": 1715.5316325296385\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.684Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.015Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"653ca7de-28e6-4dd5-ba7a-933c453b59b5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"610-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1233.896874061789,\\n                        \\\"y\\\": 1695.3285816385942\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.684Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.015Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                },\\n                {\\n                    \\\"id\\\": \\\"e4ba9e09-c939-4a57-a079-8ed90fb83d81\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 300,\\n                    \\\"seat_id\\\": \\\"610-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1254.0999249528331,\\n                        \\\"y\\\": 1675.12553074755\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:33.684Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.015Z\\\",\\n                    \\\"price_tier_id\\\": 128\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"1ea3f64a-70f3-4d0d-9044-d57ac6a60ac3\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 940.0749457065278,\\n                \\\"y\\\": 1902.890036802234\\n            },\\n            \\\"table_id\\\": \\\"611\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -45\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:54:35.591Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 940.0749457065278,\\n                    \\\"y\\\": 1902.890036802234\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:56:48.023Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"515737e9-ff2e-4215-9f2d-4b865728c0bd\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"611-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 854.2119794195899,\\n                        \\\"y\\\": 1918.042324970517\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:35.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.023Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"6bc4a337-3e92-4e75-baa7-c37d750c3484\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"611-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 874.4150303106343,\\n                        \\\"y\\\": 1897.839274079473\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:35.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.023Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"5a1db3a5-4bfc-443f-887c-f98c92f02675\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"611-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 894.6180812016785,\\n                        \\\"y\\\": 1877.6362231884289\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:35.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.023Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"3feb9aab-2808-437a-b6fe-dea9c666bcf8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"611-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 914.8211320927228,\\n                        \\\"y\\\": 1857.4331722973843\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:35.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.023Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"6ccbad92-ccea-412a-9f55-e8a7de2e076c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"611-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 935.0241829837668,\\n                        \\\"y\\\": 1837.23012140634\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:35.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.023Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"8c034b01-a176-4de7-a5b6-3482c999dab3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"611-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 955.2272338748112,\\n                        \\\"y\\\": 1817.027070515296\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:35.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.023Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"e1f86543-974d-4919-aa81-2592f7c3a187\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"611-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 924.9226575382444,\\n                        \\\"y\\\": 1988.753003089172\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:35.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.023Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"3e382a0f-40e4-442f-a2ea-32741a0adcee\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"611-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 945.1257084292888,\\n                        \\\"y\\\": 1968.5499521981276\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:35.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.023Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"a645dcdb-35a3-4fa8-bdc4-a808f93cf244\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"611-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 965.3287593203332,\\n                        \\\"y\\\": 1948.3469013070835\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:35.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.023Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"6d7c8640-91f2-4ff5-98c6-f1ea6a8e5b92\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"611-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 985.5318102113774,\\n                        \\\"y\\\": 1928.1438504160392\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:35.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.023Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"3a6c3cf0-cbaa-454e-8704-0eea50c835cd\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"611-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1005.7348611024214,\\n                        \\\"y\\\": 1907.9407995249949\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:35.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.023Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"af3a5086-ccea-4951-91f2-aa932b63e47c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"611-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1025.9379119934658,\\n                        \\\"y\\\": 1887.7377486339508\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:35.591Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.023Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"4879c864-a3c2-456a-a392-0031dad2e43f\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1168.2369586658951,\\n                \\\"y\\\": 1902.890036802234\\n            },\\n            \\\"table_id\\\": \\\"612\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -45\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:54:36.252Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1168.2369586658951,\\n                    \\\"y\\\": 1902.890036802234\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:56:48.030Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"b23cd521-1a9a-4a07-a1cb-5843db4c9c8b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"612-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1082.3739923789572,\\n                        \\\"y\\\": 1918.042324970517\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:36.252Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.030Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"229a55e4-87c0-48c0-9155-b71498e4574c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"612-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1102.5770432700012,\\n                        \\\"y\\\": 1897.839274079473\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:36.252Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.030Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"28f98e83-b255-41b3-88b8-7c88371e7897\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"612-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1122.7800941610456,\\n                        \\\"y\\\": 1877.6362231884289\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:36.252Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.030Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"d59f2e9a-714b-48da-aaa4-c57fe466d6e5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"612-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1142.98314505209,\\n                        \\\"y\\\": 1857.4331722973843\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:36.252Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.030Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"878fe682-3d21-473d-a14e-06ba44705bbb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"612-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1163.186195943134,\\n                        \\\"y\\\": 1837.23012140634\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:36.252Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.030Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"ca41f34e-453b-49a1-8d1f-efcfee903af2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"612-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1183.3892468341785,\\n                        \\\"y\\\": 1817.027070515296\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:36.252Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.030Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"efd2d284-5d46-4555-ae73-ca3372f949b7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"612-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1153.084670497612,\\n                        \\\"y\\\": 1988.753003089172\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:36.252Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.030Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"ebd4c306-e629-45ff-a53d-3e28acefc78e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"612-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1173.2877213886563,\\n                        \\\"y\\\": 1968.5499521981276\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:36.252Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.030Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"4552044a-92a7-420f-a6ad-fc55af8f10fa\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"612-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1193.4907722797004,\\n                        \\\"y\\\": 1948.3469013070835\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:36.252Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.030Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"39299fee-4e66-437f-a1fb-a5c5b15c0fd6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"612-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1213.6938231707447,\\n                        \\\"y\\\": 1928.1438504160392\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:36.252Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.030Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"73b1dc4f-0058-485c-a572-32c805b5f64d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"612-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1233.896874061789,\\n                        \\\"y\\\": 1907.9407995249949\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:36.252Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.030Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"fcfeb5a6-6108-46b2-8650-116662d4c18b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"612-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1254.0999249528331,\\n                        \\\"y\\\": 1887.7377486339508\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:36.252Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.030Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"12b72534-6acc-483d-bab1-fa692b439ea1\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1168.2369586658951,\\n                \\\"y\\\": 1971.5839278590336\\n            },\\n            \\\"table_id\\\": \\\"613\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -45\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:54:37.011Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1168.2369586658951,\\n                    \\\"y\\\": 2104.2627666578846\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:56:48.036Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"a1617cd9-62fb-41e0-9c4e-1f9b99a167a3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"613-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1082.3739923789572,\\n                        \\\"y\\\": 2119.415054826168\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:37.011Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.036Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"5c3ae713-62d4-4c32-8a49-15624261b4b0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"613-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1102.5770432700017,\\n                        \\\"y\\\": 2099.2120039351244\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:37.011Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.036Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"176dad97-583d-41d0-98cc-079598c2a25a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"613-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1122.7800941610456,\\n                        \\\"y\\\": 2079.008953044079\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:37.011Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.036Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"146791c6-3aee-441c-8883-6b126b1c6088\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"613-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1142.98314505209,\\n                        \\\"y\\\": 2058.8059021530353\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:37.011Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.036Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"ed3457f5-7f73-4bfb-94d2-9a29e056fccb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"613-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1163.1861959431342,\\n                        \\\"y\\\": 2038.6028512619905\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:37.011Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.036Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"8ab7da58-a075-4532-b321-d58b39dc8019\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"613-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1183.3892468341785,\\n                        \\\"y\\\": 2018.3998003709469\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 45,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:37.011Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.036Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"13243560-31e3-4c78-9167-714be70ddccc\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"613-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1153.084670497612,\\n                        \\\"y\\\": 2190.125732944822\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:37.011Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.036Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"b9b2eb20-ebf2-415b-9883-8e437117d52c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"613-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1173.287721388656,\\n                        \\\"y\\\": 2169.9226820537788\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:37.011Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.036Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"4e2cc8c8-c20c-477b-8ffe-d9516c404948\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"613-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1193.4907722797004,\\n                        \\\"y\\\": 2149.719631162734\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:37.011Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.036Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"2ea299d9-6205-428c-b9c9-bbf848711ff1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"613-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1213.6938231707447,\\n                        \\\"y\\\": 2129.51658027169\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:37.011Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.036Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"d3f2fd29-e2e6-4716-95cc-9c3e649ccb4c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"613-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1233.8968740617886,\\n                        \\\"y\\\": 2109.313529380645\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:37.011Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.036Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                },\\n                {\\n                    \\\"id\\\": \\\"131a4059-acab-430e-8f58-bfd6d0fb8db3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 200,\\n                    \\\"seat_id\\\": \\\"613-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1254.099924952833,\\n                        \\\"y\\\": 2089.110478489601\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 225,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:54:37.011Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:56:48.036Z\\\",\\n                    \\\"price_tier_id\\\": 129\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"f887da9b-7975-4b3c-800a-8269645fe082\\\",\\n            \\\"type\\\": \\\"stage\\\",\\n            \\\"label\\\": \\\"Stage\\\",\\n            \\\"opacity\\\": 0.16,\\n            \\\"position\\\": {\\n                \\\"x\\\": 1639.3296338978091,\\n                \\\"y\\\": 783.2215884291395\\n            },\\n            \\\"stage_id\\\": \\\"S-1\\\",\\n            \\\"created_at\\\": \\\"2025-11-05T10:57:02.126Z\\\",\\n            \\\"dimensions\\\": {\\n                \\\"width\\\": 1260,\\n                \\\"height\\\": 130\\n            },\\n            \\\"section_id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n            \\\"show_label\\\": true,\\n            \\\"updated_at\\\": \\\"2025-11-05T16:27:52.846Z\\\",\\n            \\\"is_obstacle\\\": true,\\n            \\\"stage_shape\\\": \\\"rectangle\\\",\\n            \\\"border_color\\\": \\\"#374151\\\",\\n            \\\"background_color\\\": \\\"#1F2937\\\"\\n        },\\n        {\\n            \\\"id\\\": \\\"cb0bac61-e9c1-43a4-9ae1-ca2aa2d234fd\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 480.90293308752314,\\n                \\\"y\\\": 765.9413094634708\\n            },\\n            \\\"table_id\\\": \\\"701\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -55.52846073492459\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:58:56.348Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 496.7051374400048,\\n                    \\\"y\\\": 759.3884807030778\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-06T18:58:44.937Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"d314507b-f11b-4dfe-9f6b-b1bfa5f98bed\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"701-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 415.0564228767703,\\n                        \\\"y\\\": 789.9748866131872\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 34.47153926507542,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:58:56.348Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:44.937Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"f2da4856-3ffc-403c-b4cc-6c2dc00b60f4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"701-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 431.2277599039269,\\n                        \\\"y\\\": 766.4203883301341\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 34.47153926507542,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:58:56.348Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:44.937Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"d533289c-bc34-4f50-a9d5-d34104e8a8b6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"701-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 447.39909693108336,\\n                        \\\"y\\\": 742.8658900470805\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 34.47153926507542,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:58:56.348Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:44.937Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"32d89855-c023-4552-97d2-06c701bacb57\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"701-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 463.57043395823973,\\n                        \\\"y\\\": 719.3113917640271\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 34.47153926507542,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:58:56.348Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:44.937Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"a83d1602-be5d-4274-86e7-391f8b76a741\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"701-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 479.7417709853962,\\n                        \\\"y\\\": 695.7568934809741\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 34.47153926507542,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:58:56.348Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:44.937Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"234d089c-920f-42eb-8da6-2b9ce028d631\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"701-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 495.9131080125527,\\n                        \\\"y\\\": 672.2023951979206\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 34.47153926507542,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:58:56.348Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:44.937Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"8e161fed-3c48-4973-9c1b-95afce8b7fa8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"701-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 497.49716686745694,\\n                        \\\"y\\\": 846.574566208235\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 214.47153926507545,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:58:56.348Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:44.937Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"ba76adc4-3f8a-4e39-a9a7-0d42b57c0355\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"701-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 513.6685038946134,\\n                        \\\"y\\\": 823.0200679251816\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 214.47153926507545,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:58:56.348Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:44.937Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"d9808164-e06d-4a3a-be38-47590b29e194\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"701-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 529.8398409217699,\\n                        \\\"y\\\": 799.4655696421285\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 214.47153926507545,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:58:56.348Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:44.937Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"66521ff7-8c42-4ebf-b500-4e766f2b5989\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"701-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 546.0111779489264,\\n                        \\\"y\\\": 775.9110713590751\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 214.47153926507545,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:58:56.348Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:44.937Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"d09cf9aa-e0b1-43e8-8893-186eda01b4fb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"701-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 562.1825149760828,\\n                        \\\"y\\\": 752.3565730760216\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 214.47153926507545,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:58:56.348Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:44.937Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"4ed497bb-cf1f-470e-8418-e3d21833146e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"701-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 578.3538520032394,\\n                        \\\"y\\\": 728.8020747929684\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 214.47153926507545,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:58:56.348Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:44.937Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"c5e7b6cb-c623-4141-a75e-34ca5282b751\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 353.01713820517233,\\n                \\\"y\\\": 1087.8398250408322\\n            },\\n            \\\"table_id\\\": \\\"702\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:59:29.119Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 353.01713820517233,\\n                    \\\"y\\\": 1127.8398250408322\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-06T18:58:35.023Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"874a8b36-9805-430f-89e6-2a34e9e23ef6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"702-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 303.01713820517233,\\n                        \\\"y\\\": 1199.2683964694038\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:29.119Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:35.023Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"f3d47ba6-5b89-4468-9270-8d6da5fa68af\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"702-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 303.01713820517233,\\n                        \\\"y\\\": 1170.6969678979751\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:29.119Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:35.023Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"4bff0bf9-eb52-4f80-a851-87fded821d65\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"702-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 303.01713820517233,\\n                        \\\"y\\\": 1142.1255393265465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:29.119Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:35.023Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"991064dc-3be9-4bc7-a284-4d7c55d5adc1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"702-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 303.01713820517233,\\n                        \\\"y\\\": 1113.554110755118\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:29.119Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:35.023Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"78a3e625-bebb-4e21-be70-48d36c3df98f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"702-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 303.01713820517233,\\n                        \\\"y\\\": 1084.9826821836891\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:29.119Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:35.023Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"3d27c8f1-4218-484e-ab47-081af27fca33\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"702-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 303.01713820517233,\\n                        \\\"y\\\": 1056.411253612261\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:29.119Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:35.023Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"bab68c58-c432-43c1-a9e2-980e7b64ca60\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"702-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 403.01713820517233,\\n                        \\\"y\\\": 1199.2683964694038\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:29.119Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:35.023Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"7c4c7cf8-10c5-4bb6-b9d3-b2febddec2e7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"702-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 403.01713820517233,\\n                        \\\"y\\\": 1170.6969678979751\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:29.119Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:35.023Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"81dd13b2-8ce3-47b9-b93a-81d24a82e965\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"702-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 403.01713820517233,\\n                        \\\"y\\\": 1142.1255393265465\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:29.119Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:35.023Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"476bddbe-207b-49a8-94e2-c01b5d6de840\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"702-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 403.01713820517233,\\n                        \\\"y\\\": 1113.554110755118\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:29.119Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:35.023Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"e1ce3dfe-ae0f-4836-a3f0-f9acd7ab4713\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"702-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 403.01713820517233,\\n                        \\\"y\\\": 1084.9826821836891\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:29.119Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:35.023Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"aaad6c34-cdf6-48cd-a465-3039c1a17667\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"702-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 403.01713820517233,\\n                        \\\"y\\\": 1056.411253612261\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:29.119Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:58:35.023Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"33e4a5c5-882f-47ff-b7cb-c205d6ca224d\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 592.5304517566777,\\n                \\\"y\\\": 2278.3618835762563\\n            },\\n            \\\"table_id\\\": \\\"703\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -120\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:59:30.892Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 582.5304517566777,\\n                    \\\"y\\\": 2268.3618835762563\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T11:00:38.214Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"f02ee4b9-492c-49ca-8b40-372315bf10c7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"703-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 574.9434672817416,\\n                        \\\"y\\\": 2355.2208409894306\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 330,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:30.892Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:38.214Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"ea31f3b7-5bee-45ab-8818-8bcf69952975\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"703-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 560.6577529960273,\\n                        \\\"y\\\": 2330.477258024161\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 330,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:30.892Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:38.214Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"36bad722-23bb-4577-9123-7734d9969bd1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"703-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 546.3720387103131,\\n                        \\\"y\\\": 2305.733675058891\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 330,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:30.892Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:38.214Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"05f7b15b-6671-424a-a6d2-7b775694dfd9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"703-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 532.0863244245985,\\n                        \\\"y\\\": 2280.9900920936216\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 330,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:30.892Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:38.214Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"42d758cd-eebe-49ae-aeb3-1fbbee45ca33\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"703-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 517.8006101388844,\\n                        \\\"y\\\": 2256.246509128352\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 330,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:30.892Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:38.214Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"6760d3a5-ca34-4726-a50f-c71ffac8daf6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"703-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 503.5148958531702,\\n                        \\\"y\\\": 2231.502926163082\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 330,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:30.892Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:38.214Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"524d7636-60cb-437a-bfd9-71546c6575a9\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"703-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 661.5460076601854,\\n                        \\\"y\\\": 2305.2208409894306\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 150,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:30.892Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:38.214Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"06a6e8a0-f39e-49ef-be1d-495ef7ab80bf\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"703-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 647.2602933744711,\\n                        \\\"y\\\": 2280.4772580241606\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 150,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:30.892Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:38.214Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"fc4ec946-5e74-4af0-b2bf-423354116cdf\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"703-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 632.974579088757,\\n                        \\\"y\\\": 2255.733675058891\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 150,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:30.892Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:38.214Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"57de65c4-a276-46e3-b854-5231e651b447\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"703-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 618.6888648030424,\\n                        \\\"y\\\": 2230.9900920936216\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 150,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:30.892Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:38.214Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"05ed82ab-64ee-4f70-90fc-7aa5c777900b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"703-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 604.4031505173282,\\n                        \\\"y\\\": 2206.2465091283516\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 150,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:30.892Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:38.214Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"5fff887c-6c70-4cce-972d-ee45ea87070d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"703-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 590.1174362316139,\\n                        \\\"y\\\": 2181.502926163082\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 150,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:30.892Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:38.214Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"a066ab5a-b111-44b9-a668-6ed757728dae\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 680.5868170329665,\\n                \\\"y\\\": 2429.818831851473\\n            },\\n            \\\"table_id\\\": \\\"704\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -120\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:59:31.630Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 700.5868170329665,\\n                    \\\"y\\\": 2457.656473063403\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T11:00:42.537Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"b9e9535f-324f-433a-8c66-23a670dd7b5c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"704-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 692.9998325580303,\\n                        \\\"y\\\": 2544.5154304765774\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 330,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:31.630Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:42.537Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"56478752-d580-4f7c-bf9a-381b096c658c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"704-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 678.714118272316,\\n                        \\\"y\\\": 2519.771847511308\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 330,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:31.630Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:42.537Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"28290ffd-b31a-4632-85c2-b3cdda6e4c42\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"704-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 664.4284039866018,\\n                        \\\"y\\\": 2495.028264546038\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 330,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:31.630Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:42.537Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"ebbdc494-429b-4e0c-8bfc-71c50a89831d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"704-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 650.1426897008872,\\n                        \\\"y\\\": 2470.2846815807684\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 330,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:31.630Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:42.537Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"d726344f-308b-48ff-a163-bf426bf9971b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"704-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 635.8569754151731,\\n                        \\\"y\\\": 2445.541098615499\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 330,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:31.630Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:42.537Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"4892a216-ec63-42a9-a438-6d6e14bdac6e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"704-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 621.5712611294589,\\n                        \\\"y\\\": 2420.797515650229\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 330,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:31.630Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:42.537Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"7f238bb8-714c-4d63-ac36-fecb027ef4d2\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"704-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 779.602372936474,\\n                        \\\"y\\\": 2494.5154304765774\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 150,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:31.630Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:42.537Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"6d8ad076-a820-484c-a53a-e847a1556a9e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"704-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 765.3166586507598,\\n                        \\\"y\\\": 2469.771847511307\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 150,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:31.630Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:42.537Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"ea5d18dd-1457-4fd3-8743-ab4d62b8c78f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"704-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 751.0309443650457,\\n                        \\\"y\\\": 2445.028264546038\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 150,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:31.630Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:42.537Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"b2ee86c6-eee2-49ab-b3a4-4db5ac75558a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"704-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 736.7452300793311,\\n                        \\\"y\\\": 2420.2846815807684\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 150,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:31.630Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:42.537Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"174f865c-a80b-4b94-a31a-cd9b05a01ce5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"704-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 722.4595157936169,\\n                        \\\"y\\\": 2395.5410986154984\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 150,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:31.630Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:42.537Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"b1ca0d2f-7780-4d0a-92e3-f2915b33f811\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"704-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 708.1738015079026,\\n                        \\\"y\\\": 2370.797515650229\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 150,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:31.630Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:00:42.537Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"98f0fbc0-2876-4373-a088-892f29cf97b1\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1208.925008690699,\\n                \\\"y\\\": 2688.704545763762\\n            },\\n            \\\"table_id\\\": \\\"705\\\",\\n            \\\"created_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1208.925008690699,\\n                    \\\"y\\\": 2688.704545763762\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"9f37cdfe-9f77-4d39-b308-532cdef7c617\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"705-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1137.4964372621278,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"e472b3e8-ea72-4c13-975b-647aec11a48d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"705-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1166.0678658335562,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"e2af6487-7db4-4f8d-81c1-c6845818a087\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"705-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1194.6392944049849,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"aa3a4768-03b1-4e67-b8d7-727bc77af326\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"705-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1223.2107229764133,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"89949c74-9be3-43f6-a310-11b8ad03fa9c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"705-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1251.782151547842,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"4f7732ed-10f9-4a44-9050-1ce50570adb0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"705-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1280.3535801192706,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"f30aad89-bb6d-4fc1-bdcf-0197a2e94aa3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"705-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1137.4964372621278,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"e44831c8-e18a-453a-870f-993e6e81bbcf\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"705-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1166.0678658335562,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"4118ca64-c73c-46c3-abf7-6ef41589ce36\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"705-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1194.6392944049849,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"6615fbc4-7644-46aa-8e15-4780696fdfbe\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"705-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1223.2107229764133,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"dc6d0454-7b83-47a1-86b9-b3c16028d2f3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"705-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1251.782151547842,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"97abd20a-55f2-461f-b4c7-4b462ce4a660\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"705-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1280.3535801192706,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:32.683Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"99b662a3-7414-4fd1-946d-e3f4a58c4847\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1624.5510527947818,\\n                \\\"y\\\": 2688.704545763762\\n            },\\n            \\\"table_id\\\": \\\"706\\\",\\n            \\\"created_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1624.5510527947818,\\n                    \\\"y\\\": 2688.704545763762\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"d35c74bf-c131-470e-a5ae-bd96f9cfcd8a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"706-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1553.1224813662104,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"db028062-a6bf-4a4a-b1ca-bbb079a6b542\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"706-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1581.6939099376389,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"4f839d1e-9325-4f22-b2c4-49e862c4285b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"706-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1610.2653385090675,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"b1988a45-d54c-4f9a-9578-84c3a6d81c09\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"706-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1638.836767080496,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"c2f6a153-0535-4bb9-9152-62b28e030fad\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"706-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1667.4081956519246,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"76f1c9a3-377a-4d8f-a4dc-782c8d3d77db\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"706-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1695.9796242233533,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"ce163413-1a1e-44dc-9582-285019a96456\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"706-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1553.1224813662104,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"48162927-699e-4c5d-8161-9ebeabdbcaeb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"706-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1581.6939099376389,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"8d658954-3f50-44ca-ad1e-afd631dfec21\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"706-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1610.2653385090675,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"45bd4c0d-79c5-400b-9b48-4d409c26107e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"706-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1638.836767080496,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"be0b9dd1-ce95-4ec9-b309-b4bfb8bf55b5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"706-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1667.4081956519246,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"f64b3dfc-4d5d-4ee1-a632-81810671a71a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"706-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1695.9796242233533,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.247Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"68b2a280-2752-473c-b945-b59ac21be9ff\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 1916.8981855120603,\\n                \\\"y\\\": 2688.704545763762\\n            },\\n            \\\"table_id\\\": \\\"707\\\",\\n            \\\"created_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 1916.8981855120603,\\n                    \\\"y\\\": 2688.704545763762\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"fe1dea6a-928c-4ff0-b261-4ffc7359c32c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"707-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1845.4696140834892,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"98c9d241-100f-4018-b264-42fd2862f7c4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"707-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1874.0410426549176,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"dd1efd4c-3ae6-4976-bca2-1b18740b67e0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"707-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1902.6124712263463,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"758110fa-239b-48d4-9114-7df9376c5753\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"707-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1931.1838997977748,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"e354a8aa-fcff-4154-9f05-f3b2ddb834c8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"707-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1959.7553283692032,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"ef5e4d4e-dcbd-4ed0-bd5b-7edce1d69502\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"707-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1988.326756940632,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"9c207b48-2904-43e1-9657-e270b3f0880f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"707-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1845.4696140834892,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"a722e3ec-3294-489b-b356-399be61b0d39\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"707-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1874.0410426549176,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"12db76b5-d4fe-4502-b5d8-2ebacc2e41e4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"707-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1902.6124712263463,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"b18d90a9-fd4a-45ec-b320-a155603364ad\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"707-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1931.1838997977748,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"4f39995b-dd5b-4ba0-add6-887e673ae5dd\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"707-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1959.7553283692032,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"098f9b30-f387-4596-a3ed-ef37b076c6ac\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"707-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 1988.326756940632,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:34.891Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"5a413e62-9ddd-4d5f-b727-6527b6694fc8\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2427.6251041145356,\\n                \\\"y\\\": 2688.704545763762\\n            },\\n            \\\"table_id\\\": \\\"708\\\",\\n            \\\"created_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2427.6251041145356,\\n                    \\\"y\\\": 2688.704545763762\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"5d8a4cdd-bb05-4e47-9145-d820418c6000\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"708-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2356.196532685964,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"91a91428-fc38-4b67-860d-35ae28b79936\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"708-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2384.767961257393,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"5daae556-cbf0-467a-8305-56cf983e67a8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"708-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2413.339389828822,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"2678fdb0-0f00-46d9-9085-b51f56ca5fd8\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"708-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2441.91081840025,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"e7ca4f18-3229-4d39-8121-0470a7f20a74\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"708-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2470.4822469716783,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"00b4c829-04d3-4581-ab42-191aac01f690\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"708-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2499.053675543107,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"89592016-adb1-459e-b2e0-6eb882d5d21f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"708-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2356.196532685964,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"1aa3f34a-1ed4-4cae-a024-321e9d6e503c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"708-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2384.767961257393,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"7224250f-c052-48de-b4c3-357c5747f887\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"708-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2413.339389828822,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"ea71106a-7104-463f-b0ec-3dd2eca8ab0f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"708-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2441.91081840025,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"48d72532-1e61-4501-b913-acd0593f9a5f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"708-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2470.4822469716783,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"5655c670-02c4-4054-bf59-e5ee5c655976\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"708-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2499.053675543107,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:35.786Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"1b276657-23cc-4753-9c2e-69ead5a20e4a\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2744.628019109175,\\n                \\\"y\\\": 2688.704545763762\\n            },\\n            \\\"table_id\\\": \\\"709\\\",\\n            \\\"created_at\\\": \\\"2025-11-05T10:59:36.208Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2714.628019109175,\\n                    \\\"y\\\": 2688.704545763762\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T11:01:03.946Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"0b14370a-7ad0-4735-87f4-d80bf44891e5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"709-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2643.1994476806035,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.208Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:03.946Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"7dd88669-1895-49a5-939e-2800b531efd6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"709-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2671.7708762520324,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.208Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:03.946Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"0e533e55-b8ca-4dac-a567-18fca861e909\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"709-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2700.342304823461,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.208Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:03.946Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"2959ae92-40a2-4ed2-84a6-f43b0ab8ae9e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"709-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2728.9137333948893,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.208Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:03.946Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"6546e761-6352-4383-bf31-6a21b15dd50c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"709-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2757.4851619663177,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.208Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:03.946Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"951688f6-51a9-4f5a-9d8b-1b78eca8ec19\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"709-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2786.0565905377466,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.208Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:03.946Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"06111395-3740-4568-9449-950f82fc5597\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"709-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2643.1994476806035,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.208Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:03.946Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"5cb2665c-f326-43d7-b0b0-14c6ddfe959b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"709-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2671.7708762520324,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.208Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:03.946Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"1933da8b-3562-4f5e-8c05-51398ebc0723\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"709-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2700.342304823461,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.208Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:03.946Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"57fc3875-a2a4-4855-99da-aef4f01fded0\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"709-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2728.9137333948893,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.208Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:03.946Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"5b4be08c-8ee7-491b-b97c-98cef3bd3b5b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"709-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2757.4851619663177,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.208Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:03.946Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"40184c63-6c39-4394-ae35-05a551ffe64d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"709-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2786.0565905377466,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.208Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:03.946Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"feb6c351-fc01-470d-b1e1-814976bd529c\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 2952.441041161216,\\n                \\\"y\\\": 2688.704545763762\\n            },\\n            \\\"table_id\\\": \\\"710\\\",\\n            \\\"created_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 2952.441041161216,\\n                    \\\"y\\\": 2688.704545763762\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"842bf93f-7105-4b3f-bab7-60395d7bfa9f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"710-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2881.0124697326446,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"97dd0caa-ad80-47e2-a5ae-bfe4160ac260\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"710-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2909.5838983040735,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"3e58ff2b-1a3e-4c8b-ae0e-6cfddea4adf3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"710-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2938.155326875502,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"2510bb99-ce9c-444a-ac33-5aea258dec6c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"710-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2966.7267554469304,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"dda06d3c-994d-4ae3-8c6d-508da44a193c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"710-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2995.298184018359,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"ca0c5c3c-7ea9-4c76-bc04-cc220b0db83f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"710-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3023.8696125897877,\\n                        \\\"y\\\": 2638.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 90,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"eb5f0099-699b-448b-9827-5bf6960489fa\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"710-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2881.0124697326446,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"8c9bab2c-4205-4828-9720-cfd3faacee79\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"710-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2909.5838983040735,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"d3b12a5e-cb3a-495b-9774-c4594244096d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"710-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2938.155326875502,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"b9172045-8dbd-4ef3-b31f-a26f5501be8c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"710-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2966.7267554469304,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"4f41b778-b038-4d51-a1cf-76220dea8531\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"710-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 2995.298184018359,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"d83d74f4-a197-454c-a69a-a93d819801bd\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"710-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3023.8696125897877,\\n                        \\\"y\\\": 2738.704545763762\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 270,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T10:59:36.963Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"3937226c-8dbc-4bb2-9555-2c79237156ef\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 3265.9217015448044,\\n                \\\"y\\\": 2574.2312709045864\\n            },\\n            \\\"table_id\\\": \\\"711\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -40.19522432925996\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:59:51.834Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 3280.126729959628,\\n                    \\\"y\\\": 2566.869569508691\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 130,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 6,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-06T18:57:44.432Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"d1bfdd50-555b-4be5-a963-93dca344d138\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"711-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3223.031909517177,\\n                        \\\"y\\\": 2549.652383947621\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 49.804775670740014,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:51.834Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:57:44.432Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"d42f80ec-1797-450a-9bf7-f2a57e598198\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"711-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3247.857028850486,\\n                        \\\"y\\\": 2528.677078226678\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 49.804775670740014,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:51.834Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:57:44.432Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"534dc45a-ac08-42fa-9771-572ff8990701\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"711-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3272.6821481837937,\\n                        \\\"y\\\": 2507.701772505736\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 49.804775670740014,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:51.834Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:57:44.432Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"6b2bb0b6-6f27-4ab5-99e8-a702fe8a4919\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"711-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3287.571311735462,\\n                        \\\"y\\\": 2626.037366511646\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 229.80477567074,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:51.834Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:57:44.432Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"5a114231-4822-4bcd-9e20-5b633b7ae966\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"711-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3312.3964310687697,\\n                        \\\"y\\\": 2605.0620607907035\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 229.80477567074,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:51.834Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:57:44.432Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"baa521b3-a399-46b5-922e-6b0a1ca06d81\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"711-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3337.2215504020787,\\n                        \\\"y\\\": 2584.086755069761\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 229.80477567074,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:51.834Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:57:44.432Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"b0c5bbc8-b6af-49f8-985c-27ce52462c30\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 4112.436893067527,\\n                \\\"y\\\": 1697.1898727527505\\n            },\\n            \\\"table_id\\\": \\\"712\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T10:59:59.719Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 4122.436893067527,\\n                    \\\"y\\\": 1697.1898727527505\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"fcae14bb-dc32-4750-8ba9-2b7da7349e7b\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"712-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4072.4368930675273,\\n                        \\\"y\\\": 1768.6184441813216\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:59.719Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"d5f943dc-4db7-45fa-a1aa-3ce2d77a0123\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"712-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4072.4368930675273,\\n                        \\\"y\\\": 1740.0470156098932\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:59.719Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"bbbc7892-71a4-4a1c-90d9-278e434d10e1\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"712-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4072.4368930675273,\\n                        \\\"y\\\": 1711.4755870384645\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:59.719Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"eae51293-2a58-4334-b10b-f023415075e7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"712-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4072.4368930675273,\\n                        \\\"y\\\": 1682.904158467036\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:59.719Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"729047e3-56f6-484d-b08e-35c0755c65b4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"712-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4072.4368930675273,\\n                        \\\"y\\\": 1654.3327298956074\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:59.719Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"c2d55cff-28c1-4884-ac6c-3f3f7a1eee63\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"712-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4072.4368930675273,\\n                        \\\"y\\\": 1625.761301324179\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:59.719Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"4110c3e2-527a-4fa9-b848-4c1efb326926\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"712-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4172.436893067527,\\n                        \\\"y\\\": 1768.6184441813216\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:59.719Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"43093704-2b4f-43d3-a73e-777bcb3bd998\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"712-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4172.436893067527,\\n                        \\\"y\\\": 1740.0470156098932\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:59.719Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"4bcc0f44-6f62-4bf0-9704-99bbb2b53d52\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"712-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4172.436893067527,\\n                        \\\"y\\\": 1711.4755870384645\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:59.719Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"51560947-2f7a-4239-9176-bfa0885bfc82\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"712-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4172.436893067527,\\n                        \\\"y\\\": 1682.904158467036\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:59.719Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"7d65d620-97a8-4a7d-bdd6-e10fa8bae342\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"712-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4172.436893067527,\\n                        \\\"y\\\": 1654.3327298956074\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:59.719Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"a434dfca-262a-4568-95f9-30534a04dd29\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"712-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4172.436893067527,\\n                        \\\"y\\\": 1625.761301324179\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T10:59:59.719Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"cb37e966-1409-46f0-a19b-f6e8be3f77cd\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 4112.436893067527,\\n                \\\"y\\\": 1464.721068423348\\n            },\\n            \\\"table_id\\\": \\\"713\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T11:00:00.536Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 4122.436893067527,\\n                    \\\"y\\\": 1464.721068423348\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"6f84ca9b-fae5-43d2-8db3-2457af8ac951\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"713-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4072.4368930675273,\\n                        \\\"y\\\": 1536.1496398519191\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:00.536Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"5b43fa6f-ce05-40cf-9fa2-b82148d2cb35\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"713-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4072.4368930675273,\\n                        \\\"y\\\": 1507.578211280491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:00.536Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"394ef130-1c54-4b60-9bd6-565f814fcbfa\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"713-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4072.4368930675273,\\n                        \\\"y\\\": 1479.0067827090622\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:00.536Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"ceac2d46-1aec-415c-b90a-a51debc61904\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"713-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4072.4368930675273,\\n                        \\\"y\\\": 1450.4353541376338\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:00.536Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"d7d5ef6d-95e3-4b21-b2b0-3b10dcfa0612\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"713-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4072.4368930675273,\\n                        \\\"y\\\": 1421.8639255662051\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:00.536Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"1673e45d-07ef-4e33-b9dc-3c9aa97addc6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"713-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4072.4368930675273,\\n                        \\\"y\\\": 1393.292496994777\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:00.536Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"bc4ee1ec-3c3f-41dd-8bc8-7c82cfedf36a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"713-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4172.436893067527,\\n                        \\\"y\\\": 1536.1496398519191\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:00.536Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"560fd6fa-5392-4fd6-bf7d-5958c56b5eb5\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"713-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4172.436893067527,\\n                        \\\"y\\\": 1507.578211280491\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:00.536Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"4911f38f-abc0-406a-9b4c-1f3e4c1e8a30\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"713-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4172.436893067527,\\n                        \\\"y\\\": 1479.0067827090622\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:00.536Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"e099dd2d-6a57-403d-b9ef-0c48d1288915\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"713-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4172.436893067527,\\n                        \\\"y\\\": 1450.4353541376338\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:00.536Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"2c54eac2-ead9-4090-a048-05549108939d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"713-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4172.436893067527,\\n                        \\\"y\\\": 1421.8639255662051\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:00.536Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"11194dec-4ada-44d7-9885-ef1ceea74175\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"713-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4172.436893067527,\\n                        \\\"y\\\": 1393.292496994777\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:00.536Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"e1ac3e47-2856-4739-8871-803bf5958c1e\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 4112.436893067527,\\n                \\\"y\\\": 1232.2522640939458\\n            },\\n            \\\"table_id\\\": \\\"714\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T11:00:01.661Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 4122.436893067527,\\n                    \\\"y\\\": 1232.2522640939458\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 200,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 12,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"4620ced6-a229-4f47-8c36-cd3308e072bd\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"714-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4072.4368930675273,\\n                        \\\"y\\\": 1303.680835522517\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:01.661Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"0b4c0b8f-d371-469d-a78e-54b4425f3262\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"714-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4072.4368930675273,\\n                        \\\"y\\\": 1275.1094069510889\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:01.661Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"ad3c61d2-17ac-4eb7-8a13-59e379c68a58\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"714-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4072.4368930675273,\\n                        \\\"y\\\": 1246.53797837966\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:01.661Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"4dc24fca-bcab-4d5f-9318-8a7307005001\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"714-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4072.4368930675273,\\n                        \\\"y\\\": 1217.9665498082315\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:01.661Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"3927d72a-7990-486d-8ab2-476dd3e30bb6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"714-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4072.4368930675273,\\n                        \\\"y\\\": 1189.3951212368029\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:01.661Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"ac79cef1-8dde-49b2-b4c6-e16ae0c20d31\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"714-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4072.4368930675273,\\n                        \\\"y\\\": 1160.8236926653744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:01.661Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"d7747a1c-d038-4054-9d34-bee063098f8f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"714-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4172.436893067527,\\n                        \\\"y\\\": 1303.680835522517\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:01.661Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"c3de9796-8280-4e28-b691-f860af094353\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"714-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4172.436893067527,\\n                        \\\"y\\\": 1275.1094069510889\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:01.661Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"b91cec58-ad03-40c1-9fbf-183a25b4ca67\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"714-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4172.436893067527,\\n                        \\\"y\\\": 1246.53797837966\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:01.661Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"243499b7-b341-414f-94cf-0bd46090019a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"714-B4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4172.436893067527,\\n                        \\\"y\\\": 1217.9665498082315\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:01.661Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"dcca9b82-c550-4fcc-abe0-ccc7e1b74524\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"714-B5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4172.436893067527,\\n                        \\\"y\\\": 1189.3951212368029\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:01.661Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"577f2c01-ff53-474c-848b-3ad2bf4fd8a6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"714-B6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 4172.436893067527,\\n                        \\\"y\\\": 1160.8236926653744\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:01.661Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:28.266Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"d792b4e5-6941-4973-9c6c-2162ad0fa1cc\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 3875.2717492567226,\\n                \\\"y\\\": 1003.305714375595\\n            },\\n            \\\"table_id\\\": \\\"715\\\",\\n            \\\"transform\\\": {\\n                \\\"x\\\": 0,\\n                \\\"y\\\": 0,\\n                \\\"scaleX\\\": 1,\\n                \\\"scaleY\\\": 1,\\n                \\\"rotation\\\": -90\\n            },\\n            \\\"created_at\\\": \\\"2025-11-05T11:00:06.257Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 3875.2717492567226,\\n                    \\\"y\\\": 943.305714375595\\n                },\\n                \\\"dimensions\\\": {\\n                    \\\"width\\\": 150,\\n                    \\\"height\\\": 80\\n                },\\n                \\\"seat_count\\\": 6,\\n                \\\"seat_spacing\\\": 25\\n            },\\n            \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n            \\\"table_type\\\": \\\"rectangle\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T16:54:08.611Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"8f4a52a6-7db6-42e3-92c2-5b367e625f70\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"715-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3825.2717492567226,\\n                        \\\"y\\\": 980.805714375595\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:06.257Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T16:54:08.611Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"c409599a-cb41-4ad5-b30b-096fa4fcd563\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"715-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3825.2717492567226,\\n                        \\\"y\\\": 943.305714375595\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:06.257Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T16:54:08.611Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"293ac50b-ca5c-4ae6-b328-9acce0469263\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"715-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3825.2717492567226,\\n                        \\\"y\\\": 905.805714375595\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:06.257Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T16:54:08.611Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"8153b801-12ab-4cf2-beb1-d04c06671e98\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"715-B1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3925.2717492567226,\\n                        \\\"y\\\": 980.805714375595\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:06.257Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T16:54:08.611Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"6d6761ee-c426-45cd-96f2-0d52352537e4\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"715-B2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3925.2717492567226,\\n                        \\\"y\\\": 943.305714375595\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:06.257Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T16:54:08.611Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                },\\n                {\\n                    \\\"id\\\": \\\"0af3daf0-9b48-4c99-ad67-3c424de0ad3c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 50,\\n                    \\\"seat_id\\\": \\\"715-B3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3925.2717492567226,\\n                        \\\"y\\\": 905.805714375595\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:00:06.257Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T16:54:08.611Z\\\",\\n                    \\\"price_tier_id\\\": 131\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"042bfa02-62f8-42cc-b95b-2cfdc066a044\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 3481.6900810681136,\\n                \\\"y\\\": 1869.192756625824\\n            },\\n            \\\"table_id\\\": \\\"510\\\",\\n            \\\"created_at\\\": \\\"2025-11-05T11:01:54.821Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 3481.6900810681136,\\n                    \\\"y\\\": 1869.192756625824\\n                },\\n                \\\"radius\\\": 40,\\n                \\\"seat_count\\\": 6,\\n                \\\"seat_spacing\\\": 45\\n            },\\n            \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n            \\\"table_type\\\": \\\"round\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T11:01:54.821Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"17622e44-ebb5-4866-9f7e-f94ca7564ed3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"510-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3529.6900810681136,\\n                        \\\"y\\\": 1869.192756625824\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:01:54.821Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:54.821Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"82e011d2-959e-4531-9020-c21f50b94ee7\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"510-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3505.6900810681136,\\n                        \\\"y\\\": 1910.7619760074772\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 240,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:01:54.821Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:54.821Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"65f38bee-c3f3-4e95-8ae2-fb21aa19ee5c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"510-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3457.6900810681136,\\n                        \\\"y\\\": 1910.7619760074772\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 300,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:01:54.821Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:54.821Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"f3e8b5b3-6bab-4c2f-a469-5ccfbde4e511\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"510-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3433.6900810681136,\\n                        \\\"y\\\": 1869.192756625824\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:01:54.821Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:54.821Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"dd65d963-2aeb-4a26-a54c-a4cc883f3037\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"510-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3457.6900810681136,\\n                        \\\"y\\\": 1827.623537244171\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 60,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:01:54.821Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:54.821Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"84f8f9f5-758e-4cc6-bd53-f0b570655363\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"510-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3505.6900810681136,\\n                        \\\"y\\\": 1827.623537244171\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 120,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:01:54.821Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:54.821Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"eb378b81-8350-410c-8dde-8dadb866ebe7\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 3817.916909145019,\\n                \\\"y\\\": 1194.8711736493638\\n            },\\n            \\\"table_id\\\": \\\"511\\\",\\n            \\\"created_at\\\": \\\"2025-11-05T11:01:57.778Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 3817.916909145019,\\n                    \\\"y\\\": 1194.8711736493638\\n                },\\n                \\\"radius\\\": 40,\\n                \\\"seat_count\\\": 6,\\n                \\\"seat_spacing\\\": 45\\n            },\\n            \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n            \\\"table_type\\\": \\\"round\\\",\\n            \\\"updated_at\\\": \\\"2025-11-05T11:01:57.778Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"1b5d20a7-4a71-4233-858a-fe9c23ff310d\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"511-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3865.916909145019,\\n                        \\\"y\\\": 1194.8711736493638\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:01:57.778Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:57.778Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"03d44296-6c04-480d-bc00-f4e4e36da19a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"511-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3841.916909145019,\\n                        \\\"y\\\": 1236.4403930310168\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 240,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:01:57.778Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:57.778Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"c39554dc-1895-49ab-a50d-941cfde23075\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"511-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3793.916909145019,\\n                        \\\"y\\\": 1236.4403930310168\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 300,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:01:57.778Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:57.778Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"d439f055-9caf-4ca7-8099-f35fa1bfcbd3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"511-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3769.916909145019,\\n                        \\\"y\\\": 1194.8711736493638\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:01:57.778Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:57.778Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"e4eb94de-d2e5-4b2d-b421-83ddd84a2c2c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"511-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3793.916909145019,\\n                        \\\"y\\\": 1153.3019542677107\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 60,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:01:57.778Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:57.778Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"c8b148e4-38c9-4ff1-81ee-ba25378e7e41\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"511-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3841.916909145019,\\n                        \\\"y\\\": 1153.3019542677107\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 120,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:01:57.778Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-05T11:01:57.778Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"0c712854-45ce-4172-819f-1f712bb3cdf7\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 3866.483006533905,\\n                \\\"y\\\": 1402.2110509634554\\n            },\\n            \\\"table_id\\\": \\\"512\\\",\\n            \\\"created_at\\\": \\\"2025-11-05T11:02:07.137Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 3866.483006533905,\\n                    \\\"y\\\": 1402.2110509634554\\n                },\\n                \\\"radius\\\": 65,\\n                \\\"seat_count\\\": 10,\\n                \\\"seat_spacing\\\": 45\\n            },\\n            \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n            \\\"table_type\\\": \\\"round\\\",\\n            \\\"updated_at\\\": \\\"2025-11-06T18:57:26.262Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"375c8c7f-41fc-4078-bad6-0a8ff390a348\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"512-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3939.483006533905,\\n                        \\\"y\\\": 1402.2110509634554\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:02:07.137Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:57:26.262Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"39a7354f-688b-432a-ad02-f79ac0bf6205\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"512-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3925.541247123276,\\n                        \\\"y\\\": 1445.119374380806\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 216,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:02:07.137Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:57:26.262Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"ef7f103d-e4a3-4beb-976a-204e729cf22f\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"512-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3889.041247123276,\\n                        \\\"y\\\": 1471.6381766530017\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 252,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:02:07.137Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:57:26.262Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"421f9c23-eb1e-4d47-af10-210e5513466c\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"512-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3843.924765944534,\\n                        \\\"y\\\": 1471.6381766530017\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 288,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:02:07.137Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:57:26.262Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"ad650f86-179b-452f-b14d-d64758020b7a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"512-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3807.424765944534,\\n                        \\\"y\\\": 1445.119374380806\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 324,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:02:07.137Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:57:26.262Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"7ea0a254-7a31-405c-9da4-f57be863d66e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"512-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3793.483006533905,\\n                        \\\"y\\\": 1402.2110509634554\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:02:07.137Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:57:26.262Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"a1fcf149-0867-4f74-9abf-cff066729c20\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"512-A7\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3807.424765944534,\\n                        \\\"y\\\": 1359.3027275461047\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 36,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:02:07.137Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:57:26.262Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"c8e077db-67b8-45bf-81b5-1b56c69c18b3\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"512-A8\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3843.924765944534,\\n                        \\\"y\\\": 1332.783925273909\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 72,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:02:07.137Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:57:26.262Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"e6acad91-a0c0-4e09-9f30-953ce136e8fe\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"512-A9\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3889.041247123276,\\n                        \\\"y\\\": 1332.783925273909\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 108,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:02:07.137Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:57:26.262Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"a7233a13-1e33-4b00-9317-f68f54170b46\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"512-A10\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3925.541247123276,\\n                        \\\"y\\\": 1359.3027275461047\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 144,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:02:07.137Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:57:26.262Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                }\\n            ]\\n        },\\n        {\\n            \\\"id\\\": \\\"b0a0c679-baf9-4c71-9815-02668f563c22\\\",\\n            \\\"type\\\": \\\"table\\\",\\n            \\\"position\\\": {\\n                \\\"x\\\": 3829.124470080916,\\n                \\\"y\\\": 1622.6264160360934\\n            },\\n            \\\"table_id\\\": \\\"513\\\",\\n            \\\"created_at\\\": \\\"2025-11-05T11:02:12.385Z\\\",\\n            \\\"parametric\\\": {\\n                \\\"center\\\": {\\n                    \\\"x\\\": 3829.124470080916,\\n                    \\\"y\\\": 1622.6264160360934\\n                },\\n                \\\"radius\\\": 50,\\n                \\\"seat_count\\\": 6,\\n                \\\"seat_spacing\\\": 45\\n            },\\n            \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n            \\\"table_type\\\": \\\"round\\\",\\n            \\\"updated_at\\\": \\\"2025-11-06T18:57:20.580Z\\\",\\n            \\\"child_seats\\\": [\\n                {\\n                    \\\"id\\\": \\\"33dcf9b6-65d6-486d-95cf-60974529d923\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"513-A1\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3887.124470080916,\\n                        \\\"y\\\": 1622.6264160360934\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 180,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:02:12.385Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:57:20.580Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"c3117e39-87c9-489a-8d02-6132a6cb5607\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"513-A2\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3858.124470080916,\\n                        \\\"y\\\": 1672.8558894555908\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 240,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:02:12.385Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:57:20.580Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"9954d428-8055-499f-9d80-77ce13e9ab1e\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"513-A3\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3800.124470080916,\\n                        \\\"y\\\": 1672.8558894555908\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 300,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:02:12.385Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:57:20.580Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"a7080216-cdf3-4617-8f53-f954b355e5f6\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"513-A4\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3771.124470080916,\\n                        \\\"y\\\": 1622.6264160360934\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 0,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:02:12.385Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:57:20.580Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"226c7466-1f7c-4c98-bd66-e147bb946c8a\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"513-A5\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3800.124470080916,\\n                        \\\"y\\\": 1572.396942616596\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 60,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:02:12.385Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:57:20.580Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                },\\n                {\\n                    \\\"id\\\": \\\"177c0147-efe6-4e8e-a7a1-21ecdd8eb7bb\\\",\\n                    \\\"type\\\": \\\"seat\\\",\\n                    \\\"price\\\": 100,\\n                    \\\"seat_id\\\": \\\"513-A6\\\",\\n                    \\\"capacity\\\": 1,\\n                    \\\"position\\\": {\\n                        \\\"x\\\": 3858.124470080916,\\n                        \\\"y\\\": 1572.396942616596\\n                    },\\n                    \\\"arc_angle\\\": 180,\\n                    \\\"direction\\\": 120,\\n                    \\\"seat_type\\\": \\\"chair\\\",\\n                    \\\"created_at\\\": \\\"2025-11-05T11:02:12.385Z\\\",\\n                    \\\"seat_shape\\\": \\\"semicircle\\\",\\n                    \\\"section_id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n                    \\\"updated_at\\\": \\\"2025-11-06T18:57:20.580Z\\\",\\n                    \\\"price_tier_id\\\": 130\\n                }\\n            ]\\n        }\\n    ],\\n    \\\"artboard\\\": {\\n        \\\"units\\\": \\\"px\\\",\\n        \\\"width\\\": 1200,\\n        \\\"height\\\": 800\\n    },\\n    \\\"metadata\\\": {\\n        \\\"created_at\\\": \\\"2025-11-06T20:26:59.000000Z\\\",\\n        \\\"updated_at\\\": \\\"2025-11-06T20:27:03.000000Z\\\",\\n        \\\"total_seats\\\": 1374,\\n        \\\"total_tables\\\": 159,\\n        \\\"total_capacity\\\": 1374,\\n        \\\"version\\\": 184,\\n        \\\"status\\\": \\\"published\\\",\\n        \\\"save_type\\\": \\\"manual\\\",\\n        \\\"author\\\": \\\"Current User\\\",\\n        \\\"description\\\": \\\"Version 184\\\"\\n    },\\n    \\\"sections\\\": [\\n        {\\n            \\\"id\\\": \\\"14262280-ad2a-45d6-b6a6-702dc0479d81\\\",\\n            \\\"name\\\": \\\"Zone 1\\\",\\n            \\\"type\\\": \\\"mixed\\\",\\n            \\\"color\\\": \\\"#3B82F6\\\",\\n            \\\"boundary\\\": [\\n                {\\n                    \\\"x\\\": 1287.3243496434625,\\n                    \\\"y\\\": 960.9863011137032\\n                },\\n                {\\n                    \\\"x\\\": 2285.8836431179448,\\n                    \\\"y\\\": 960.9863011137032\\n                },\\n                {\\n                    \\\"x\\\": 2285.8836431179448,\\n                    \\\"y\\\": 1835.4955919584756\\n                },\\n                {\\n                    \\\"x\\\": 1287.3243496434625,\\n                    \\\"y\\\": 1835.4955919584756\\n                }\\n            ],\\n            \\\"is_active\\\": true,\\n            \\\"is_locked\\\": false,\\n            \\\"base_price\\\": 50,\\n            \\\"created_at\\\": \\\"2025-11-05T10:28:41.577Z\\\",\\n            \\\"is_visible\\\": true,\\n            \\\"updated_at\\\": \\\"2025-11-05T10:35:14.593Z\\\",\\n            \\\"zoom_level\\\": 1,\\n            \\\"naming_mode\\\": \\\"auto\\\",\\n            \\\"zone_number\\\": 1,\\n            \\\"display_order\\\": 0,\\n            \\\"manual_table_ids\\\": [],\\n            \\\"capacity_multiplier\\\": 1,\\n            \\\"section_pricing_mode\\\": \\\"uniform\\\",\\n            \\\"accessibility_features\\\": []\\n        },\\n        {\\n            \\\"id\\\": \\\"f9daa268-9cd9-441d-a5be-ec553aa90f74\\\",\\n            \\\"name\\\": \\\"Zone 2\\\",\\n            \\\"type\\\": \\\"mixed\\\",\\n            \\\"color\\\": \\\"#3B82F6\\\",\\n            \\\"boundary\\\": [\\n                {\\n                    \\\"x\\\": 2302.4560827111363,\\n                    \\\"y\\\": 958.7218219501324\\n                },\\n                {\\n                    \\\"x\\\": 3145.462961457234,\\n                    \\\"y\\\": 958.7218219501324\\n                },\\n                {\\n                    \\\"x\\\": 3145.462961457234,\\n                    \\\"y\\\": 1835.9413871998763\\n                },\\n                {\\n                    \\\"x\\\": 2302.4560827111363,\\n                    \\\"y\\\": 1835.9413871998763\\n                }\\n            ],\\n            \\\"is_active\\\": true,\\n            \\\"is_locked\\\": false,\\n            \\\"base_price\\\": 50,\\n            \\\"created_at\\\": \\\"2025-11-05T10:34:16.127Z\\\",\\n            \\\"is_visible\\\": true,\\n            \\\"updated_at\\\": \\\"2025-11-05T10:35:07.211Z\\\",\\n            \\\"zoom_level\\\": 1,\\n            \\\"naming_mode\\\": \\\"auto\\\",\\n            \\\"zone_number\\\": 2,\\n            \\\"display_order\\\": 1,\\n            \\\"manual_table_ids\\\": [],\\n            \\\"capacity_multiplier\\\": 1,\\n            \\\"section_pricing_mode\\\": \\\"uniform\\\",\\n            \\\"accessibility_features\\\": []\\n        },\\n        {\\n            \\\"id\\\": \\\"74cafd5e-b6f0-402a-b6f4-28e7203884a4\\\",\\n            \\\"name\\\": \\\"Zone 5\\\",\\n            \\\"type\\\": \\\"mixed\\\",\\n            \\\"color\\\": \\\"#3B82F6\\\",\\n            \\\"boundary\\\": [\\n                {\\n                    \\\"x\\\": 3164.9000484316334,\\n                    \\\"y\\\": 957.7589491845872\\n                },\\n                {\\n                    \\\"x\\\": 3554.2702249833796,\\n                    \\\"y\\\": 957.7589491845872\\n                },\\n                {\\n                    \\\"x\\\": 3554.2702249833796,\\n                    \\\"y\\\": 1115.2242250979782\\n                },\\n                {\\n                    \\\"x\\\": 3982.992641919443,\\n                    \\\"y\\\": 1115.2242250979782\\n                },\\n                {\\n                    \\\"x\\\": 3985.6293117135738,\\n                    \\\"y\\\": 1722.7101971328616\\n                },\\n                {\\n                    \\\"x\\\": 3727.24094788014,\\n                    \\\"y\\\": 1722.7101971328616\\n                },\\n                {\\n                    \\\"x\\\": 3436.820968695456,\\n                    \\\"y\\\": 2149.147043742376\\n                },\\n                {\\n                    \\\"x\\\": 3164.9000484316334,\\n                    \\\"y\\\": 2149.147043742376\\n                }\\n            ],\\n            \\\"is_active\\\": true,\\n            \\\"is_locked\\\": false,\\n            \\\"base_price\\\": 50,\\n            \\\"created_at\\\": \\\"2025-11-05T10:38:02.062Z\\\",\\n            \\\"is_visible\\\": true,\\n            \\\"updated_at\\\": \\\"2025-11-05T10:42:59.280Z\\\",\\n            \\\"zoom_level\\\": 1,\\n            \\\"naming_mode\\\": \\\"auto\\\",\\n            \\\"zone_number\\\": 5,\\n            \\\"display_order\\\": 2,\\n            \\\"manual_table_ids\\\": [],\\n            \\\"capacity_multiplier\\\": 1,\\n            \\\"section_pricing_mode\\\": \\\"uniform\\\",\\n            \\\"accessibility_features\\\": []\\n        },\\n        {\\n            \\\"id\\\": \\\"0810c4af-d8af-4c00-823b-e8e6d4b8dc13\\\",\\n            \\\"name\\\": \\\"Zone 3\\\",\\n            \\\"type\\\": \\\"mixed\\\",\\n            \\\"color\\\": \\\"#3B82F6\\\",\\n            \\\"boundary\\\": [\\n                {\\n                    \\\"x\\\": 1286.639454713656,\\n                    \\\"y\\\": 1850.4617566577913\\n                },\\n                {\\n                    \\\"x\\\": 2278.333518660846,\\n                    \\\"y\\\": 1854.0810780590584\\n                },\\n                {\\n                    \\\"x\\\": 2281.952840062113,\\n                    \\\"y\\\": 2129.1495045553593\\n                },\\n                {\\n                    \\\"x\\\": 2202.3277692342363,\\n                    \\\"y\\\": 2255.825753599708\\n                },\\n                {\\n                    \\\"x\\\": 2205.9470906355036,\\n                    \\\"y\\\": 2425.9338594592627\\n                },\\n                {\\n                    \\\"x\\\": 1286.639454713656,\\n                    \\\"y\\\": 2433.172502261797\\n                }\\n            ],\\n            \\\"is_active\\\": true,\\n            \\\"is_locked\\\": false,\\n            \\\"base_price\\\": 50,\\n            \\\"created_at\\\": \\\"2025-11-05T10:43:55.832Z\\\",\\n            \\\"is_visible\\\": true,\\n            \\\"updated_at\\\": \\\"2025-11-06T20:24:32.518Z\\\",\\n            \\\"zoom_level\\\": 1,\\n            \\\"naming_mode\\\": \\\"auto\\\",\\n            \\\"zone_number\\\": 3,\\n            \\\"display_order\\\": 3,\\n            \\\"manual_table_ids\\\": [],\\n            \\\"capacity_multiplier\\\": 1,\\n            \\\"section_pricing_mode\\\": \\\"uniform\\\",\\n            \\\"accessibility_features\\\": []\\n        },\\n        {\\n            \\\"id\\\": \\\"4aaca246-2142-4e9c-b216-095f449846a9\\\",\\n            \\\"name\\\": \\\"Zone 4\\\",\\n            \\\"type\\\": \\\"mixed\\\",\\n            \\\"color\\\": \\\"#3B82F6\\\",\\n            \\\"boundary\\\": [\\n                {\\n                    \\\"x\\\": 2300.0494470684484,\\n                    \\\"y\\\": 1857.7003994603256\\n                },\\n                {\\n                    \\\"x\\\": 3146.9706549649536,\\n                    \\\"y\\\": 1857.7003994603256\\n                },\\n                {\\n                    \\\"x\\\": 3150.589976366221,\\n                    \\\"y\\\": 2429.5531808605297\\n                },\\n                {\\n                    \\\"x\\\": 2234.9016618456403,\\n                    \\\"y\\\": 2429.5531808605297\\n                },\\n                {\\n                    \\\"x\\\": 2227.663019043106,\\n                    \\\"y\\\": 2259.4450750009755\\n                },\\n                {\\n                    \\\"x\\\": 2307.2880898709827,\\n                    \\\"y\\\": 2121.910861752825\\n                }\\n            ],\\n            \\\"is_active\\\": true,\\n            \\\"is_locked\\\": false,\\n            \\\"base_price\\\": 50,\\n            \\\"created_at\\\": \\\"2025-11-05T10:44:07.016Z\\\",\\n            \\\"is_visible\\\": true,\\n            \\\"updated_at\\\": \\\"2025-11-06T20:26:18.053Z\\\",\\n            \\\"zoom_level\\\": 1,\\n            \\\"naming_mode\\\": \\\"auto\\\",\\n            \\\"zone_number\\\": 4,\\n            \\\"display_order\\\": 4,\\n            \\\"manual_table_ids\\\": [],\\n            \\\"capacity_multiplier\\\": 1,\\n            \\\"section_pricing_mode\\\": \\\"uniform\\\",\\n            \\\"accessibility_features\\\": []\\n        },\\n        {\\n            \\\"id\\\": \\\"ccbb7571-4395-46c1-a4b0-210e882dd330\\\",\\n            \\\"name\\\": \\\"Zone 6\\\",\\n            \\\"type\\\": \\\"mixed\\\",\\n            \\\"color\\\": \\\"#3B82F6\\\",\\n            \\\"boundary\\\": [\\n                {\\n                    \\\"x\\\": 682.2127807020477,\\n                    \\\"y\\\": 855.1483713093343\\n                },\\n                {\\n                    \\\"x\\\": 1257.6848835035191,\\n                    \\\"y\\\": 847.9097285068\\n                },\\n                {\\n                    \\\"x\\\": 1257.6848835035191,\\n                    \\\"y\\\": 2270.3030392047767\\n                },\\n                {\\n                    \\\"x\\\": 982.6164570072184,\\n                    \\\"y\\\": 2266.68371780351\\n                },\\n                {\\n                    \\\"x\\\": 609.8263526767053,\\n                    \\\"y\\\": 1665.8763651931683\\n                },\\n                {\\n                    \\\"x\\\": 609.8263526767053,\\n                    \\\"y\\\": 1028.875798570156\\n                }\\n            ],\\n            \\\"is_active\\\": true,\\n            \\\"is_locked\\\": false,\\n            \\\"base_price\\\": 50,\\n            \\\"created_at\\\": \\\"2025-11-05T10:44:19.714Z\\\",\\n            \\\"is_visible\\\": true,\\n            \\\"updated_at\\\": \\\"2025-11-05T10:45:29.849Z\\\",\\n            \\\"zoom_level\\\": 1,\\n            \\\"naming_mode\\\": \\\"auto\\\",\\n            \\\"zone_number\\\": 6,\\n            \\\"display_order\\\": 5,\\n            \\\"manual_table_ids\\\": [],\\n            \\\"capacity_multiplier\\\": 1,\\n            \\\"section_pricing_mode\\\": \\\"uniform\\\",\\n            \\\"accessibility_features\\\": []\\n        },\\n        {\\n            \\\"id\\\": \\\"308f4b6e-e3e1-458f-ad76-8b92b438cdbc\\\",\\n            \\\"name\\\": \\\"BAL\\\",\\n            \\\"type\\\": \\\"mixed\\\",\\n            \\\"color\\\": \\\"#3B82F6\\\",\\n            \\\"boundary\\\": [\\n                {\\n                    \\\"x\\\": 671.7636372539065,\\n                    \\\"y\\\": 627.3764154829018\\n                },\\n                {\\n                    \\\"x\\\": 517.8006101388844,\\n                    \\\"y\\\": 528.9046889107442\\n                },\\n                {\\n                    \\\"x\\\": 223.62623645613172,\\n                    \\\"y\\\": 1036.7777756102896\\n                },\\n                {\\n                    \\\"x\\\": 233.43132786589743,\\n                    \\\"y\\\": 1968.8544350688328\\n                },\\n                {\\n                    \\\"x\\\": 751.0309443650457,\\n                    \\\"y\\\": 2776.59602620602\\n                },\\n                {\\n                    \\\"x\\\": 3233.503787923125,\\n                    \\\"y\\\": 2786.5946249169956\\n                },\\n                {\\n                    \\\"x\\\": 4272.579610759027,\\n                    \\\"y\\\": 1942.5295820971023\\n                },\\n                {\\n                    \\\"x\\\": 4272.579610759027,\\n                    \\\"y\\\": 1115.7395122005669\\n                },\\n                {\\n                    \\\"x\\\": 4059.039648084267,\\n                    \\\"y\\\": 782.761943283992\\n                },\\n                {\\n                    \\\"x\\\": 3747.778007575295,\\n                    \\\"y\\\": 779.1426218827248\\n                },\\n                {\\n                    \\\"x\\\": 3755.016650377829,\\n                    \\\"y\\\": 1065.069012582827\\n                },\\n                {\\n                    \\\"x\\\": 4048.1816838804657,\\n                    \\\"y\\\": 1065.069012582827\\n                },\\n                {\\n                    \\\"x\\\": 4044.5623624791983,\\n                    \\\"y\\\": 1854.0810780590584\\n                },\\n                {\\n                    \\\"x\\\": 3154.209297767487,\\n                    \\\"y\\\": 2546.254276007638\\n                },\\n                {\\n                    \\\"x\\\": 837.8436009565337,\\n                    \\\"y\\\": 2545.371465701078\\n                },\\n                {\\n                    \\\"x\\\": 446.95688961968494,\\n                    \\\"y\\\": 1911.9902204793325\\n                },\\n                {\\n                    \\\"x\\\": 448.3493303025406,\\n                    \\\"y\\\": 1033.4870527726855\\n                }\\n            ],\\n            \\\"is_active\\\": true,\\n            \\\"is_locked\\\": false,\\n            \\\"base_price\\\": 50,\\n            \\\"created_at\\\": \\\"2025-11-05T10:44:57.169Z\\\",\\n            \\\"is_visible\\\": true,\\n            \\\"updated_at\\\": \\\"2025-11-06T18:58:42.339Z\\\",\\n            \\\"zoom_level\\\": 1,\\n            \\\"naming_mode\\\": \\\"auto\\\",\\n            \\\"zone_number\\\": 7,\\n            \\\"display_order\\\": 6,\\n            \\\"manual_table_ids\\\": [],\\n            \\\"capacity_multiplier\\\": 1,\\n            \\\"section_pricing_mode\\\": \\\"uniform\\\",\\n            \\\"accessibility_features\\\": []\\n        }\\n    ],\\n    \\\"save_type\\\": \\\"manual\\\",\\n    \\\"svg_assets\\\": [],\\n    \\\"background_image\\\": {\\n        \\\"id\\\": \\\"d0c25743-329f-4155-82e8-4141ae44a1d8\\\",\\n        \\\"url\\\": \\\"blob:https://admin.globalgala.com/e205ab7e-be00-440d-89b1-cbb4187e4f40\\\",\\n        \\\"name\\\": \\\"Screenshot 2025-11-05 at 10.28.05.png\\\",\\n        \\\"scale\\\": 1.7,\\n        \\\"offset\\\": {\\n            \\\"x\\\": 0,\\n            \\\"y\\\": 0\\n        },\\n        \\\"opacity\\\": 0.3,\\n        \\\"created_at\\\": \\\"2025-11-05T10:29:52.742Z\\\",\\n        \\\"is_visible\\\": false,\\n        \\\"updated_at\\\": \\\"2025-11-05T11:02:27.029Z\\\",\\n        \\\"lock_aspect_ratio\\\": true,\\n        \\\"original_dimensions\\\": {\\n            \\\"width\\\": 2736,\\n            \\\"height\\\": 1808\\n        }\\n    },\\n    \\\"venue_id\\\": 1,\\n    \\\"version\\\": 184\\n}\"',NULL,NULL,1314,102,0,1,'2025-11-30 18:14:59','2025-11-30 20:50:22',NULL);
/*!40000 ALTER TABLE `venue_templates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `venue_themes`
--

DROP TABLE IF EXISTS `venue_themes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `venue_themes` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `theme_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `config` json NOT NULL,
  `is_global` tinyint(1) NOT NULL DEFAULT '0',
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `venue_id` bigint unsigned DEFAULT NULL,
  `event_id` bigint unsigned DEFAULT NULL,
  `author` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `version` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1.0.0',
  `mode` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'custom',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `venue_themes_theme_id_unique` (`theme_id`),
  KEY `venue_themes_is_global_is_active_index` (`is_global`,`is_active`),
  KEY `venue_themes_venue_id_is_active_index` (`venue_id`,`is_active`),
  KEY `venue_themes_event_id_is_active_index` (`event_id`,`is_active`),
  KEY `venue_themes_name_index` (`name`),
  KEY `venue_themes_is_global_index` (`is_global`),
  KEY `venue_themes_is_active_index` (`is_active`),
  KEY `venue_themes_venue_id_index` (`venue_id`),
  KEY `venue_themes_event_id_index` (`event_id`),
  KEY `venue_themes_mode_index` (`mode`),
  CONSTRAINT `venue_themes_venue_id_foreign` FOREIGN KEY (`venue_id`) REFERENCES `venues` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `venue_themes`
--

LOCK TABLES `venue_themes` WRITE;
/*!40000 ALTER TABLE `venue_themes` DISABLE KEYS */;
/*!40000 ALTER TABLE `venue_themes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `venues`
--

DROP TABLE IF EXISTS `venues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `venues` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `default_theme_id` bigint unsigned DEFAULT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `street_address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Street number and name (required for Revolut)',
  `city` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `region` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'State, province, or region (optional for Revolut)',
  `country` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `postal_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country_code` char(2) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'ISO 3166-1 alpha-2 country code (GB, US, FR, etc.)',
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `capacity` int DEFAULT NULL,
  `contact_info` json DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `venues_default_theme_id_foreign` (`default_theme_id`),
  KEY `venues_country_code_index` (`country_code`),
  CONSTRAINT `venues_default_theme_id_foreign` FOREIGN KEY (`default_theme_id`) REFERENCES `venue_themes` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `venues`
--

LOCK TABLES `venues` WRITE;
/*!40000 ALTER TABLE `venues` DISABLE KEYS */;
INSERT INTO `venues` VALUES (1,NULL,'Test Theater',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A cozy theater for testing',100,NULL,'2025-11-30 18:14:59','2025-11-30 18:14:59');
/*!40000 ALTER TABLE `venues` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `waitlist_submissions`
--

DROP TABLE IF EXISTS `waitlist_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `waitlist_submissions` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `event_id` bigint unsigned NOT NULL,
  `full_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `phone` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `seat_preferences` text COLLATE utf8mb4_unicode_ci COMMENT 'Text description of desired seats (e.g., "Table 5, seats 1-4" or "VIP section")',
  `reason_notes` text COLLATE utf8mb4_unicode_ci COMMENT 'Why they want these seats, special requests',
  `status` enum('pending','contacted','resolved') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending' COMMENT 'Admin response status: pending=not contacted, contacted=admin replied, resolved=resolved/closed',
  `contacted_at` timestamp NULL DEFAULT NULL COMMENT 'When admin marked as contacted',
  `contacted_by` bigint unsigned DEFAULT NULL COMMENT 'Admin user who marked as contacted',
  `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'For spam prevention',
  `user_agent` text COLLATE utf8mb4_unicode_ci COMMENT 'For analytics',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL COMMENT 'Soft deletes for GDPR compliance',
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_email_per_event` (`email`,`event_id`),
  KEY `idx_event_id` (`event_id`),
  KEY `idx_email` (`email`),
  KEY `idx_created_at` (`created_at`),
  KEY `fk_waitlist_contacted_by` (`contacted_by`),
  CONSTRAINT `fk_waitlist_contacted_by` FOREIGN KEY (`contacted_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_waitlist_event` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `waitlist_submissions`
--

LOCK TABLES `waitlist_submissions` WRITE;
/*!40000 ALTER TABLE `waitlist_submissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `waitlist_submissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `webhook_events`
--

DROP TABLE IF EXISTS `webhook_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `webhook_events` (
  `event_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `event_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `payment_intent_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'EDGE-013 FIX: Payment Intent ID for deduplication',
  `payload` json DEFAULT NULL,
  `status` enum('pending','processing','processed','failed') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `error_message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `retry_count` int NOT NULL DEFAULT '0',
  `received_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `processed_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`event_id`),
  KEY `webhook_events_event_type_received_at_index` (`event_type`,`received_at`),
  KEY `webhook_events_status_received_at_index` (`status`,`received_at`),
  KEY `webhook_events_processed_at_index` (`processed_at`),
  KEY `webhook_events_payment_intent_id_index` (`payment_intent_id`),
  KEY `idx_webhook_dedup` (`event_type`(100),`payment_intent_id`(100))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `webhook_events`
--

LOCK TABLES `webhook_events` WRITE;
/*!40000 ALTER TABLE `webhook_events` DISABLE KEYS */;
/*!40000 ALTER TABLE `webhook_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `whatsapp_cost_tracker`
--

DROP TABLE IF EXISTS `whatsapp_cost_tracker`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `whatsapp_cost_tracker` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `period_type` enum('hour','day') COLLATE utf8mb4_unicode_ci NOT NULL,
  `period_start` timestamp NOT NULL,
  `period_end` timestamp NOT NULL,
  `message_count` int NOT NULL DEFAULT '0',
  `total_cost` decimal(10,4) NOT NULL DEFAULT '0.0000',
  `currency` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'USD',
  `circuit_broken` tinyint(1) NOT NULL DEFAULT '0',
  `circuit_broken_at` timestamp NULL DEFAULT NULL,
  `inbound_count` int NOT NULL DEFAULT '0',
  `outbound_count` int NOT NULL DEFAULT '0',
  `template_count` int NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `whatsapp_cost_tracker_period_type_period_start_unique` (`period_type`,`period_start`),
  KEY `whatsapp_cost_tracker_period_type_period_start_period_end_index` (`period_type`,`period_start`,`period_end`),
  KEY `whatsapp_cost_tracker_period_start_index` (`period_start`),
  KEY `whatsapp_cost_tracker_circuit_broken_index` (`circuit_broken`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `whatsapp_cost_tracker`
--

LOCK TABLES `whatsapp_cost_tracker` WRITE;
/*!40000 ALTER TABLE `whatsapp_cost_tracker` DISABLE KEYS */;
/*!40000 ALTER TABLE `whatsapp_cost_tracker` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `whatsapp_logs`
--

DROP TABLE IF EXISTS `whatsapp_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `whatsapp_logs` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint unsigned DEFAULT NULL,
  `conversation_id` bigint unsigned DEFAULT NULL,
  `customer_phone` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
  `message_body` text COLLATE utf8mb4_unicode_ci,
  `twilio_sid` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  `template_sid` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` enum('queued','sent','delivered','read','failed') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'queued',
  `direction` enum('outbound','inbound') COLLATE utf8mb4_unicode_ci NOT NULL,
  `media_url` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `media_content_type` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `media_size` int DEFAULT NULL,
  `read_at` timestamp NULL DEFAULT NULL,
  `sent_at` timestamp NULL DEFAULT NULL,
  `delivered_at` timestamp NULL DEFAULT NULL,
  `error_code` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `error_message` text COLLATE utf8mb4_unicode_ci,
  `cost_amount` decimal(10,4) DEFAULT NULL,
  `cost_currency` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'USD',
  `raw_payload` json DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `whatsapp_logs_twilio_sid_unique` (`twilio_sid`),
  KEY `whatsapp_logs_order_id_index` (`order_id`),
  KEY `whatsapp_logs_conversation_id_index` (`conversation_id`),
  KEY `whatsapp_logs_customer_phone_index` (`customer_phone`),
  KEY `whatsapp_logs_direction_status_index` (`direction`,`status`),
  KEY `whatsapp_logs_sent_at_index` (`sent_at`),
  KEY `whatsapp_logs_created_at_index` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `whatsapp_logs`
--

LOCK TABLES `whatsapp_logs` WRITE;
/*!40000 ALTER TABLE `whatsapp_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `whatsapp_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `whatsapp_templates`
--

DROP TABLE IF EXISTS `whatsapp_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `whatsapp_templates` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `template_sid` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  `template_name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  `friendly_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` enum('pending','approved','rejected','disabled','paused') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending',
  `language` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en',
  `content_body` text COLLATE utf8mb4_unicode_ci,
  `variables` json DEFAULT NULL,
  `submitted_at` timestamp NULL DEFAULT NULL,
  `approved_at` timestamp NULL DEFAULT NULL,
  `rejected_at` timestamp NULL DEFAULT NULL,
  `rejection_reason` text COLLATE utf8mb4_unicode_ci,
  `messages_sent` int NOT NULL DEFAULT '0',
  `last_used_at` timestamp NULL DEFAULT NULL,
  `last_synced_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `whatsapp_templates_template_sid_unique` (`template_sid`),
  KEY `whatsapp_templates_template_name_index` (`template_name`),
  KEY `whatsapp_templates_status_index` (`status`),
  KEY `whatsapp_templates_template_name_language_index` (`template_name`,`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `whatsapp_templates`
--

LOCK TABLES `whatsapp_templates` WRITE;
/*!40000 ALTER TABLE `whatsapp_templates` DISABLE KEYS */;
/*!40000 ALTER TABLE `whatsapp_templates` ENABLE KEYS */;
UNLOCK TABLES;
SET @@SESSION.SQL_LOG_BIN = @MYSQLDUMP_TEMP_LOG_BIN;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2025-12-08 13:01:13
