Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
/*M!999999\- enable the sandbox mode */ -- MariaDB dump 10.19 Distrib 10.6.22-MariaDB, for Linux (x86_64) -- -- Host: localhost Database: admin_graceme -- ------------------------------------------------------ -- Server version 10.6.22-MariaDB /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; /*!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 */; -- -- Table structure for table `graceme_amelia_appointments` -- DROP TABLE IF EXISTS `graceme_amelia_appointments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_appointments` ( `id` int(11) NOT NULL AUTO_INCREMENT, `status` enum('approved','pending','canceled','rejected','no-show') DEFAULT NULL, `bookingStart` datetime NOT NULL, `bookingEnd` datetime NOT NULL, `notifyParticipants` tinyint(1) NOT NULL, `serviceId` int(11) NOT NULL, `packageId` int(11) DEFAULT NULL, `providerId` int(11) NOT NULL, `locationId` int(11) DEFAULT NULL, `internalNotes` mediumtext DEFAULT NULL, `googleCalendarEventId` varchar(255) DEFAULT NULL, `googleMeetUrl` varchar(255) DEFAULT NULL, `outlookCalendarEventId` varchar(255) DEFAULT NULL, `microsoftTeamsUrl` varchar(255) DEFAULT NULL, `appleCalendarEventId` varchar(255) DEFAULT NULL, `zoomMeeting` mediumtext DEFAULT NULL, `lessonSpace` mediumtext DEFAULT NULL, `parentId` int(11) DEFAULT NULL, `error` mediumtext DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_appointments` -- LOCK TABLES `graceme_amelia_appointments` WRITE; /*!40000 ALTER TABLE `graceme_amelia_appointments` DISABLE KEYS */; INSERT INTO `graceme_amelia_appointments` VALUES (1,'approved','2025-04-25 09:30:00','2025-04-25 10:00:00',1,26,NULL,1,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(2,'approved','2025-05-02 09:30:00','2025-05-02 10:00:00',1,28,NULL,1,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(3,'approved','2025-04-28 14:30:00','2025-04-28 15:00:00',1,1,NULL,1,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''); /*!40000 ALTER TABLE `graceme_amelia_appointments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_cache` -- DROP TABLE IF EXISTS `graceme_amelia_cache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_cache` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `paymentId` int(11) DEFAULT NULL, `data` text DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_cache` -- LOCK TABLES `graceme_amelia_cache` WRITE; /*!40000 ALTER TABLE `graceme_amelia_cache` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_cache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_categories` -- DROP TABLE IF EXISTS `graceme_amelia_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_categories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `status` enum('hidden','visible','disabled') NOT NULL DEFAULT 'visible', `name` varchar(255) NOT NULL DEFAULT '', `position` int(11) NOT NULL, `translations` text DEFAULT NULL, `color` varchar(255) NOT NULL DEFAULT '#1788FB', `pictureFullPath` varchar(767) DEFAULT NULL, `pictureThumbPath` varchar(767) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_categories` -- LOCK TABLES `graceme_amelia_categories` WRITE; /*!40000 ALTER TABLE `graceme_amelia_categories` DISABLE KEYS */; INSERT INTO `graceme_amelia_categories` VALUES (1,'visible','Valmont Skincare',1,NULL,'#1A84EE',NULL,NULL),(2,'visible','Special Facials',2,NULL,'#1A84EE',NULL,NULL),(3,'visible','Waxing',3,NULL,'#1A84EE',NULL,NULL),(4,'visible','Massage Therapy',4,NULL,'#1A84EE',NULL,NULL); /*!40000 ALTER TABLE `graceme_amelia_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_coupons` -- DROP TABLE IF EXISTS `graceme_amelia_coupons`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_coupons` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `discount` double NOT NULL, `deduction` double NOT NULL, `limit` double NOT NULL, `customerLimit` double NOT NULL DEFAULT 0, `status` enum('hidden','visible') NOT NULL, `notificationInterval` int(11) NOT NULL DEFAULT 0, `notificationRecurring` tinyint(1) NOT NULL DEFAULT 0, `expirationDate` datetime DEFAULT NULL, `allServices` tinyint(1) NOT NULL DEFAULT 0, `allEvents` tinyint(1) NOT NULL DEFAULT 0, `allPackages` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_coupons` -- LOCK TABLES `graceme_amelia_coupons` WRITE; /*!40000 ALTER TABLE `graceme_amelia_coupons` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_coupons` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_coupons_to_events` -- DROP TABLE IF EXISTS `graceme_amelia_coupons_to_events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_coupons_to_events` ( `id` int(11) NOT NULL AUTO_INCREMENT, `couponId` int(11) NOT NULL, `eventId` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_coupons_to_events` -- LOCK TABLES `graceme_amelia_coupons_to_events` WRITE; /*!40000 ALTER TABLE `graceme_amelia_coupons_to_events` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_coupons_to_events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_coupons_to_packages` -- DROP TABLE IF EXISTS `graceme_amelia_coupons_to_packages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_coupons_to_packages` ( `id` int(11) NOT NULL AUTO_INCREMENT, `couponId` int(11) NOT NULL, `packageId` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_coupons_to_packages` -- LOCK TABLES `graceme_amelia_coupons_to_packages` WRITE; /*!40000 ALTER TABLE `graceme_amelia_coupons_to_packages` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_coupons_to_packages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_coupons_to_services` -- DROP TABLE IF EXISTS `graceme_amelia_coupons_to_services`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_coupons_to_services` ( `id` int(11) NOT NULL AUTO_INCREMENT, `couponId` int(11) NOT NULL, `serviceId` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_coupons_to_services` -- LOCK TABLES `graceme_amelia_coupons_to_services` WRITE; /*!40000 ALTER TABLE `graceme_amelia_coupons_to_services` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_coupons_to_services` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_custom_fields` -- DROP TABLE IF EXISTS `graceme_amelia_custom_fields`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_custom_fields` ( `id` int(11) NOT NULL AUTO_INCREMENT, `label` text DEFAULT NULL, `type` enum('text','text-area','select','checkbox','radio','content','file','datepicker','address') NOT NULL DEFAULT 'text', `required` tinyint(1) NOT NULL DEFAULT 0, `position` int(11) NOT NULL, `translations` text DEFAULT NULL, `allServices` tinyint(1) DEFAULT NULL, `allEvents` tinyint(1) DEFAULT NULL, `useAsLocation` tinyint(1) DEFAULT NULL, `width` int(11) NOT NULL DEFAULT 50, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_custom_fields` -- LOCK TABLES `graceme_amelia_custom_fields` WRITE; /*!40000 ALTER TABLE `graceme_amelia_custom_fields` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_custom_fields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_custom_fields_events` -- DROP TABLE IF EXISTS `graceme_amelia_custom_fields_events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_custom_fields_events` ( `id` int(11) NOT NULL AUTO_INCREMENT, `customFieldId` int(11) NOT NULL, `eventId` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_custom_fields_events` -- LOCK TABLES `graceme_amelia_custom_fields_events` WRITE; /*!40000 ALTER TABLE `graceme_amelia_custom_fields_events` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_custom_fields_events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_custom_fields_options` -- DROP TABLE IF EXISTS `graceme_amelia_custom_fields_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_custom_fields_options` ( `id` int(11) NOT NULL AUTO_INCREMENT, `customFieldId` int(11) NOT NULL, `label` text DEFAULT NULL, `position` int(11) NOT NULL, `translations` text DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_custom_fields_options` -- LOCK TABLES `graceme_amelia_custom_fields_options` WRITE; /*!40000 ALTER TABLE `graceme_amelia_custom_fields_options` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_custom_fields_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_custom_fields_services` -- DROP TABLE IF EXISTS `graceme_amelia_custom_fields_services`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_custom_fields_services` ( `id` int(11) NOT NULL AUTO_INCREMENT, `customFieldId` int(11) NOT NULL, `serviceId` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_custom_fields_services` -- LOCK TABLES `graceme_amelia_custom_fields_services` WRITE; /*!40000 ALTER TABLE `graceme_amelia_custom_fields_services` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_custom_fields_services` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_customer_bookings` -- DROP TABLE IF EXISTS `graceme_amelia_customer_bookings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_customer_bookings` ( `id` int(11) NOT NULL AUTO_INCREMENT, `appointmentId` int(11) DEFAULT NULL, `customerId` int(11) NOT NULL, `status` enum('approved','pending','canceled','rejected','no-show','waiting') DEFAULT NULL, `price` double NOT NULL, `tax` varchar(255) DEFAULT NULL, `persons` int(11) NOT NULL, `couponId` int(11) DEFAULT NULL, `token` varchar(10) DEFAULT NULL, `customFields` text DEFAULT NULL, `info` text DEFAULT NULL, `utcOffset` int(3) DEFAULT NULL, `aggregatedPrice` tinyint(1) DEFAULT 1, `packageCustomerServiceId` int(11) DEFAULT NULL, `duration` int(11) DEFAULT NULL, `created` datetime DEFAULT NULL, `actionsCompleted` tinyint(1) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_customer_bookings` -- LOCK TABLES `graceme_amelia_customer_bookings` WRITE; /*!40000 ALTER TABLE `graceme_amelia_customer_bookings` DISABLE KEYS */; INSERT INTO `graceme_amelia_customer_bookings` VALUES (1,1,2,'approved',90,NULL,1,NULL,'5b87b8626d',NULL,'{\"firstName\":\"Designs\",\"lastName\":\"Funnel\",\"phone\":null,\"locale\":\"en_US\",\"timeZone\":\"America\\/New_York\",\"urlParams\":null}',NULL,1,NULL,1800,'2025-04-18 20:05:24',1),(2,2,2,'approved',80,NULL,1,NULL,'945d7b154f',NULL,'{\"firstName\":\"Designs\",\"lastName\":\"Funnel\",\"phone\":null,\"locale\":\"en_US\",\"timeZone\":\"America\\/New_York\",\"urlParams\":null}',NULL,1,NULL,1800,'2025-04-18 20:47:49',1),(3,3,3,'approved',99,NULL,1,NULL,'6a4bceb01e',NULL,'{\"firstName\":\"jack\",\"lastName\":\"benjamin\",\"phone\":\"+12132599304\",\"locale\":\"en_US\",\"timeZone\":\"America\\/Los_Angeles\",\"urlParams\":null}',NULL,1,NULL,1800,'2025-04-25 16:36:34',1); /*!40000 ALTER TABLE `graceme_amelia_customer_bookings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_customer_bookings_to_events_periods` -- DROP TABLE IF EXISTS `graceme_amelia_customer_bookings_to_events_periods`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_customer_bookings_to_events_periods` ( `id` int(11) NOT NULL AUTO_INCREMENT, `customerBookingId` bigint(20) NOT NULL, `eventPeriodId` bigint(20) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `bookingEventPeriod` (`customerBookingId`,`eventPeriodId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_customer_bookings_to_events_periods` -- LOCK TABLES `graceme_amelia_customer_bookings_to_events_periods` WRITE; /*!40000 ALTER TABLE `graceme_amelia_customer_bookings_to_events_periods` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_customer_bookings_to_events_periods` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_customer_bookings_to_events_tickets` -- DROP TABLE IF EXISTS `graceme_amelia_customer_bookings_to_events_tickets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_customer_bookings_to_events_tickets` ( `id` int(11) NOT NULL AUTO_INCREMENT, `customerBookingId` bigint(20) NOT NULL, `eventTicketId` bigint(20) NOT NULL, `price` double DEFAULT 0, `persons` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_customer_bookings_to_events_tickets` -- LOCK TABLES `graceme_amelia_customer_bookings_to_events_tickets` WRITE; /*!40000 ALTER TABLE `graceme_amelia_customer_bookings_to_events_tickets` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_customer_bookings_to_events_tickets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_customer_bookings_to_extras` -- DROP TABLE IF EXISTS `graceme_amelia_customer_bookings_to_extras`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_customer_bookings_to_extras` ( `id` int(11) NOT NULL AUTO_INCREMENT, `customerBookingId` int(11) NOT NULL, `extraId` int(11) NOT NULL, `quantity` int(11) NOT NULL, `price` double NOT NULL, `tax` varchar(255) DEFAULT NULL, `aggregatedPrice` tinyint(1) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `bookingExtra` (`customerBookingId`,`extraId`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_customer_bookings_to_extras` -- LOCK TABLES `graceme_amelia_customer_bookings_to_extras` WRITE; /*!40000 ALTER TABLE `graceme_amelia_customer_bookings_to_extras` DISABLE KEYS */; INSERT INTO `graceme_amelia_customer_bookings_to_extras` VALUES (1,2,109,1,45,NULL,0),(2,2,110,1,95,NULL,0),(3,2,111,1,55,NULL,0),(4,2,112,1,35,NULL,0); /*!40000 ALTER TABLE `graceme_amelia_customer_bookings_to_extras` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_events` -- DROP TABLE IF EXISTS `graceme_amelia_events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_events` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parentId` bigint(20) DEFAULT NULL, `name` varchar(255) NOT NULL DEFAULT '', `status` enum('approved','pending','canceled','rejected') NOT NULL, `bookingOpens` datetime DEFAULT NULL, `bookingCloses` datetime DEFAULT NULL, `bookingOpensRec` enum('same','calculate') DEFAULT 'same', `bookingClosesRec` enum('same','calculate') DEFAULT 'same', `ticketRangeRec` enum('same','calculate') DEFAULT 'calculate', `recurringCycle` enum('daily','weekly','monthly','yearly') DEFAULT NULL, `recurringOrder` int(11) DEFAULT NULL, `recurringInterval` int(11) DEFAULT 1, `recurringMonthly` enum('each','on') DEFAULT 'each', `monthlyDate` datetime DEFAULT NULL, `monthlyOnRepeat` enum('first','second','third','fourth','fifth','last') DEFAULT NULL, `monthlyOnDay` enum('monday','tuesday','wednesday','thursday','friday','saturday','sunday') DEFAULT NULL, `recurringUntil` datetime DEFAULT NULL, `maxCapacity` int(11) NOT NULL, `maxCustomCapacity` int(11) DEFAULT NULL, `maxExtraPeople` int(11) DEFAULT NULL, `price` double NOT NULL, `locationId` bigint(20) DEFAULT NULL, `customLocation` varchar(255) DEFAULT NULL, `description` mediumtext DEFAULT NULL, `color` varchar(255) DEFAULT NULL, `show` tinyint(1) NOT NULL DEFAULT 1, `notifyParticipants` tinyint(1) NOT NULL, `created` datetime NOT NULL, `settings` mediumtext DEFAULT NULL, `zoomUserId` varchar(255) DEFAULT NULL, `bringingAnyone` tinyint(1) DEFAULT 1, `bookMultipleTimes` tinyint(1) DEFAULT 1, `translations` text DEFAULT NULL, `depositPayment` enum('disabled','fixed','percentage') DEFAULT 'disabled', `depositPerPerson` tinyint(1) DEFAULT 1, `fullPayment` tinyint(1) DEFAULT 0, `deposit` double DEFAULT 0, `customPricing` tinyint(1) DEFAULT 0, `organizerId` bigint(20) DEFAULT NULL, `closeAfterMin` int(11) DEFAULT NULL, `closeAfterMinBookings` tinyint(1) DEFAULT 0, `aggregatedPrice` tinyint(1) DEFAULT 1, `error` mediumtext DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_events` -- LOCK TABLES `graceme_amelia_events` WRITE; /*!40000 ALTER TABLE `graceme_amelia_events` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_events_periods` -- DROP TABLE IF EXISTS `graceme_amelia_events_periods`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_events_periods` ( `id` int(11) NOT NULL AUTO_INCREMENT, `eventId` bigint(20) NOT NULL, `periodStart` datetime NOT NULL, `periodEnd` datetime NOT NULL, `zoomMeeting` mediumtext DEFAULT NULL, `lessonSpace` mediumtext DEFAULT NULL, `googleCalendarEventId` varchar(255) DEFAULT NULL, `googleMeetUrl` varchar(255) DEFAULT NULL, `outlookCalendarEventId` varchar(255) DEFAULT NULL, `microsoftTeamsUrl` varchar(255) DEFAULT NULL, `appleCalendarEventId` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_events_periods` -- LOCK TABLES `graceme_amelia_events_periods` WRITE; /*!40000 ALTER TABLE `graceme_amelia_events_periods` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_events_periods` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_events_tags` -- DROP TABLE IF EXISTS `graceme_amelia_events_tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_events_tags` ( `id` int(11) NOT NULL AUTO_INCREMENT, `eventId` bigint(20) NOT NULL, `name` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_events_tags` -- LOCK TABLES `graceme_amelia_events_tags` WRITE; /*!40000 ALTER TABLE `graceme_amelia_events_tags` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_events_tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_events_to_providers` -- DROP TABLE IF EXISTS `graceme_amelia_events_to_providers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_events_to_providers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `eventId` bigint(20) NOT NULL, `userId` bigint(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_events_to_providers` -- LOCK TABLES `graceme_amelia_events_to_providers` WRITE; /*!40000 ALTER TABLE `graceme_amelia_events_to_providers` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_events_to_providers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_events_to_tickets` -- DROP TABLE IF EXISTS `graceme_amelia_events_to_tickets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_events_to_tickets` ( `id` int(11) NOT NULL AUTO_INCREMENT, `eventId` bigint(20) NOT NULL, `enabled` tinyint(1) DEFAULT 1, `name` varchar(255) NOT NULL, `price` double DEFAULT 0, `dateRanges` text DEFAULT NULL, `spots` int(11) NOT NULL, `waitingListSpots` int(11) NOT NULL, `translations` text DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_events_to_tickets` -- LOCK TABLES `graceme_amelia_events_to_tickets` WRITE; /*!40000 ALTER TABLE `graceme_amelia_events_to_tickets` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_events_to_tickets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_extras` -- DROP TABLE IF EXISTS `graceme_amelia_extras`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_extras` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '', `description` mediumtext DEFAULT NULL, `price` double NOT NULL, `maxQuantity` int(11) NOT NULL, `duration` int(11) DEFAULT NULL, `serviceId` int(11) NOT NULL, `position` int(11) NOT NULL, `aggregatedPrice` tinyint(1) DEFAULT NULL, `translations` text DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=133 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_extras` -- LOCK TABLES `graceme_amelia_extras` WRITE; /*!40000 ALTER TABLE `graceme_amelia_extras` DISABLE KEYS */; INSERT INTO `graceme_amelia_extras` VALUES (1,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,1,1,0,NULL),(2,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,1,2,0,NULL),(3,'Valmont Collagen Eye Treatment','The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.',55,1,NULL,1,3,0,NULL),(4,'Celluma Light Therapy','Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.',35,1,NULL,1,4,0,NULL),(5,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,2,1,0,NULL),(6,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,2,2,0,NULL),(7,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,2,3,0,NULL),(8,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,2,4,0,NULL),(9,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,3,1,0,NULL),(10,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,3,2,0,NULL),(11,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,3,3,0,NULL),(12,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,3,4,0,NULL),(13,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,4,1,0,NULL),(14,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,4,2,0,NULL),(15,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,4,3,0,NULL),(16,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,4,4,0,NULL),(17,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,5,1,0,NULL),(18,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,5,2,0,NULL),(19,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,5,3,0,NULL),(20,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,5,4,0,NULL),(21,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,6,1,0,NULL),(22,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,6,2,0,NULL),(23,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,6,3,0,NULL),(24,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,6,4,0,NULL),(25,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,7,1,0,NULL),(26,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,7,2,0,NULL),(27,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,7,3,0,NULL),(28,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,7,4,0,NULL),(29,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,8,1,0,NULL),(30,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,8,2,0,NULL),(31,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,8,3,0,NULL),(32,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,8,4,0,NULL),(33,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,9,1,0,NULL),(34,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,9,2,0,NULL),(35,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,9,3,0,NULL),(36,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,9,4,0,NULL),(37,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,10,1,0,NULL),(38,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,10,2,0,NULL),(39,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,10,3,0,NULL),(40,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,10,4,0,NULL),(41,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,11,1,0,NULL),(42,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,11,2,0,NULL),(43,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,11,3,0,NULL),(44,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,11,4,0,NULL),(45,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,12,1,0,NULL),(46,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,12,2,0,NULL),(47,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,12,3,0,NULL),(48,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,12,4,0,NULL),(49,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,13,1,0,NULL),(50,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,13,2,0,NULL),(51,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,13,3,0,NULL),(52,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,13,4,0,NULL),(53,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,14,1,0,NULL),(54,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,14,2,0,NULL),(55,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,14,3,0,NULL),(56,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,14,4,0,NULL),(57,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,15,1,0,NULL),(58,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,15,2,0,NULL),(59,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,15,3,0,NULL),(60,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,15,4,0,NULL),(61,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,16,1,0,NULL),(62,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,16,2,0,NULL),(63,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,16,3,0,NULL),(64,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,16,4,0,NULL),(65,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,17,1,0,NULL),(66,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,17,2,0,NULL),(67,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,17,3,0,NULL),(68,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,17,4,0,NULL),(69,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,18,1,0,NULL),(70,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,18,2,0,NULL),(71,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,18,3,0,NULL),(72,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,18,4,0,NULL),(73,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,19,1,0,NULL),(74,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,19,2,0,NULL),(75,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,19,3,0,NULL),(76,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,19,4,0,NULL),(77,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,20,1,0,NULL),(78,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,20,2,0,NULL),(79,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,20,3,0,NULL),(80,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,20,4,0,NULL),(81,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,21,1,0,NULL),(82,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,21,2,0,NULL),(83,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,21,3,0,NULL),(84,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,21,4,0,NULL),(85,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,22,1,0,NULL),(86,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,22,2,0,NULL),(87,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,22,3,0,NULL),(88,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,22,4,0,NULL),(89,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,23,1,0,NULL),(90,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,23,2,0,NULL),(91,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,23,3,0,NULL),(92,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,23,4,0,NULL),(93,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,24,1,0,NULL),(94,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,24,2,0,NULL),(95,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,24,3,0,NULL),(96,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,24,4,0,NULL),(97,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,25,1,0,NULL),(98,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,25,2,0,NULL),(99,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,25,3,0,NULL),(100,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,25,4,0,NULL),(101,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,26,1,0,NULL),(102,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,26,2,0,NULL),(103,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,26,3,0,NULL),(104,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,26,4,0,NULL),(105,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,27,1,0,NULL),(106,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,27,2,0,NULL),(107,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,27,3,0,NULL),(108,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,27,4,0,NULL),(109,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,28,1,0,NULL),(110,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,28,2,0,NULL),(111,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,28,3,0,NULL),(112,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,28,4,0,NULL),(113,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,29,1,0,NULL),(114,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,29,2,0,NULL),(115,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,29,3,0,NULL),(116,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,29,4,0,NULL),(117,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,30,1,0,NULL),(118,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,30,2,0,NULL),(119,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,30,3,0,NULL),(120,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,30,4,0,NULL),(121,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,31,1,0,NULL),(122,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,31,2,0,NULL),(123,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,31,3,0,NULL),(124,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,31,4,0,NULL),(125,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,32,1,0,NULL),(126,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,32,2,0,NULL),(127,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,32,3,0,NULL),(128,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,32,4,0,NULL),(129,' Diamond Microderm','Diamond Microderm is a luxurious skin treatment that gently exfoliates dead skin cells to reveal a smoother, more radiant complexion. This advanced technique uses diamond-tipped wands to enhance collagen production and improve skin texture, delivering noticeable results with minimal downtime.',45,1,NULL,33,1,0,NULL),(130,'Valmont Collagen Facial Treatment','

The Valmont Collagen Facial Treatment delivers intense hydration and rejuvenation, utilizing high-quality collagen to plump and firm the skin. Experience a luxurious and revitalizing facial that enhances your natural glow while reducing the appearance of fine lines and wrinkles.

',95,1,NULL,33,2,0,NULL),(131,'Valmont Collagen Eye Treatment','

The Valmont Collagen Eye Treatment targets the delicate eye area to deliver deep hydration while boosting elasticity and reducing the appearance of fine lines. This luxurious treatment revitalizes tired eyes, enhancing their brightness and leaving the skin looking refreshed and youthful.

',55,1,NULL,33,3,0,NULL),(132,'Celluma Light Therapy','

Celluma Light Therapy uses advanced LED technology to promote skin rejuvenation, reduce inflammation, and enhance overall skin health. This non-invasive treatment is suitable for all skin types and can help improve the appearance of fine lines, wrinkles, and acne.

',35,1,NULL,33,4,0,NULL); /*!40000 ALTER TABLE `graceme_amelia_extras` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_galleries` -- DROP TABLE IF EXISTS `graceme_amelia_galleries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_galleries` ( `id` int(11) NOT NULL AUTO_INCREMENT, `entityId` int(11) NOT NULL, `entityType` enum('service','event','package') NOT NULL, `pictureFullPath` varchar(767) DEFAULT NULL, `pictureThumbPath` varchar(767) DEFAULT NULL, `position` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_galleries` -- LOCK TABLES `graceme_amelia_galleries` WRITE; /*!40000 ALTER TABLE `graceme_amelia_galleries` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_galleries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_locations` -- DROP TABLE IF EXISTS `graceme_amelia_locations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_locations` ( `id` int(11) NOT NULL AUTO_INCREMENT, `status` enum('hidden','visible','disabled') NOT NULL DEFAULT 'visible', `name` varchar(255) NOT NULL DEFAULT '', `description` mediumtext DEFAULT NULL, `address` varchar(255) NOT NULL, `phone` varchar(63) NOT NULL, `latitude` decimal(8,6) NOT NULL, `longitude` decimal(9,6) NOT NULL, `pictureFullPath` varchar(767) DEFAULT NULL, `pictureThumbPath` varchar(767) DEFAULT NULL, `pin` mediumtext DEFAULT NULL, `translations` text DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_locations` -- LOCK TABLES `graceme_amelia_locations` WRITE; /*!40000 ALTER TABLE `graceme_amelia_locations` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_locations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_locations_views` -- DROP TABLE IF EXISTS `graceme_amelia_locations_views`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_locations_views` ( `id` int(11) NOT NULL AUTO_INCREMENT, `locationId` int(11) NOT NULL, `date` date NOT NULL, `views` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_locations_views` -- LOCK TABLES `graceme_amelia_locations_views` WRITE; /*!40000 ALTER TABLE `graceme_amelia_locations_views` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_locations_views` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_notifications` -- DROP TABLE IF EXISTS `graceme_amelia_notifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_notifications` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '', `customName` varchar(255) DEFAULT NULL, `status` enum('enabled','disabled') NOT NULL DEFAULT 'enabled', `type` enum('email','sms','whatsapp') NOT NULL, `entity` enum('appointment','event') NOT NULL DEFAULT 'appointment', `time` time DEFAULT NULL, `timeBefore` int(11) DEFAULT NULL, `timeAfter` int(11) DEFAULT NULL, `sendTo` enum('customer','provider') NOT NULL, `subject` varchar(255) NOT NULL DEFAULT '', `content` text DEFAULT NULL, `translations` text DEFAULT NULL, `sendOnlyMe` tinyint(1) DEFAULT 0, `whatsAppTemplate` varchar(255) DEFAULT NULL, `minimumTimeBeforeBooking` text DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=119 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_notifications` -- LOCK TABLES `graceme_amelia_notifications` WRITE; /*!40000 ALTER TABLE `graceme_amelia_notifications` DISABLE KEYS */; INSERT INTO `graceme_amelia_notifications` VALUES (1,'customer_appointment_approved',NULL,'enabled','email','appointment',NULL,NULL,NULL,'customer','%service_name% Appointment Approved','Dear %customer_full_name%,

You have successfully scheduled\n %service_name% appointment with %employee_full_name%. We are \n waiting you at %location_address% on %appointment_date_time%.\n

Thank you for choosing our company,
%company_name%',NULL,0,NULL,NULL),(2,'customer_appointment_pending',NULL,'enabled','email','appointment',NULL,NULL,NULL,'customer','%service_name% Appointment Pending','Dear %customer_full_name%,

The %service_name% appointment \n with %employee_full_name% at %location_address%, scheduled for\n %appointment_date_time% is waiting for a confirmation.

Thank you for \n choosing our company,
%company_name%',NULL,0,NULL,NULL),(3,'customer_appointment_rejected',NULL,'enabled','email','appointment',NULL,NULL,NULL,'customer','%service_name% Appointment Rejected','Dear %customer_full_name%,

Your %service_name% \n appointment, scheduled on %appointment_date_time% at %location_address%\n has been rejected.

Thank you for choosing our company,\n
%company_name%',NULL,0,NULL,NULL),(4,'customer_appointment_canceled',NULL,'enabled','email','appointment',NULL,NULL,NULL,'customer','%service_name% Appointment Canceled','Dear %customer_full_name%,

Your %service_name% \n appointment, scheduled on %appointment_date_time% at %location_address%\n has been canceled.

Thank you for choosing our company,\n
%company_name%',NULL,0,NULL,NULL),(5,'customer_appointment_rescheduled',NULL,'enabled','email','appointment',NULL,NULL,NULL,'customer','%service_name% Appointment Rescheduled','Dear %customer_full_name%,

The details for your \n %service_name% appointment with %employee_full_name% at \n %location_name% has been changed. The appointment is now set for \n %appointment_date% at %appointment_start_time%.

\n Thank you for choosing our company,
%company_name%',NULL,0,NULL,NULL),(6,'customer_appointment_next_day_reminder',NULL,'enabled','email','appointment','17:00:00',NULL,NULL,'customer','%service_name% Appointment Reminder','Dear %customer_full_name%,

We would like to remind you that you have \n %service_name% appointment tomorrow at %appointment_start_time%.\n We are waiting for you at %location_name%.

Thank you for \n choosing our company,
%company_name%',NULL,0,NULL,NULL),(7,'customer_appointment_follow_up',NULL,'enabled','email','appointment',NULL,NULL,1800,'customer','%service_name% Appointment Follow Up','Dear %customer_full_name%,

Thank you once again for choosing our company. \n We hope you were satisfied with your %service_name%.

We look forward to \n seeing you again soon,
%company_name%',NULL,0,NULL,NULL),(8,'customer_birthday_greeting',NULL,'enabled','email','appointment','17:00:00',NULL,NULL,'customer','Happy Birthday','Dear %customer_full_name%,

Happy birthday!
We wish you all the best.\n

Thank you for choosing our company,
%company_name%',NULL,0,NULL,NULL),(9,'provider_appointment_approved',NULL,'enabled','email','appointment',NULL,NULL,NULL,'provider','%service_name% Appointment Approved','Hi %employee_full_name%,

You have one confirmed \n %service_name% appointment at %location_name% on \n %appointment_date% at %appointment_start_time%. The appointment \n is added to your schedule.

Thank you,
%company_name%',NULL,0,NULL,NULL),(10,'provider_appointment_pending',NULL,'enabled','email','appointment',NULL,NULL,NULL,'provider','%service_name% Appointment Pending','Hi %employee_full_name%,

You have new appointment \n in %service_name%. The appointment is waiting for a confirmation.

Thank \n you,
%company_name%',NULL,0,NULL,NULL),(11,'provider_appointment_rejected',NULL,'enabled','email','appointment',NULL,NULL,NULL,'provider','%service_name% Appointment Rejected','Hi %employee_full_name%,

Your %service_name% appointment \n at %location_name%, scheduled for %appointment_date% at \n %appointment_start_time% has been rejected.\n

Thank you,
%company_name%',NULL,0,NULL,NULL),(12,'provider_appointment_canceled',NULL,'enabled','email','appointment',NULL,NULL,NULL,'provider','%service_name% Appointment Canceled','Hi %employee_full_name%,

Your %service_name% appointment,\n scheduled on %appointment_date%, at %location_name% has been \n canceled.

Thank you,
%company_name%',NULL,0,NULL,NULL),(13,'provider_appointment_rescheduled',NULL,'enabled','email','appointment',NULL,NULL,NULL,'provider','%service_name% Appointment Rescheduled','Hi %employee_full_name%,

The details for your \n %service_name% appointment at %location_name% has been changed. \n The appointment is now set for %appointment_date% at \n %appointment_start_time%.

Thank you,
%company_name%',NULL,0,NULL,NULL),(14,'provider_appointment_next_day_reminder',NULL,'enabled','email','appointment','17:00:00',NULL,NULL,'provider','%service_name% Appointment Reminder','Dear %employee_full_name%,

We would like to remind you that you have \n %service_name% appointment tomorrow at %appointment_start_time%\n at %location_name%.

Thank you, \n
%company_name%',NULL,0,NULL,NULL),(15,'customer_appointment_approved',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n\nYou have successfully scheduled %service_name% appointment with %employee_full_name%. We are waiting for you at %location_address% on %appointment_date_time%.\n\nThank you for choosing our company,\n%company_name%',NULL,0,NULL,NULL),(16,'customer_appointment_pending',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'customer','NULL','Dear %customer_full_name%, \n \nThe %service_name% appointment with %employee_full_name% at %location_address%, scheduled for %appointment_date_time% is waiting for a confirmation.\n \nThank you for choosing our company,\n%company_name%',NULL,0,NULL,NULL),(17,'customer_appointment_rejected',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n \nYour %service_name% appointment, scheduled on %appointment_date_time% at %location_address% has been rejected.\n \nThank you for choosing our company,\n%company_name%',NULL,0,NULL,NULL),(18,'customer_appointment_canceled',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n \nYour %service_name% appointment, scheduled on %appointment_date_time% at %location_address% has been canceled. \n \nThank you for choosing our company,\n%company_name%',NULL,0,NULL,NULL),(19,'customer_appointment_rescheduled',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n \nThe details for your %service_name% appointment with %employee_full_name% at %location_name% has been changed. The appointment is now set for %appointment_date% at %appointment_start_time%.\n \nThank you for choosing our company,\n%company_name%',NULL,0,NULL,NULL),(20,'customer_appointment_next_day_reminder',NULL,'enabled','sms','appointment','17:00:00',NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n \nWe would like to remind you that you have %service_name% appointment tomorrow at %appointment_start_time%. We are waiting for you at %location_name%.\n \nThank you for choosing our company,\n%company_name%',NULL,0,NULL,NULL),(21,'customer_appointment_follow_up',NULL,'enabled','sms','appointment',NULL,NULL,1800,'customer','NULL','Dear %customer_full_name%,\n \nThank you once again for choosing our company. We hope you were satisfied with your %service_name%.\n \nWe look forward to seeing you again soon,\n%company_name%',NULL,0,NULL,NULL),(22,'customer_birthday_greeting',NULL,'enabled','sms','appointment','17:00:00',NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n \nHappy birthday! We wish you all the best. \n \nThank you for choosing our company,\n%company_name%',NULL,0,NULL,NULL),(23,'provider_appointment_approved',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'provider','NULL','Hi %employee_full_name%,\n \nYou have one confirmed %service_name% appointment at %location_name% on %appointment_date% at %appointment_start_time%. The appointment is added to your schedule.\n \nThank you,\n%company_name%',NULL,0,NULL,NULL),(24,'provider_appointment_pending',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'provider','NULL','Hi %employee_full_name%,\n \nYou have new appointment in %service_name%. The appointment is waiting for a confirmation.\n \nThank you,\n%company_name%',NULL,0,NULL,NULL),(25,'provider_appointment_rejected',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'provider','NULL','Hi %employee_full_name%,\n \nYour %service_name% appointment at %location_name%, scheduled for %appointment_date% at %appointment_start_time% has been rejected. \n \nThank you,\n%company_name%',NULL,0,NULL,NULL),(26,'provider_appointment_canceled',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'provider','NULL','Hi %employee_full_name%,\n \nYour %service_name% appointment, scheduled on %appointment_date%, at %location_name% has been canceled.\n \nThank you,\n%company_name%',NULL,0,NULL,NULL),(27,'provider_appointment_rescheduled',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'provider','NULL','Hi %employee_full_name%,\n \nThe details for your %service_name% appointment at %location_name% has been changed. The appointment is now set for %appointment_date% at %appointment_start_time%.\n \nThank you,\n%company_name%',NULL,0,NULL,NULL),(28,'provider_appointment_next_day_reminder',NULL,'enabled','sms','appointment','17:00:00',NULL,NULL,'provider','NULL','Dear %employee_full_name%, \n \nWe would like to remind you that you have %service_name% appointment tomorrow at %appointment_start_time% at %location_name%.\n \nThank you, \n%company_name%',NULL,0,NULL,NULL),(29,'customer_event_approved',NULL,'enabled','email','event',NULL,NULL,NULL,'customer','%event_name% Event Booked','Dear %customer_full_name%,

You have successfully scheduled\n %event_name% event. We are\n waiting you at %event_location% on %event_start_date_time%.\n

Thank you for choosing our company,
%company_name%',NULL,0,NULL,NULL),(30,'customer_event_rejected',NULL,'enabled','email','event',NULL,NULL,NULL,'customer','%event_name% Event Canceled By Admin','Dear %customer_full_name%,

Your %event_name%\n event, scheduled on %event_start_date_time% at %event_location%\n has been canceled.

Thank you for choosing our company,\n
%company_name%',NULL,0,NULL,NULL),(31,'customer_event_canceled',NULL,'enabled','email','event',NULL,NULL,NULL,'customer','%event_name% Event Canceled By Attendee','Dear %customer_full_name%,

Your %event_name%\n event, scheduled on %event_start_date_time% at %event_location%\n has been canceled.

Thank you for choosing our company,\n
%company_name%',NULL,0,NULL,NULL),(32,'customer_event_rescheduled',NULL,'enabled','email','event',NULL,NULL,NULL,'customer','%event_name% Event Rescheduled','Dear %customer_full_name%,

The details for your\n %event_name% event at\n %event_location% has been changed. The event is now set for\n %event_start_date_time%.

\n Thank you for choosing our company,
%company_name%',NULL,0,NULL,NULL),(33,'customer_event_next_day_reminder',NULL,'enabled','email','event','17:00:00',NULL,NULL,'customer','%event_name% Event Reminder','Dear %customer_full_name%,

We would like to remind you that you have\n %event_name% event tomorrow at %event_start_date_time%.\n We are waiting for you at %event_location%.

Thank you for\n choosing our company,
%company_name%',NULL,0,NULL,NULL),(34,'customer_event_follow_up',NULL,'enabled','email','event',NULL,NULL,1800,'customer','%event_name% Event Follow Up','Dear %customer_full_name%,

Thank you once again for choosing our company.\n We hope you were satisfied with your %event_name%.

We look forward to\n seeing you again soon,
%company_name%',NULL,0,NULL,NULL),(35,'provider_event_approved',NULL,'enabled','email','event',NULL,NULL,NULL,'provider','%event_name% Event Booked','Hi %employee_full_name%,

You have one confirmed\n %event_name% Event at %event_location% on\n %event_start_date_time%. The event\n is added to your schedule.

Thank you,
%company_name%',NULL,0,NULL,NULL),(36,'provider_event_rejected',NULL,'enabled','email','event',NULL,NULL,NULL,'provider','%event_name% Event Canceled By Admin','Hi %employee_full_name%,

Your %event_name% event\n at %event_location%, scheduled for %event_start_date_time%\n has been canceled.

Thank you,
%company_name%',NULL,0,NULL,NULL),(37,'provider_event_canceled',NULL,'enabled','email','event',NULL,NULL,NULL,'provider','%event_name% Event Canceled By Customer','Hi %employee_full_name%,

Your %event_name% event,\n scheduled on %event_start_date_time%, at %event_location% has been\n canceled.

Thank you,
%company_name%',NULL,0,NULL,NULL),(38,'provider_event_rescheduled',NULL,'enabled','email','event',NULL,NULL,NULL,'provider','%event_name% Event Rescheduled','Hi %employee_full_name%,

The details for your\n %event_name% event at %event_location% has been changed.\n The event is now set for %event_start_date_time%.\n

Thank you,
%company_name%',NULL,0,NULL,NULL),(39,'provider_event_next_day_reminder',NULL,'enabled','email','event','17:00:00',NULL,NULL,'provider','%event_name% Event Reminder','Dear %employee_full_name%,

We would like to remind you that you have \n %event_name% event at %event_start_date_time%\n at %event_location%.

Thank you, \n
%company_name%',NULL,0,NULL,NULL),(40,'customer_event_approved',NULL,'enabled','sms','event',NULL,NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n\nYou have successfully scheduled %event_name% event. We are waiting for you at %event_location% on %event_start_date_time%.\n\nThank you for choosing our company,\n%company_name%',NULL,0,NULL,NULL),(41,'customer_event_rejected',NULL,'enabled','sms','event',NULL,NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n\nYour %event_name% event, scheduled on %event_start_date_time% at %event_location% has been cancelled.\n\nThank you for choosing our company,\n%company_name%',NULL,0,NULL,NULL),(42,'customer_event_canceled',NULL,'enabled','sms','event',NULL,NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n\nYour %event_name% event, scheduled on %event_start_date_time% at %event_location% has been cancelled.\n\nThank you for choosing our company,\n%company_name%',NULL,0,NULL,NULL),(43,'customer_event_rescheduled',NULL,'enabled','sms','event',NULL,NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n\nThe details for your %event_name% event at %event_location% has been changed. The event is now set for %event_start_date_time%.\n\nThank you for choosing our company,\n%company_name%',NULL,0,NULL,NULL),(44,'customer_event_next_day_reminder',NULL,'enabled','sms','event','17:00:00',NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n \nWe would like to remind you that you have %event_name% event at %event_start_date_time%. We are waiting for you at %event_location%.\n \nThank you for choosing our company,\n%company_name%',NULL,0,NULL,NULL),(45,'customer_event_follow_up',NULL,'enabled','sms','event',NULL,NULL,1800,'customer','NULL','Dear %customer_full_name%,\n \nThank you once again for choosing our company. We hope you were satisfied with your %event_name%.\n \nWe look forward to seeing you again soon,\n%company_name%',NULL,0,NULL,NULL),(46,'provider_event_approved',NULL,'enabled','sms','event',NULL,NULL,NULL,'provider','NULL','Hi %employee_full_name%,\n\nYou have one confirmed %event_name% event at %event_location% on %event_start_date_time%. The event is added to your schedule.\n\nThank you,\n%company_name%',NULL,0,NULL,NULL),(47,'provider_event_rejected',NULL,'enabled','sms','event',NULL,NULL,NULL,'provider','NULL','Hi %employee_full_name%,\n\nYour %event_name% event at %event_location%, scheduled for %event_start_date_time% has been canceled by admin.\n\nThank you,\n%company_name%',NULL,0,NULL,NULL),(48,'provider_event_canceled',NULL,'enabled','sms','event',NULL,NULL,NULL,'provider','NULL','Hi %employee_full_name%,\n\nYour %event_name% event, scheduled on %event_start_date_time%, at %event_location% has been canceled.\n\nThank you,\n%company_name%',NULL,0,NULL,NULL),(49,'provider_event_rescheduled',NULL,'enabled','sms','event',NULL,NULL,NULL,'provider','NULL','Hi %employee_full_name%,\n\nThe details for your %event_name% event at %event_location% has been changed. The event is now set for %event_start_date_time%.\n\nThank you,\n%company_name%',NULL,0,NULL,NULL),(50,'provider_event_next_day_reminder',NULL,'enabled','sms','event','17:00:00',NULL,NULL,'provider','NULL','Dear %employee_full_name%, \n \nWe would like to remind you that you have %event_name% event at %event_start_date_time% at %event_location%.\n \nThank you, \n%company_name%',NULL,0,NULL,NULL),(51,'customer_account_recovery',NULL,'enabled','email','appointment',NULL,NULL,NULL,'customer','Customer Panel Access','Dear %customer_full_name%,

You can access your profile on this link.\n

Thank you for choosing our company,
%company_name%',NULL,0,NULL,NULL),(52,'provider_panel_access',NULL,'enabled','email','appointment',NULL,NULL,NULL,'provider','Employee Panel Access','Dear %employee_full_name%,

You can access your profile and track your bookings on this link.

Your login credentials:
Email: %employee_email%
Password: %employee_password%\n

Best regards,
%company_name%',NULL,0,NULL,NULL),(53,'provider_panel_recovery',NULL,'enabled','email','appointment',NULL,NULL,NULL,'provider','Employee Panel Access','Dear %employee_full_name%,

You can access your profile and track your bookings on this link.\n

Best regards,
%company_name%',NULL,0,NULL,NULL),(54,'customer_package_purchased',NULL,'enabled','email','appointment',NULL,NULL,NULL,'customer','Package %package_name% purchased','Dear %customer_full_name%,

You have successfully purchased\n %package_name%.\n

Thank you for choosing our company,
%company_name%',NULL,0,NULL,NULL),(55,'customer_package_purchased',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'customer','Package %package_name% purchased','Dear %customer_full_name%,\n\nYou have successfully purchased %package_name%.\n\nThank you for choosing our company,\n%company_name%',NULL,0,NULL,NULL),(56,'provider_package_purchased',NULL,'enabled','email','appointment',NULL,NULL,NULL,'provider','Package %package_name% purchased','Hi %employee_full_name%,

\n Customer %customer_full_name% has purchased %package_name% package.

\n Thank you,
%company_name%',NULL,0,NULL,NULL),(57,'provider_package_purchased',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'provider','Package %package_name% purchased','Hi %employee_full_name%,\n\nCustomer %customer_full_name% has purchased %package_name% package.\n \nThank you, %company_name%',NULL,0,NULL,NULL),(58,'customer_package_canceled',NULL,'enabled','email','appointment',NULL,NULL,NULL,'customer','Package %package_name% canceled','Dear %customer_full_name%, \n The %package_name% that you have purchased has been canceled. \n Thank you,\n %company_name%',NULL,0,NULL,NULL),(59,'customer_package_canceled',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'customer','Package %package_name% canceled','Dear %customer_full_name%, \nThe %package_name% that you have purchased has been canceled. \nThank you,\n%company_name%',NULL,0,NULL,NULL),(60,'provider_package_canceled',NULL,'enabled','email','appointment',NULL,NULL,NULL,'provider','Package %package_name% canceled','Dear %employee_full_name%,\nThe %package_name% purchased by %customer_full_name% has been canceled.',NULL,0,NULL,NULL),(61,'provider_package_canceled',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'provider','Package %package_name% canceled','Dear %employee_full_name%,\nThe %package_name% purchased by %customer_full_name% has been canceled.',NULL,0,NULL,NULL),(62,'customer_cart',NULL,'enabled','email','appointment',NULL,NULL,NULL,'customer','Cart Purchase','

Dear %customer_full_name%,


You have successfully purchased several appointments. The details about your bookings are shown below.


%cart_appointments_details%.


Thank you for choosing our company,

%company_name%

',NULL,0,NULL,NULL),(63,'customer_cart',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'customer','NULL','Dear %customer_full_name%,\n\nYou have successfully scheduled several appointments.\n\nThank you for choosing our company,\n%company_name%',NULL,0,NULL,NULL),(64,'provider_cart',NULL,'enabled','email','appointment',NULL,NULL,NULL,'provider','Cart Purchase','

Hi %employee_full_name%,


Customer %customer_full_name% has successfully scheduled several appointments. The details about bookings are shown below.


%cart_appointments_details%


Thank you,

%company_name%

',NULL,0,NULL,NULL),(65,'provider_cart',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'provider','NULL','Hi %employee_full_name%,\n\nCustomer %customer_full_name% has successfully scheduled several appointments.\n \nThank you, %company_name%',NULL,0,NULL,NULL),(66,'customer_event_waiting',NULL,'enabled','email','event',NULL,NULL,NULL,'customer','%event_name% Waiting List joined','Dear %customer_full_name%,

You have successfully joined the Waiting List for the\n %event_name% event at\n %event_location% on\n %event_start_date_time%.

\n Thank you for choosing our company,
%company_name%',NULL,0,NULL,NULL),(67,'customer_event_waiting',NULL,'enabled','sms','event',NULL,NULL,NULL,'customer','%event_name% Waiting List joined','Dear %customer_full_name%,\n \nYou have successfully joined the Waiting List for the %event_name% event at %event_location% on %event_start_date_time%.\n\nThank you for choosing our company,\n%company_name%',NULL,0,NULL,NULL),(68,'provider_event_waiting',NULL,'enabled','email','event',NULL,NULL,NULL,'provider','%event_name% Waiting List joined','Hi %employee_full_name%,

A new attendee has been added to the waiting list for\n %event_name% Event at\n %event_location% on\n %event_start_date_time%.

\n Thank you,
%company_name%',NULL,0,NULL,NULL),(69,'provider_event_waiting',NULL,'enabled','sms','event',NULL,NULL,NULL,'provider','%event_name% Waiting List joined','Hi %employee_full_name%,\n \nA new attendee has been added to the waiting list for %event_name% Event at %event_location% on %event_start_date_time%.\n\nThank you,\n%company_name%',NULL,0,NULL,NULL),(70,'customer_appointment_approved',NULL,'enabled','whatsapp','appointment',NULL,NULL,NULL,'customer','','',NULL,0,NULL,NULL),(71,'customer_appointment_pending',NULL,'enabled','whatsapp','appointment',NULL,NULL,NULL,'customer','','',NULL,0,NULL,NULL),(72,'customer_appointment_rejected',NULL,'enabled','whatsapp','appointment',NULL,NULL,NULL,'customer','','',NULL,0,NULL,NULL),(73,'customer_appointment_canceled',NULL,'enabled','whatsapp','appointment',NULL,NULL,NULL,'customer','','',NULL,0,NULL,NULL),(74,'customer_appointment_rescheduled',NULL,'enabled','whatsapp','appointment',NULL,NULL,NULL,'customer','','',NULL,0,NULL,NULL),(75,'customer_appointment_next_day_reminder',NULL,'enabled','whatsapp','appointment','17:00:00',NULL,NULL,'customer','','',NULL,0,NULL,NULL),(76,'customer_appointment_follow_up',NULL,'enabled','whatsapp','appointment',NULL,NULL,1800,'customer','','',NULL,0,NULL,NULL),(77,'provider_appointment_approved',NULL,'enabled','whatsapp','appointment',NULL,NULL,NULL,'provider','','',NULL,0,NULL,NULL),(78,'provider_appointment_pending',NULL,'enabled','whatsapp','appointment',NULL,NULL,NULL,'provider','','',NULL,0,NULL,NULL),(79,'provider_appointment_rejected',NULL,'enabled','whatsapp','appointment',NULL,NULL,NULL,'provider','','',NULL,0,NULL,NULL),(80,'provider_appointment_canceled',NULL,'enabled','whatsapp','appointment',NULL,NULL,NULL,'provider','','',NULL,0,NULL,NULL),(81,'provider_appointment_rescheduled',NULL,'enabled','whatsapp','appointment',NULL,NULL,NULL,'provider','','',NULL,0,NULL,NULL),(82,'provider_appointment_next_day_reminder',NULL,'enabled','whatsapp','appointment','17:00:00',NULL,NULL,'provider','','',NULL,0,NULL,NULL),(83,'customer_event_approved',NULL,'enabled','whatsapp','event',NULL,NULL,NULL,'customer','','',NULL,0,NULL,NULL),(84,'customer_event_rejected',NULL,'enabled','whatsapp','event',NULL,NULL,NULL,'customer','','',NULL,0,NULL,NULL),(85,'customer_event_canceled',NULL,'enabled','whatsapp','event',NULL,NULL,NULL,'customer','','',NULL,0,NULL,NULL),(86,'customer_event_rescheduled',NULL,'enabled','whatsapp','event',NULL,NULL,NULL,'customer','','',NULL,0,NULL,NULL),(87,'customer_event_next_day_reminder',NULL,'enabled','whatsapp','event','17:00:00',NULL,NULL,'customer','','',NULL,0,NULL,NULL),(88,'customer_event_follow_up',NULL,'enabled','whatsapp','event',NULL,NULL,1800,'customer','','',NULL,0,NULL,NULL),(89,'provider_event_approved',NULL,'enabled','whatsapp','event',NULL,NULL,NULL,'provider','','',NULL,0,NULL,NULL),(90,'provider_event_rejected',NULL,'enabled','whatsapp','event',NULL,NULL,NULL,'provider','','',NULL,0,NULL,NULL),(91,'provider_event_canceled',NULL,'enabled','whatsapp','event',NULL,NULL,NULL,'provider','','',NULL,0,NULL,NULL),(92,'provider_event_rescheduled',NULL,'enabled','whatsapp','event',NULL,NULL,NULL,'provider','','',NULL,0,NULL,NULL),(93,'provider_event_next_day_reminder',NULL,'enabled','whatsapp','event','17:00:00',NULL,NULL,'provider','','',NULL,0,NULL,NULL),(94,'customer_package_purchased',NULL,'enabled','whatsapp','appointment',NULL,NULL,NULL,'customer','','',NULL,0,NULL,NULL),(95,'customer_package_canceled',NULL,'enabled','whatsapp','appointment',NULL,NULL,NULL,'customer','','',NULL,0,NULL,NULL),(96,'provider_package_purchased',NULL,'enabled','whatsapp','appointment',NULL,NULL,NULL,'provider','','',NULL,0,NULL,NULL),(97,'provider_package_canceled',NULL,'enabled','whatsapp','appointment',NULL,NULL,NULL,'provider','','',NULL,0,NULL,NULL),(98,'customer_birthday_greeting',NULL,'enabled','whatsapp','appointment','17:00:00',NULL,NULL,'customer','','',NULL,0,NULL,NULL),(99,'customer_account_recovery',NULL,'enabled','whatsapp','appointment',NULL,NULL,NULL,'customer','','',NULL,0,NULL,NULL),(100,'provider_panel_access',NULL,'enabled','whatsapp','appointment',NULL,NULL,NULL,'provider','','',NULL,0,NULL,NULL),(101,'provider_panel_recovery',NULL,'enabled','whatsapp','appointment',NULL,NULL,NULL,'provider','','',NULL,0,NULL,NULL),(102,'customer_cart',NULL,'enabled','whatsapp','appointment',NULL,NULL,NULL,'customer','','',NULL,0,NULL,NULL),(103,'provider_cart',NULL,'enabled','whatsapp','appointment',NULL,NULL,NULL,'provider','','',NULL,0,NULL,NULL),(104,'customer_event_waiting',NULL,'enabled','whatsapp','event',NULL,NULL,NULL,'customer','','',NULL,0,NULL,NULL),(105,'provider_event_waiting',NULL,'enabled','whatsapp','event',NULL,NULL,NULL,'provider','','',NULL,0,NULL,NULL),(106,'customer_appointment_updated',NULL,'enabled','email','appointment',NULL,NULL,NULL,'customer','%service_name% Appointment Details Changed','Dear %customer_full_name%,

Details of the appointment on %appointment_date_time% have changed:
\n
Thank you for choosing our company,
\n %company_name%',NULL,0,NULL,NULL),(107,'provider_appointment_updated',NULL,'enabled','email','appointment',NULL,NULL,NULL,'provider','%service_name% Appointment Details Changed','Hi %employee_full_name%,

Details of the appointment on %appointment_date_time% have changed:\n
\n
Thank you,
\n %company_name%',NULL,0,NULL,NULL),(108,'customer_appointment_updated',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'customer','%service_name% Appointment Details Changed','Dear %customer_full_name%,\n\nDetails of the appointment on %appointment_date_time% have changed:\n Employee: %employee_full_name%\n Location: %location_name%\n Extras: %service_extras%\n \nThank you for choosing our company,\n%company_name%',NULL,0,NULL,NULL),(109,'provider_appointment_updated',NULL,'enabled','sms','appointment',NULL,NULL,NULL,'provider','%service_name% Appointment Details Changed','Hi %employee_full_name%,\n \nDetails of the appointment on %appointment_date_time% have changed:\n Customers: %customer_full_name%,\n Location: %location_name%,\n Extras: %service_extras%\n \nThank you,\n%company_name%',NULL,0,NULL,NULL),(110,'customer_appointment_updated',NULL,'enabled','whatsapp','appointment',NULL,NULL,NULL,'customer','','',NULL,0,NULL,NULL),(111,'provider_appointment_updated',NULL,'enabled','whatsapp','appointment',NULL,NULL,NULL,'provider','','',NULL,0,NULL,NULL),(112,'customer_event_updated',NULL,'enabled','email','event',NULL,NULL,NULL,'customer','%event_name% Event Details Changed','Dear %customer_full_name%,

Details of the event on %event_start_date_time% have changed:\n
Thank you for choosing our company,
\n %company_name%',NULL,0,NULL,NULL),(113,'provider_event_updated',NULL,'enabled','email','event',NULL,NULL,NULL,'provider','%event_name% Event Details Changed','Hi %employee_full_name%,

Details of the event on %event_start_date_time% have changed:\n
Thank you,
\n %company_name%',NULL,0,NULL,NULL),(114,'customer_event_updated',NULL,'enabled','sms','event',NULL,NULL,NULL,'customer','%event_name% Event Details Changed','Dear %customer_full_name%,\n \nDetails of the event on %event_start_date_time% have changed:\n Organizer: %employee_full_name\n Location: %location_name%\n\nThank you for choosing our company,\n%company_name%',NULL,0,NULL,NULL),(115,'provider_event_updated',NULL,'enabled','sms','event',NULL,NULL,NULL,'provider','%event_name% Event Details Changed','Hi %employee_full_name%,\n \nDetails of the event on %event_start_date_time% have changed:\n Description: %event_description%, \n Location: %location_name%\n\nThank you,\n%company_name%',NULL,0,NULL,NULL),(116,'customer_event_updated',NULL,'enabled','whatsapp','event',NULL,NULL,NULL,'customer','','',NULL,0,NULL,NULL),(117,'provider_event_updated',NULL,'enabled','whatsapp','event',NULL,NULL,NULL,'provider','','',NULL,0,NULL,NULL),(118,'customer_invoice',NULL,'enabled','email','appointment',NULL,NULL,NULL,'customer','Booking Invoice','Dear %customer_full_name%,

Please find the attached invoice for your reference. If you have any questions, feel free to contact us.\n

Thank you for choosing our company,
\n %company_name%',NULL,0,NULL,NULL); /*!40000 ALTER TABLE `graceme_amelia_notifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_notifications_log` -- DROP TABLE IF EXISTS `graceme_amelia_notifications_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_notifications_log` ( `id` int(11) NOT NULL AUTO_INCREMENT, `notificationId` int(11) NOT NULL, `userId` int(11) DEFAULT NULL, `appointmentId` int(11) DEFAULT NULL, `eventId` int(11) DEFAULT NULL, `packageCustomerId` int(11) DEFAULT NULL, `sentDateTime` datetime NOT NULL, `sent` tinyint(1) DEFAULT NULL, `data` text DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_notifications_log` -- LOCK TABLES `graceme_amelia_notifications_log` WRITE; /*!40000 ALTER TABLE `graceme_amelia_notifications_log` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_notifications_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_notifications_sms_history` -- DROP TABLE IF EXISTS `graceme_amelia_notifications_sms_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_notifications_sms_history` ( `id` int(11) NOT NULL AUTO_INCREMENT, `notificationId` int(11) NOT NULL, `userId` int(11) DEFAULT NULL, `appointmentId` int(11) DEFAULT NULL, `eventId` int(11) DEFAULT NULL, `packageCustomerId` int(11) DEFAULT NULL, `logId` int(11) DEFAULT NULL, `dateTime` datetime DEFAULT NULL, `text` varchar(1600) NOT NULL, `phone` varchar(63) NOT NULL, `alphaSenderId` varchar(11) NOT NULL, `status` enum('prepared','accepted','queued','sent','failed','delivered','undelivered') NOT NULL DEFAULT 'prepared', `price` double DEFAULT NULL, `segments` tinyint(2) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_notifications_sms_history` -- LOCK TABLES `graceme_amelia_notifications_sms_history` WRITE; /*!40000 ALTER TABLE `graceme_amelia_notifications_sms_history` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_notifications_sms_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_notifications_to_entities` -- DROP TABLE IF EXISTS `graceme_amelia_notifications_to_entities`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_notifications_to_entities` ( `id` int(11) NOT NULL AUTO_INCREMENT, `notificationId` int(11) NOT NULL, `entityId` int(11) NOT NULL, `entity` enum('appointment','event') NOT NULL DEFAULT 'appointment', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_notifications_to_entities` -- LOCK TABLES `graceme_amelia_notifications_to_entities` WRITE; /*!40000 ALTER TABLE `graceme_amelia_notifications_to_entities` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_notifications_to_entities` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_packages` -- DROP TABLE IF EXISTS `graceme_amelia_packages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_packages` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '', `description` mediumtext DEFAULT NULL, `color` varchar(255) NOT NULL DEFAULT '', `price` double NOT NULL, `status` enum('hidden','visible','disabled') NOT NULL DEFAULT 'visible', `pictureFullPath` varchar(767) DEFAULT NULL, `pictureThumbPath` varchar(767) DEFAULT NULL, `position` int(11) DEFAULT 0, `calculatedPrice` tinyint(1) DEFAULT 1, `discount` double NOT NULL, `endDate` datetime DEFAULT NULL, `durationType` enum('day','week','month') DEFAULT NULL, `durationCount` int(4) DEFAULT NULL, `settings` mediumtext DEFAULT NULL, `translations` text DEFAULT NULL, `depositPayment` enum('disabled','fixed','percentage') DEFAULT 'disabled', `deposit` double DEFAULT 0, `fullPayment` tinyint(1) DEFAULT 0, `sharedCapacity` tinyint(1) DEFAULT 0, `quantity` int(11) DEFAULT 1, `limitPerCustomer` text DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_packages` -- LOCK TABLES `graceme_amelia_packages` WRITE; /*!40000 ALTER TABLE `graceme_amelia_packages` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_packages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_packages_customers_to_services` -- DROP TABLE IF EXISTS `graceme_amelia_packages_customers_to_services`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_packages_customers_to_services` ( `id` int(11) NOT NULL AUTO_INCREMENT, `packageCustomerId` int(11) NOT NULL, `serviceId` int(11) NOT NULL, `providerId` int(11) DEFAULT NULL, `locationId` int(11) DEFAULT NULL, `bookingsCount` int(5) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_packages_customers_to_services` -- LOCK TABLES `graceme_amelia_packages_customers_to_services` WRITE; /*!40000 ALTER TABLE `graceme_amelia_packages_customers_to_services` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_packages_customers_to_services` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_packages_services_to_locations` -- DROP TABLE IF EXISTS `graceme_amelia_packages_services_to_locations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_packages_services_to_locations` ( `id` int(11) NOT NULL AUTO_INCREMENT, `packageServiceId` int(11) NOT NULL, `locationId` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_packages_services_to_locations` -- LOCK TABLES `graceme_amelia_packages_services_to_locations` WRITE; /*!40000 ALTER TABLE `graceme_amelia_packages_services_to_locations` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_packages_services_to_locations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_packages_services_to_providers` -- DROP TABLE IF EXISTS `graceme_amelia_packages_services_to_providers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_packages_services_to_providers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `packageServiceId` int(11) NOT NULL, `userId` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_packages_services_to_providers` -- LOCK TABLES `graceme_amelia_packages_services_to_providers` WRITE; /*!40000 ALTER TABLE `graceme_amelia_packages_services_to_providers` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_packages_services_to_providers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_packages_to_customers` -- DROP TABLE IF EXISTS `graceme_amelia_packages_to_customers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_packages_to_customers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `packageId` int(11) NOT NULL, `customerId` int(11) NOT NULL, `price` double NOT NULL, `tax` varchar(255) DEFAULT NULL, `start` datetime DEFAULT NULL, `end` datetime DEFAULT NULL, `purchased` datetime NOT NULL, `status` enum('approved','pending','canceled','rejected') DEFAULT NULL, `bookingsCount` int(5) DEFAULT NULL, `couponId` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_packages_to_customers` -- LOCK TABLES `graceme_amelia_packages_to_customers` WRITE; /*!40000 ALTER TABLE `graceme_amelia_packages_to_customers` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_packages_to_customers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_packages_to_services` -- DROP TABLE IF EXISTS `graceme_amelia_packages_to_services`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_packages_to_services` ( `id` int(11) NOT NULL AUTO_INCREMENT, `serviceId` int(11) NOT NULL, `packageId` int(11) NOT NULL, `quantity` int(11) NOT NULL, `minimumScheduled` int(5) DEFAULT 1, `maximumScheduled` int(5) DEFAULT 1, `allowProviderSelection` tinyint(1) DEFAULT 1, `position` int(11) DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_packages_to_services` -- LOCK TABLES `graceme_amelia_packages_to_services` WRITE; /*!40000 ALTER TABLE `graceme_amelia_packages_to_services` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_packages_to_services` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_payments` -- DROP TABLE IF EXISTS `graceme_amelia_payments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_payments` ( `id` int(11) NOT NULL AUTO_INCREMENT, `customerBookingId` int(11) DEFAULT NULL, `amount` double NOT NULL DEFAULT 0, `dateTime` datetime DEFAULT NULL, `status` enum('paid','pending','partiallyPaid','refunded') NOT NULL, `gateway` enum('onSite','payPal','stripe','wc','mollie','razorpay','square') NOT NULL, `gatewayTitle` varchar(255) DEFAULT NULL, `data` text DEFAULT NULL, `packageCustomerId` int(11) DEFAULT NULL, `parentId` int(11) DEFAULT NULL, `entity` enum('appointment','event','package') DEFAULT NULL, `created` datetime DEFAULT NULL, `actionsCompleted` tinyint(1) DEFAULT NULL, `triggeredActions` tinyint(1) DEFAULT NULL, `wcOrderId` bigint(20) DEFAULT NULL, `wcOrderItemId` bigint(20) DEFAULT NULL, `transactionId` varchar(255) DEFAULT NULL, `transfers` text DEFAULT NULL, `invoiceNumber` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_payments` -- LOCK TABLES `graceme_amelia_payments` WRITE; /*!40000 ALTER TABLE `graceme_amelia_payments` DISABLE KEYS */; INSERT INTO `graceme_amelia_payments` VALUES (1,1,0,'2025-04-25 09:30:00','pending','onSite','','',NULL,NULL,'appointment','2025-04-18 20:05:24',1,1,NULL,NULL,NULL,NULL,NULL),(2,2,0,'2025-05-02 09:30:00','pending','onSite','','',NULL,NULL,'appointment','2025-04-18 20:47:49',1,1,NULL,NULL,NULL,NULL,1),(3,3,0,'2025-04-28 14:30:00','pending','onSite','','',NULL,NULL,'appointment','2025-04-25 16:36:34',1,1,NULL,NULL,NULL,NULL,2); /*!40000 ALTER TABLE `graceme_amelia_payments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_providers_to_daysoff` -- DROP TABLE IF EXISTS `graceme_amelia_providers_to_daysoff`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_providers_to_daysoff` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userId` int(11) NOT NULL, `name` varchar(255) NOT NULL, `startDate` date NOT NULL, `endDate` date NOT NULL, `repeat` tinyint(1) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_providers_to_daysoff` -- LOCK TABLES `graceme_amelia_providers_to_daysoff` WRITE; /*!40000 ALTER TABLE `graceme_amelia_providers_to_daysoff` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_providers_to_daysoff` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_providers_to_google_calendar` -- DROP TABLE IF EXISTS `graceme_amelia_providers_to_google_calendar`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_providers_to_google_calendar` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userId` int(11) NOT NULL, `token` text NOT NULL, `calendarId` text DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_providers_to_google_calendar` -- LOCK TABLES `graceme_amelia_providers_to_google_calendar` WRITE; /*!40000 ALTER TABLE `graceme_amelia_providers_to_google_calendar` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_providers_to_google_calendar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_providers_to_locations` -- DROP TABLE IF EXISTS `graceme_amelia_providers_to_locations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_providers_to_locations` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userId` int(11) NOT NULL, `locationId` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_providers_to_locations` -- LOCK TABLES `graceme_amelia_providers_to_locations` WRITE; /*!40000 ALTER TABLE `graceme_amelia_providers_to_locations` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_providers_to_locations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_providers_to_outlook_calendar` -- DROP TABLE IF EXISTS `graceme_amelia_providers_to_outlook_calendar`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_providers_to_outlook_calendar` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userId` int(11) NOT NULL, `token` text NOT NULL, `calendarId` text DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_providers_to_outlook_calendar` -- LOCK TABLES `graceme_amelia_providers_to_outlook_calendar` WRITE; /*!40000 ALTER TABLE `graceme_amelia_providers_to_outlook_calendar` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_providers_to_outlook_calendar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_providers_to_periods` -- DROP TABLE IF EXISTS `graceme_amelia_providers_to_periods`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_providers_to_periods` ( `id` int(11) NOT NULL AUTO_INCREMENT, `weekDayId` int(11) NOT NULL, `locationId` int(11) DEFAULT NULL, `startTime` time NOT NULL, `endTime` time NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_providers_to_periods` -- LOCK TABLES `graceme_amelia_providers_to_periods` WRITE; /*!40000 ALTER TABLE `graceme_amelia_providers_to_periods` DISABLE KEYS */; INSERT INTO `graceme_amelia_providers_to_periods` VALUES (1,1,NULL,'09:00:00','17:00:00'),(2,2,NULL,'09:00:00','17:00:00'),(3,3,NULL,'09:00:00','17:00:00'),(4,4,NULL,'09:00:00','17:00:00'),(5,5,NULL,'09:00:00','17:00:00'); /*!40000 ALTER TABLE `graceme_amelia_providers_to_periods` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_providers_to_periods_location` -- DROP TABLE IF EXISTS `graceme_amelia_providers_to_periods_location`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_providers_to_periods_location` ( `id` int(11) NOT NULL AUTO_INCREMENT, `periodId` int(11) NOT NULL, `locationId` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_providers_to_periods_location` -- LOCK TABLES `graceme_amelia_providers_to_periods_location` WRITE; /*!40000 ALTER TABLE `graceme_amelia_providers_to_periods_location` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_providers_to_periods_location` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_providers_to_periods_services` -- DROP TABLE IF EXISTS `graceme_amelia_providers_to_periods_services`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_providers_to_periods_services` ( `id` int(11) NOT NULL AUTO_INCREMENT, `periodId` int(11) NOT NULL, `serviceId` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_providers_to_periods_services` -- LOCK TABLES `graceme_amelia_providers_to_periods_services` WRITE; /*!40000 ALTER TABLE `graceme_amelia_providers_to_periods_services` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_providers_to_periods_services` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_providers_to_services` -- DROP TABLE IF EXISTS `graceme_amelia_providers_to_services`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_providers_to_services` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userId` int(11) NOT NULL, `serviceId` int(11) NOT NULL, `price` double NOT NULL, `minCapacity` int(11) NOT NULL, `maxCapacity` int(11) NOT NULL, `customPricing` text DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_providers_to_services` -- LOCK TABLES `graceme_amelia_providers_to_services` WRITE; /*!40000 ALTER TABLE `graceme_amelia_providers_to_services` DISABLE KEYS */; INSERT INTO `graceme_amelia_providers_to_services` VALUES (1,1,1,99,1,1,'{\"enabled\":false,\"durations\":{}}'),(2,1,2,260,1,1,'{\"enabled\":false,\"durations\":{}}'),(3,1,3,260,1,1,'{\"enabled\":false,\"durations\":{}}'),(4,1,4,400,1,1,'{\"enabled\":false,\"durations\":{}}'),(5,1,5,610,1,1,'{\"enabled\":false,\"durations\":{}}'),(6,1,6,60,1,1,'{\"enabled\":false,\"durations\":{}}'),(7,1,7,145,1,1,'{\"enabled\":false,\"durations\":{}}'),(8,1,8,145,1,1,'{\"enabled\":false,\"durations\":{}}'),(9,1,9,145,1,1,'{\"enabled\":false,\"durations\":{}}'),(10,1,10,145,1,1,'{\"enabled\":false,\"durations\":{}}'),(11,1,11,20,1,1,'{\"enabled\":false,\"durations\":{}}'),(12,1,12,15,1,1,'{\"enabled\":false,\"durations\":{}}'),(13,1,13,40,1,1,'{\"enabled\":false,\"durations\":{}}'),(14,1,14,20,1,1,'{\"enabled\":false,\"durations\":{}}'),(15,1,15,15,1,1,'{\"enabled\":false,\"durations\":{}}'),(16,1,16,35,1,1,'{\"enabled\":false,\"durations\":{}}'),(17,1,17,40,1,1,'{\"enabled\":false,\"durations\":{}}'),(18,1,18,50,1,1,'{\"enabled\":false,\"durations\":{}}'),(19,1,19,35,1,1,'{\"enabled\":false,\"durations\":{}}'),(20,1,20,75,1,1,'{\"enabled\":false,\"durations\":{}}'),(21,1,21,45,1,1,'{\"enabled\":false,\"durations\":{}}'),(22,1,22,70,1,1,'{\"enabled\":false,\"durations\":{}}'),(23,1,23,85,1,1,'{\"enabled\":false,\"durations\":{}}'),(24,1,24,45,1,1,'{\"enabled\":false,\"durations\":{}}'),(25,1,25,95,1,1,'{\"enabled\":false,\"durations\":{}}'),(26,1,26,90,1,1,'{\"enabled\":false,\"durations\":{}}'),(27,1,27,130,1,1,'{\"enabled\":false,\"durations\":{}}'),(28,1,28,80,1,1,'{\"enabled\":false,\"durations\":{}}'),(29,1,29,120,1,1,'{\"enabled\":false,\"durations\":{}}'),(30,1,30,80,1,1,'{\"enabled\":false,\"durations\":{}}'),(31,1,31,120,1,1,'{\"enabled\":false,\"durations\":{}}'),(32,1,32,90,1,1,'{\"enabled\":false,\"durations\":{}}'),(33,1,33,130,1,1,'{\"enabled\":false,\"durations\":{}}'); /*!40000 ALTER TABLE `graceme_amelia_providers_to_services` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_providers_to_specialdays` -- DROP TABLE IF EXISTS `graceme_amelia_providers_to_specialdays`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_providers_to_specialdays` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userId` int(11) NOT NULL, `startDate` date NOT NULL, `endDate` date NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_providers_to_specialdays` -- LOCK TABLES `graceme_amelia_providers_to_specialdays` WRITE; /*!40000 ALTER TABLE `graceme_amelia_providers_to_specialdays` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_providers_to_specialdays` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_providers_to_specialdays_periods` -- DROP TABLE IF EXISTS `graceme_amelia_providers_to_specialdays_periods`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_providers_to_specialdays_periods` ( `id` int(11) NOT NULL AUTO_INCREMENT, `specialDayId` int(11) NOT NULL, `locationId` int(11) DEFAULT NULL, `startTime` time NOT NULL, `endTime` time NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_providers_to_specialdays_periods` -- LOCK TABLES `graceme_amelia_providers_to_specialdays_periods` WRITE; /*!40000 ALTER TABLE `graceme_amelia_providers_to_specialdays_periods` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_providers_to_specialdays_periods` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_providers_to_specialdays_periods_location` -- DROP TABLE IF EXISTS `graceme_amelia_providers_to_specialdays_periods_location`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_providers_to_specialdays_periods_location` ( `id` int(11) NOT NULL AUTO_INCREMENT, `periodId` int(11) NOT NULL, `locationId` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_providers_to_specialdays_periods_location` -- LOCK TABLES `graceme_amelia_providers_to_specialdays_periods_location` WRITE; /*!40000 ALTER TABLE `graceme_amelia_providers_to_specialdays_periods_location` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_providers_to_specialdays_periods_location` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_providers_to_specialdays_periods_services` -- DROP TABLE IF EXISTS `graceme_amelia_providers_to_specialdays_periods_services`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_providers_to_specialdays_periods_services` ( `id` int(11) NOT NULL AUTO_INCREMENT, `periodId` int(11) NOT NULL, `serviceId` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_providers_to_specialdays_periods_services` -- LOCK TABLES `graceme_amelia_providers_to_specialdays_periods_services` WRITE; /*!40000 ALTER TABLE `graceme_amelia_providers_to_specialdays_periods_services` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_providers_to_specialdays_periods_services` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_providers_to_timeouts` -- DROP TABLE IF EXISTS `graceme_amelia_providers_to_timeouts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_providers_to_timeouts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `weekDayId` int(11) NOT NULL, `startTime` time NOT NULL, `endTime` time NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_providers_to_timeouts` -- LOCK TABLES `graceme_amelia_providers_to_timeouts` WRITE; /*!40000 ALTER TABLE `graceme_amelia_providers_to_timeouts` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_providers_to_timeouts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_providers_to_weekdays` -- DROP TABLE IF EXISTS `graceme_amelia_providers_to_weekdays`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_providers_to_weekdays` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userId` int(11) NOT NULL, `dayIndex` tinyint(2) NOT NULL, `startTime` time NOT NULL, `endTime` time NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_providers_to_weekdays` -- LOCK TABLES `graceme_amelia_providers_to_weekdays` WRITE; /*!40000 ALTER TABLE `graceme_amelia_providers_to_weekdays` DISABLE KEYS */; INSERT INTO `graceme_amelia_providers_to_weekdays` VALUES (1,1,1,'09:00:00','17:00:00'),(2,1,2,'09:00:00','17:00:00'),(3,1,3,'09:00:00','17:00:00'),(4,1,4,'09:00:00','17:00:00'),(5,1,5,'09:00:00','17:00:00'); /*!40000 ALTER TABLE `graceme_amelia_providers_to_weekdays` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_providers_views` -- DROP TABLE IF EXISTS `graceme_amelia_providers_views`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_providers_views` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userId` int(11) NOT NULL, `date` date NOT NULL, `views` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_providers_views` -- LOCK TABLES `graceme_amelia_providers_views` WRITE; /*!40000 ALTER TABLE `graceme_amelia_providers_views` DISABLE KEYS */; INSERT INTO `graceme_amelia_providers_views` VALUES (1,1,'2025-04-18',4),(2,1,'2025-04-25',1),(3,1,'2025-04-30',1); /*!40000 ALTER TABLE `graceme_amelia_providers_views` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_resources` -- DROP TABLE IF EXISTS `graceme_amelia_resources`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_resources` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '', `quantity` int(11) DEFAULT 1, `shared` enum('service','location') DEFAULT NULL, `status` enum('hidden','visible','disabled') NOT NULL DEFAULT 'visible', `countAdditionalPeople` tinyint(1) DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_resources` -- LOCK TABLES `graceme_amelia_resources` WRITE; /*!40000 ALTER TABLE `graceme_amelia_resources` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_resources` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_resources_to_entities` -- DROP TABLE IF EXISTS `graceme_amelia_resources_to_entities`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_resources_to_entities` ( `id` int(11) NOT NULL AUTO_INCREMENT, `resourceId` int(11) NOT NULL, `entityId` int(11) NOT NULL, `entityType` enum('service','location','employee') NOT NULL DEFAULT 'service', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_resources_to_entities` -- LOCK TABLES `graceme_amelia_resources_to_entities` WRITE; /*!40000 ALTER TABLE `graceme_amelia_resources_to_entities` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_resources_to_entities` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_services` -- DROP TABLE IF EXISTS `graceme_amelia_services`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_services` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '', `description` mediumtext DEFAULT NULL, `color` varchar(255) NOT NULL DEFAULT '', `price` double NOT NULL, `status` enum('hidden','visible','disabled') NOT NULL DEFAULT 'visible', `categoryId` int(11) NOT NULL, `minCapacity` int(11) NOT NULL, `maxCapacity` int(11) NOT NULL, `duration` int(11) NOT NULL, `timeBefore` int(11) DEFAULT 0, `timeAfter` int(11) DEFAULT 0, `bringingAnyone` tinyint(1) DEFAULT 1, `priority` enum('least_expensive','most_expensive','least_occupied','most_occupied') NOT NULL, `pictureFullPath` varchar(767) DEFAULT NULL, `pictureThumbPath` varchar(767) DEFAULT NULL, `position` int(11) DEFAULT 0, `show` tinyint(1) DEFAULT 1, `aggregatedPrice` tinyint(1) DEFAULT 1, `settings` mediumtext DEFAULT NULL, `recurringCycle` enum('disabled','all','daily','weekly','monthly') DEFAULT 'disabled', `recurringSub` enum('disabled','past','future','both') DEFAULT 'future', `recurringPayment` int(3) DEFAULT 0, `translations` text DEFAULT NULL, `depositPayment` enum('disabled','fixed','percentage') DEFAULT 'disabled', `depositPerPerson` tinyint(1) DEFAULT 1, `deposit` double DEFAULT 0, `fullPayment` tinyint(1) DEFAULT 0, `mandatoryExtra` tinyint(1) DEFAULT 0, `minSelectedExtras` int(11) DEFAULT 0, `customPricing` text DEFAULT NULL, `maxExtraPeople` int(11) DEFAULT NULL, `limitPerCustomer` text DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_services` -- LOCK TABLES `graceme_amelia_services` WRITE; /*!40000 ALTER TABLE `graceme_amelia_services` DISABLE KEYS */; INSERT INTO `graceme_amelia_services` VALUES (1,'Discovery Facial','

This treatment revitalizes the skin by stimulating cell oxidation and dissolving any sign of fatigue. The skin revels in newfound in energy and vigor, while the complexion appears fresh and radiant.

','#1788FB',99,'visible',1,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,14,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(2,'Hydration of the Bisses','

A slow, delicate, and singularly relaxing massage facial that targets the lymphatic system to improve fluid flow. This treatment fills the epidermis with water to reveal vibrant, supple, re-plumped skin.


','#1788FB',260,'visible',1,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,22,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(3,'Lift From the Peaks','

Inspired by fascia therapy, this slow, deep massage fights wrinkles by relaxing and toning the muscles. This treatment program provides an intense smoothing effect while alleviating stress in areas with superficial or more pronounced wrinkles.

','#1788FB',260,'visible',1,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,23,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(4,'Grace Red Carpet Facial','

This exclusive treatment, otters the ultimate in rejuvenation using a combination of state-of-the-art products and technology to ensure the skin is red-carpet ready. This treatment features a revolutionary, aesthetic treatment device for the face; incorporating Diamond Microdermabrasion, Radio Frequency, Ultrasound,Light Therapy.

','#1788FB',400,'visible',1,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,19,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(5,'Gentleman\'s Awakening','

This treatment revitalizes the skin by stimulating cellular oxygenation and erasing the signs of fatigue. The skin is energized and revitalized, and the complexion looks fresh and luminous. The combination of products and motion give incredible results!!!

','#1788FB',610,'visible',1,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,18,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(6,'Deep Pore Cleaning','


Pore cleaning services effectively remove dirt, oil, and impurities from the skin, promoting a clearer and healthier complexion. This treatment helps to minimize the appearance of pores and prevent breakouts, enhancing overall skin texture.

','#1788FB',60,'visible',2,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,10,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(7,'Teen Facial','

The Teen Facial is specifically designed to address the unique skincare needs of teenagers, focusing on cleansing, exfoliating, and nourishing the skin. This treatment helps to combat common issues such as acne and excess oil, promoting a healthy, radiant complexion.

','#1788FB',75,'visible',2,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,32,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(8,'Diamond Microderm Facial','

The Diamond Microderm Facial utilizes diamond-tipped technology to gently exfoliate the skin, removing dead cells and promoting a smoother, more radiant complexion. This advanced treatment also stimulates collagen production, helping to reduce fine lines and improve skin texture.

','#1788FB',145,'visible',2,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,13,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(9,'Chemical Peel Facial','

Chemical peels are skincare treatments designed to exfoliate the outer layers of the skin, promoting a smoother and more radiant complexion. They effectively reduce the appearance of fine lines, acne scars, and uneven skin tone, revealing healthier skin underneath.

','#1788FB',145,'visible',2,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,7,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(10,'Acne Treatment','

Our acne treatment services utilize advanced techniques to effectively reduce breakouts and prevent future occurrences. We tailor each treatment plan to the individual’s skin type and concerns, ensuring optimal results and healthier skin.

','#1788FB',145,'visible',2,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,1,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(11,'Brow Shaping','

Brow Shaping provides precise waxing services to enhance your facial contours. Our expert techniques ensure perfectly shaped brows that complement your features for a polished and elevated appearance.

','#1788FB',20,'visible',3,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,6,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(12,'Brow Maintenance','

Brow Maintenance features precise waxing to shape and define your eyebrows for a polished appearance. This service enhances your natural features and maintains a clean, refined look.

','#1788FB',15,'visible',3,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,5,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(13,'Full Face','

Waxing various areas of the face.

','#1788FB',40,'visible',3,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,16,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(14,'Lips','

Waxing various areas of the face.

','#1788FB',20,'visible',3,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,25,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(15,'Chin','

Waxing various areas of the face.

','#1788FB',15,'visible',3,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,9,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(16,'Lip and Chin','

Waxing various areas of the face, including the lip and chin.

','#1788FB',35,'visible',3,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,24,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(17,'Underarms','

Waxing for various areas of the body.

','#1788FB',40,'visible',3,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,33,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(18,'Full Arms','

Waxing various areas of the body.

','#1788FB',50,'visible',3,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,15,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(19,'Half Arms','

Waxing various body areas.

','#1788FB',35,'visible',3,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,20,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(20,'Full Legs','

Waxing for various areas of the body.

','#1788FB',75,'visible',3,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,17,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(21,'Half Legs','

Waxing various areas of the body.

','#1788FB',45,'visible',3,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,21,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(22,'Chest','

Waxing Different parts of the Body.

','#1788FB',70,'visible',3,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,8,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(23,'Back','

Waxing Different parts of the Body.

','#1788FB',85,'visible',3,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,2,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(24,'Bikini','

Bikini services provide expert waxing for the bikini area, ensuring a smooth and clean finish. Our skilled technicians prioritize client comfort and satisfaction while delivering precise results tailored to individual preferences.

','#1788FB',45,'visible',3,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,3,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(25,'Brazilian','

Brazilian waxing offers a thorough hair removal solution for the bikini area, ensuring a smooth finish that lasts. This service is designed to provide comfort and precision, leaving clients feeling confident and refreshed.

','#1788FB',95,'visible',3,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,4,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(26,'Deep Tissue Massage - 60 Minutes','

Deep Tissue Massage focuses on relieving tension in the deeper layers of muscle and connective tissue. This technique is particularly effective for chronic pain, tightness, and stress relief, promoting overall relaxation and improved mobility.

','#1788FB',90,'visible',4,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,11,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(27,'Deep Tissue Massage - 90 Minutes','

Deep Tissue Massage - 90 provides a targeted approach to relieving muscle tension and discomfort using firm pressure and slow strokes. This treatment focuses on deeper layers of muscle tissue, promoting relaxation and improved mobility.

','#1788FB',130,'visible',4,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,12,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(28,'Lymphatic Drainage Massage - 60 Minutes','

Lymphatic Drainage Massage is a specialized technique designed to enhance the body\'s natural lymphatic flow, promoting detoxification and reducing swelling. This 60-minute session provides relaxation while targeting areas of congestion, leaving you feeling rejuvenated and revitalized.

','#1788FB',80,'visible',4,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,26,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(29,'Lymphatic Drainage Massage - 90 Minutes','

Lymphatic Drainage Massage is a gentle, therapeutic technique designed to stimulate the lymphatic system, promoting detoxification and reducing swelling. This specialized massage enhances circulation and supports the body\'s natural immune response, providing a sense of relaxation and well-being.

','#1788FB',120,'visible',4,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,27,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(30,'Swedish Massage - 60 Minutes','

Uses massage oils to facilitate smooth, gliding strokes over the entire body

','#1788FB',80,'visible',4,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,30,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(31,'Swedish Massage - 90 Minutes','

Uses massage oils to facilitate smooth, gliding strokes over the entire body

','#1788FB',120,'visible',4,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,31,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(32,'Sport Massage - 60 Minutes','

Focuses on the needs of the athlete. Releases muscle tension and restores balance

','#1788FB',90,'visible',4,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,28,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'),(33,'Sport Massage - 90 Minutes','

Focuses on the needs of the athlete. Releases muscle tension and restores balance

','#1788FB',130,'visible',4,1,1,1800,NULL,NULL,1,'least_expensive',NULL,NULL,29,1,1,'{\"payments\":{\"paymentLinks\":{\"enabled\":false,\"changeBookingStatus\":false,\"redirectUrl\":null}},\"zoom\":{\"enabled\":false},\"lessonSpace\":{\"enabled\":false},\"googleMeet\":{\"enabled\":false},\"microsoftTeams\":{\"enabled\":false},\"activation\":{\"version\":\"8.2\"}}','disabled','future',0,NULL,'disabled',1,0,0,0,1,'{\"enabled\":false,\"durations\":{}}',NULL,'{\"enabled\":true,\"numberOfApp\":1,\"timeFrame\":\"day\",\"period\":1,\"from\":\"bookingDate\"}'); /*!40000 ALTER TABLE `graceme_amelia_services` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_services_views` -- DROP TABLE IF EXISTS `graceme_amelia_services_views`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_services_views` ( `id` int(11) NOT NULL AUTO_INCREMENT, `serviceId` int(11) NOT NULL, `date` date NOT NULL, `views` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_services_views` -- LOCK TABLES `graceme_amelia_services_views` WRITE; /*!40000 ALTER TABLE `graceme_amelia_services_views` DISABLE KEYS */; INSERT INTO `graceme_amelia_services_views` VALUES (1,1,'2025-04-18',2),(2,26,'2025-04-18',1),(3,28,'2025-04-18',1),(4,1,'2025-04-25',1),(5,1,'2025-04-30',1); /*!40000 ALTER TABLE `graceme_amelia_services_views` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_taxes` -- DROP TABLE IF EXISTS `graceme_amelia_taxes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_taxes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL, `amount` double NOT NULL, `type` enum('percentage','fixed') NOT NULL, `status` enum('hidden','visible') NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_taxes` -- LOCK TABLES `graceme_amelia_taxes` WRITE; /*!40000 ALTER TABLE `graceme_amelia_taxes` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_taxes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_taxes_to_entities` -- DROP TABLE IF EXISTS `graceme_amelia_taxes_to_entities`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_taxes_to_entities` ( `id` int(11) NOT NULL AUTO_INCREMENT, `taxId` int(11) NOT NULL, `entityId` int(11) NOT NULL, `entityType` enum('service','extra','event','package') NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_taxes_to_entities` -- LOCK TABLES `graceme_amelia_taxes_to_entities` WRITE; /*!40000 ALTER TABLE `graceme_amelia_taxes_to_entities` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_amelia_taxes_to_entities` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_amelia_users` -- DROP TABLE IF EXISTS `graceme_amelia_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_amelia_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `status` enum('hidden','visible','disabled','blocked') NOT NULL DEFAULT 'visible', `type` enum('customer','provider','manager','admin') NOT NULL, `externalId` bigint(20) DEFAULT NULL, `firstName` varchar(255) NOT NULL DEFAULT '', `lastName` varchar(255) NOT NULL DEFAULT '', `email` varchar(255) DEFAULT NULL, `birthday` date DEFAULT NULL, `phone` varchar(63) DEFAULT NULL, `gender` enum('male','female') DEFAULT NULL, `note` text DEFAULT NULL, `description` text DEFAULT NULL, `pictureFullPath` varchar(767) DEFAULT NULL, `pictureThumbPath` varchar(767) DEFAULT NULL, `password` varchar(128) DEFAULT NULL, `usedTokens` text DEFAULT NULL, `zoomUserId` varchar(255) DEFAULT NULL, `stripeConnect` varchar(255) DEFAULT NULL, `countryPhoneIso` varchar(2) DEFAULT NULL, `translations` text DEFAULT NULL, `timeZone` varchar(255) DEFAULT NULL, `appleCalendarId` varchar(255) DEFAULT NULL, `employeeAppleCalendar` text DEFAULT NULL, `badgeId` int(11) DEFAULT NULL, `error` mediumtext DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`), UNIQUE KEY `email` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_amelia_users` -- LOCK TABLES `graceme_amelia_users` WRITE; /*!40000 ALTER TABLE `graceme_amelia_users` DISABLE KEYS */; INSERT INTO `graceme_amelia_users` VALUES (1,'visible','provider',2,'Grace','Med Aesthetics','info@thegracemed.com',NULL,'',NULL,NULL,NULL,NULL,NULL,'$2y$10$DRBoKHdQ802nLrEp1FPW/OYIw438/tXfI7yqvu7krBrUy8LJQFGk2',NULL,NULL,NULL,'pk',NULL,NULL,NULL,NULL,NULL,''),(2,'visible','customer',NULL,'Designs','Funnel','designsfunnel@gmail.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'gb','{\"defaultLanguage\":\"en_US\"}',NULL,NULL,NULL,NULL,''),(3,'visible','customer',NULL,'jack','benjamin',NULL,NULL,'+12132599304',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'us','{\"defaultLanguage\":\"en_US\"}',NULL,NULL,NULL,NULL,''); /*!40000 ALTER TABLE `graceme_amelia_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_commentmeta` -- DROP TABLE IF EXISTS `graceme_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_commentmeta` -- LOCK TABLES `graceme_commentmeta` WRITE; /*!40000 ALTER TABLE `graceme_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_comments` -- DROP TABLE IF EXISTS `graceme_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0, `comment_author` tinytext NOT NULL, `comment_author_email` varchar(100) NOT NULL DEFAULT '', `comment_author_url` varchar(200) NOT NULL DEFAULT '', `comment_author_IP` varchar(100) NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT 0, `comment_approved` varchar(20) NOT NULL DEFAULT '1', `comment_agent` varchar(255) NOT NULL DEFAULT '', `comment_type` varchar(20) NOT NULL DEFAULT 'comment', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0, `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_comments` -- LOCK TABLES `graceme_comments` WRITE; /*!40000 ALTER TABLE `graceme_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_e_events` -- DROP TABLE IF EXISTS `graceme_e_events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_e_events` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `event_data` text DEFAULT NULL, `created_at` datetime NOT NULL, PRIMARY KEY (`id`), KEY `created_at_index` (`created_at`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_e_events` -- LOCK TABLES `graceme_e_events` WRITE; /*!40000 ALTER TABLE `graceme_e_events` DISABLE KEYS */; INSERT INTO `graceme_e_events` VALUES (1,'{\"event\":\"modal load\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"account\\\",\\\"user_state\\\":\\\"anon\\\"}\",\"ts\":\"2025-04-16T18:38:49.000+04:00\"}','2025-04-16 18:38:49'),(2,'{\"event\":\"close modal\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"account\\\"}\",\"ts\":\"2025-04-16T18:38:51.397+04:00\"}','2025-04-16 18:38:51'); /*!40000 ALTER TABLE `graceme_e_events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_e_submissions` -- DROP TABLE IF EXISTS `graceme_e_submissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_e_submissions` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `type` varchar(60) DEFAULT NULL, `hash_id` varchar(60) NOT NULL, `main_meta_id` bigint(20) unsigned NOT NULL COMMENT 'Id of main field. to represent the main meta field', `post_id` bigint(20) unsigned NOT NULL, `referer` varchar(500) NOT NULL, `referer_title` varchar(300) DEFAULT NULL, `element_id` varchar(20) NOT NULL, `form_name` varchar(60) NOT NULL, `campaign_id` bigint(20) unsigned NOT NULL, `user_id` bigint(20) unsigned DEFAULT NULL, `user_ip` varchar(46) NOT NULL, `user_agent` text NOT NULL, `actions_count` int(11) DEFAULT 0, `actions_succeeded_count` int(11) DEFAULT 0, `status` varchar(20) NOT NULL, `is_read` tinyint(1) NOT NULL DEFAULT 0, `meta` text DEFAULT NULL, `created_at_gmt` datetime NOT NULL, `updated_at_gmt` datetime NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `hash_id_unique_index` (`hash_id`), KEY `main_meta_id_index` (`main_meta_id`), KEY `hash_id_index` (`hash_id`), KEY `type_index` (`type`), KEY `post_id_index` (`post_id`), KEY `element_id_index` (`element_id`), KEY `campaign_id_index` (`campaign_id`), KEY `user_id_index` (`user_id`), KEY `user_ip_index` (`user_ip`), KEY `status_index` (`status`), KEY `is_read_index` (`is_read`), KEY `created_at_gmt_index` (`created_at_gmt`), KEY `updated_at_gmt_index` (`updated_at_gmt`), KEY `created_at_index` (`created_at`), KEY `updated_at_index` (`updated_at`), KEY `referer_index` (`referer`(191)), KEY `referer_title_index` (`referer_title`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_e_submissions` -- LOCK TABLES `graceme_e_submissions` WRITE; /*!40000 ALTER TABLE `graceme_e_submissions` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_e_submissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_e_submissions_actions_log` -- DROP TABLE IF EXISTS `graceme_e_submissions_actions_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_e_submissions_actions_log` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `submission_id` bigint(20) unsigned NOT NULL, `action_name` varchar(60) NOT NULL, `action_label` varchar(60) DEFAULT NULL, `status` varchar(20) NOT NULL, `log` text DEFAULT NULL, `created_at_gmt` datetime NOT NULL, `updated_at_gmt` datetime NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`id`), KEY `submission_id_index` (`submission_id`), KEY `action_name_index` (`action_name`), KEY `status_index` (`status`), KEY `created_at_gmt_index` (`created_at_gmt`), KEY `updated_at_gmt_index` (`updated_at_gmt`), KEY `created_at_index` (`created_at`), KEY `updated_at_index` (`updated_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_e_submissions_actions_log` -- LOCK TABLES `graceme_e_submissions_actions_log` WRITE; /*!40000 ALTER TABLE `graceme_e_submissions_actions_log` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_e_submissions_actions_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_e_submissions_values` -- DROP TABLE IF EXISTS `graceme_e_submissions_values`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_e_submissions_values` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `submission_id` bigint(20) unsigned NOT NULL DEFAULT 0, `key` varchar(60) DEFAULT NULL, `value` longtext DEFAULT NULL, PRIMARY KEY (`id`), KEY `submission_id_index` (`submission_id`), KEY `key_index` (`key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_e_submissions_values` -- LOCK TABLES `graceme_e_submissions_values` WRITE; /*!40000 ALTER TABLE `graceme_e_submissions_values` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_e_submissions_values` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_links` -- DROP TABLE IF EXISTS `graceme_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) NOT NULL DEFAULT '', `link_name` varchar(255) NOT NULL DEFAULT '', `link_image` varchar(255) NOT NULL DEFAULT '', `link_target` varchar(25) NOT NULL DEFAULT '', `link_description` varchar(255) NOT NULL DEFAULT '', `link_visible` varchar(20) NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1, `link_rating` int(11) NOT NULL DEFAULT 0, `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) NOT NULL DEFAULT '', `link_notes` mediumtext NOT NULL, `link_rss` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_links` -- LOCK TABLES `graceme_links` WRITE; /*!40000 ALTER TABLE `graceme_links` DISABLE KEYS */; /*!40000 ALTER TABLE `graceme_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graceme_options` -- DROP TABLE IF EXISTS `graceme_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `graceme_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) NOT NULL DEFAULT '', `option_value` longtext NOT NULL, `autoload` varchar(20) NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`), KEY `autoload` (`autoload`) ) ENGINE=InnoDB AUTO_INCREMENT=1480 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graceme_options` -- LOCK TABLES `graceme_options` WRITE; /*!40000 ALTER TABLE `graceme_options` DISABLE KEYS */; INSERT INTO `graceme_options` VALUES (1,'cron','a:10:{i:1750263837;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1750271718;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1750281836;a:2:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1750281837;a:1:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1750281839;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1750281847;a:4:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1750286322;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1750368236;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1750398147;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}s:7:\"version\";i:2;}','on'),(2,'siteurl','https://thegracemed.designsfunnelserver.com','on'),(3,'home','https://thegracemed.designsfunnelserver.com','on'),(4,'blogname','Grace Med Aesthetics','on'),(5,'blogdescription','','on'),(6,'users_can_register','0','on'),(7,'admin_email','designsfunnel@gmail.com','on'),(8,'start_of_week','1','on'),(9,'use_balanceTags','0','on'),(10,'use_smilies','1','on'),(11,'require_name_email','1','on'),(12,'comments_notify','1','on'),(13,'posts_per_rss','10','on'),(14,'rss_use_excerpt','0','on'),(15,'mailserver_url','mail.example.com','on'),(16,'mailserver_login','login@example.com','on'),(17,'mailserver_pass','','on'),(18,'mailserver_port','110','on'),(19,'default_category','1','on'),(20,'default_comment_status','open','on'),(21,'default_ping_status','open','on'),(22,'default_pingback_flag','1','on'),(23,'posts_per_page','10','on'),(24,'date_format','F j, Y','on'),(25,'time_format','g:i a','on'),(26,'links_updated_date_format','F j, Y g:i a','on'),(27,'comment_moderation','0','on'),(28,'moderation_notify','1','on'),(29,'permalink_structure','/%postname%/','on'),(30,'rewrite_rules','a:112:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:46:\"e-floating-buttons/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:56:\"e-floating-buttons/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:76:\"e-floating-buttons/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:52:\"e-floating-buttons/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"e-floating-buttons/([^/]+)/embed/?$\";s:51:\"index.php?e-floating-buttons=$matches[1]&embed=true\";s:39:\"e-floating-buttons/([^/]+)/trackback/?$\";s:45:\"index.php?e-floating-buttons=$matches[1]&tb=1\";s:47:\"e-floating-buttons/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&paged=$matches[2]\";s:54:\"e-floating-buttons/([^/]+)/comment-page-([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&cpage=$matches[2]\";s:43:\"e-floating-buttons/([^/]+)(?:/([0-9]+))?/?$\";s:57:\"index.php?e-floating-buttons=$matches[1]&page=$matches[2]\";s:35:\"e-floating-buttons/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"e-floating-buttons/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"e-floating-buttons/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"e-floating-buttons/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:24:\"index.php??sitemap=index\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=16&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','on'),(31,'hack_file','0','on'),(32,'blog_charset','UTF-8','on'),(33,'moderation_keys','','off'),(34,'active_plugins','a:3:{i:0;s:31:\"ameliabooking/ameliabooking.php\";i:1;s:31:\"elementor-pro/elementor-pro.php\";i:2;s:23:\"elementor/elementor.php\";}','on'),(35,'category_base','','on'),(36,'ping_sites','http://rpc.pingomatic.com/','on'),(37,'comment_max_links','2','on'),(38,'gmt_offset','0','on'),(39,'default_email_category','1','on'),(40,'recently_edited','a:3:{i:0;s:100:\"/home/admin/thegracemed.designsfunnelserver.com/wp-content/themes/grace-med-aesthetics/functions.php\";i:2;s:96:\"/home/admin/thegracemed.designsfunnelserver.com/wp-content/themes/grace-med-aesthetics/style.css\";i:3;s:0:\"\";}','off'),(41,'template','hello-elementor','on'),(42,'stylesheet','grace-med-aesthetics','on'),(43,'comment_registration','0','on'),(44,'html_type','text/html','on'),(45,'use_trackback','0','on'),(46,'default_role','subscriber','on'),(47,'db_version','58975','on'),(48,'uploads_use_yearmonth_folders','1','on'),(49,'upload_path','','on'),(50,'blog_public','0','on'),(51,'default_link_category','2','on'),(52,'show_on_front','page','on'),(53,'tag_base','','on'),(54,'show_avatars','1','on'),(55,'avatar_rating','G','on'),(56,'upload_url_path','','on'),(57,'thumbnail_size_w','150','on'),(58,'thumbnail_size_h','150','on'),(59,'thumbnail_crop','1','on'),(60,'medium_size_w','300','on'),(61,'medium_size_h','300','on'),(62,'avatar_default','mystery','on'),(63,'large_size_w','1024','on'),(64,'large_size_h','1024','on'),(65,'image_default_link_type','none','on'),(66,'image_default_size','','on'),(67,'image_default_align','','on'),(68,'close_comments_for_old_posts','0','on'),(69,'close_comments_days_old','14','on'),(70,'thread_comments','1','on'),(71,'thread_comments_depth','5','on'),(72,'page_comments','0','on'),(73,'comments_per_page','50','on'),(74,'default_comments_page','newest','on'),(75,'comment_order','asc','on'),(76,'sticky_posts','a:0:{}','on'),(77,'widget_categories','a:0:{}','on'),(78,'widget_text','a:0:{}','on'),(79,'widget_rss','a:0:{}','on'),(80,'uninstall_plugins','a:2:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:31:\"ameliabooking/ameliabooking.php\";a:2:{i:0;s:20:\"AmeliaBooking\\Plugin\";i:1;s:8:\"deletion\";}}','off'),(81,'timezone_string','','on'),(82,'page_for_posts','0','on'),(83,'page_on_front','16','on'),(84,'default_post_format','0','on'),(85,'link_manager_enabled','0','on'),(86,'finished_splitting_shared_terms','1','on'),(87,'site_icon','225','on'),(88,'medium_large_size_w','768','on'),(89,'medium_large_size_h','0','on'),(90,'wp_page_for_privacy_policy','3','on'),(91,'show_comments_cookies_opt_in','1','on'),(92,'admin_email_lifespan','1760390636','on'),(93,'disallowed_keys','','off'),(94,'comment_previously_approved','1','on'),(95,'auto_plugin_theme_update_emails','a:0:{}','off'),(96,'auto_update_core_dev','enabled','on'),(97,'auto_update_core_minor','enabled','on'),(98,'auto_update_core_major','enabled','on'),(99,'wp_force_deactivated_plugins','a:0:{}','on'),(100,'wp_attachment_pages_enabled','0','on'),(101,'initial_db_version','58975','on'),(102,'graceme_user_roles','a:8:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:131:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:16:\"amelia_read_menu\";b:1;s:21:\"amelia_read_dashboard\";b:1;s:21:\"amelia_read_whats_new\";b:1;s:27:\"amelia_read_lite_vs_premium\";b:1;s:20:\"amelia_read_calendar\";b:1;s:24:\"amelia_read_appointments\";b:1;s:18:\"amelia_read_events\";b:1;s:21:\"amelia_read_employees\";b:1;s:20:\"amelia_read_services\";b:1;s:20:\"amelia_read_packages\";b:1;s:21:\"amelia_read_locations\";b:1;s:17:\"amelia_read_taxes\";b:1;s:19:\"amelia_read_coupons\";b:1;s:21:\"amelia_read_customers\";b:1;s:19:\"amelia_read_finance\";b:1;s:25:\"amelia_read_notifications\";b:1;s:21:\"amelia_read_customize\";b:1;s:25:\"amelia_read_custom_fields\";b:1;s:20:\"amelia_read_settings\";b:1;s:27:\"amelia_read_others_settings\";b:1;s:28:\"amelia_read_others_dashboard\";b:1;s:27:\"amelia_read_others_calendar\";b:1;s:31:\"amelia_read_others_appointments\";b:1;s:27:\"amelia_read_others_services\";b:1;s:28:\"amelia_read_others_employees\";b:1;s:28:\"amelia_read_others_customers\";b:1;s:22:\"amelia_write_dashboard\";b:1;s:21:\"amelia_write_calendar\";b:1;s:25:\"amelia_write_appointments\";b:1;s:19:\"amelia_write_events\";b:1;s:22:\"amelia_write_employees\";b:1;s:21:\"amelia_write_services\";b:1;s:21:\"amelia_write_packages\";b:1;s:22:\"amelia_write_locations\";b:1;s:18:\"amelia_write_taxes\";b:1;s:20:\"amelia_write_coupons\";b:1;s:22:\"amelia_write_customers\";b:1;s:20:\"amelia_write_finance\";b:1;s:26:\"amelia_write_notifications\";b:1;s:22:\"amelia_write_customize\";b:1;s:26:\"amelia_write_custom_fields\";b:1;s:21:\"amelia_write_settings\";b:1;s:19:\"amelia_write_status\";b:1;s:28:\"amelia_write_others_settings\";b:1;s:28:\"amelia_write_others_calendar\";b:1;s:32:\"amelia_write_others_appointments\";b:1;s:28:\"amelia_write_others_services\";b:1;s:29:\"amelia_write_others_employees\";b:1;s:26:\"amelia_write_others_events\";b:1;s:27:\"amelia_write_others_finance\";b:1;s:29:\"amelia_write_others_dashboard\";b:1;s:23:\"amelia_delete_dashboard\";b:1;s:22:\"amelia_delete_calendar\";b:1;s:26:\"amelia_delete_appointments\";b:1;s:20:\"amelia_delete_events\";b:1;s:23:\"amelia_delete_employees\";b:1;s:22:\"amelia_delete_services\";b:1;s:22:\"amelia_delete_packages\";b:1;s:23:\"amelia_delete_locations\";b:1;s:19:\"amelia_delete_taxes\";b:1;s:21:\"amelia_delete_coupons\";b:1;s:23:\"amelia_delete_customers\";b:1;s:21:\"amelia_delete_finance\";b:1;s:27:\"amelia_delete_notifications\";b:1;s:23:\"amelia_delete_customize\";b:1;s:27:\"amelia_delete_custom_fields\";b:1;s:22:\"amelia_delete_settings\";b:1;s:32:\"amelia_write_status_appointments\";b:1;s:26:\"amelia_write_status_events\";b:1;s:30:\"amelia_write_time_appointments\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:17:\"wpamelia-customer\";a:2:{s:4:\"name\";s:15:\"Amelia Customer\";s:12:\"capabilities\";a:6:{s:4:\"read\";b:1;s:16:\"amelia_read_menu\";b:1;s:20:\"amelia_read_calendar\";b:1;s:24:\"amelia_read_appointments\";b:1;s:18:\"amelia_read_events\";b:1;s:30:\"amelia_write_time_appointments\";b:1;}}s:17:\"wpamelia-provider\";a:2:{s:4:\"name\";s:15:\"Amelia Employee\";s:12:\"capabilities\";a:18:{s:4:\"read\";b:1;s:20:\"amelia_delete_events\";b:1;s:16:\"amelia_read_menu\";b:1;s:20:\"amelia_read_calendar\";b:1;s:24:\"amelia_read_appointments\";b:1;s:18:\"amelia_read_events\";b:1;s:21:\"amelia_read_employees\";b:1;s:28:\"amelia_read_others_customers\";b:1;s:27:\"amelia_read_others_services\";b:0;s:22:\"amelia_write_employees\";b:1;s:32:\"amelia_write_status_appointments\";b:1;s:26:\"amelia_write_status_events\";b:1;s:30:\"amelia_write_time_appointments\";b:1;s:32:\"amelia_write_others_appointments\";b:0;s:28:\"amelia_write_others_services\";b:0;s:25:\"amelia_write_appointments\";b:1;s:19:\"amelia_write_events\";b:1;s:26:\"amelia_write_others_events\";b:0;}}s:16:\"wpamelia-manager\";a:2:{s:4:\"name\";s:14:\"Amelia Manager\";s:12:\"capabilities\";a:50:{s:4:\"read\";b:1;s:20:\"amelia_delete_events\";b:1;s:16:\"amelia_read_menu\";b:1;s:21:\"amelia_read_dashboard\";b:1;s:21:\"amelia_read_whats_new\";b:1;s:27:\"amelia_read_lite_vs_premium\";b:1;s:20:\"amelia_read_calendar\";b:1;s:24:\"amelia_read_appointments\";b:1;s:18:\"amelia_read_events\";b:1;s:21:\"amelia_read_employees\";b:1;s:20:\"amelia_read_services\";b:1;s:21:\"amelia_read_resources\";b:1;s:20:\"amelia_read_packages\";b:1;s:21:\"amelia_read_locations\";b:1;s:17:\"amelia_read_taxes\";b:1;s:19:\"amelia_read_coupons\";b:1;s:21:\"amelia_read_customers\";b:1;s:19:\"amelia_read_finance\";b:1;s:25:\"amelia_read_notifications\";b:1;s:28:\"amelia_read_others_dashboard\";b:1;s:27:\"amelia_read_others_calendar\";b:1;s:31:\"amelia_read_others_appointments\";b:1;s:27:\"amelia_read_others_services\";b:1;s:28:\"amelia_read_others_employees\";b:1;s:28:\"amelia_read_others_customers\";b:1;s:22:\"amelia_write_dashboard\";b:1;s:21:\"amelia_write_calendar\";b:1;s:25:\"amelia_write_appointments\";b:1;s:19:\"amelia_write_events\";b:1;s:22:\"amelia_write_employees\";b:1;s:21:\"amelia_write_services\";b:1;s:22:\"amelia_write_resources\";b:1;s:21:\"amelia_write_packages\";b:1;s:22:\"amelia_write_locations\";b:1;s:18:\"amelia_write_taxes\";b:1;s:20:\"amelia_write_coupons\";b:1;s:22:\"amelia_write_customers\";b:1;s:20:\"amelia_write_finance\";b:1;s:26:\"amelia_write_notifications\";b:1;s:28:\"amelia_write_others_calendar\";b:1;s:32:\"amelia_write_others_appointments\";b:1;s:28:\"amelia_write_others_services\";b:1;s:29:\"amelia_write_others_employees\";b:1;s:26:\"amelia_write_others_events\";b:1;s:27:\"amelia_write_others_finance\";b:1;s:29:\"amelia_write_others_dashboard\";b:1;s:32:\"amelia_write_status_appointments\";b:1;s:26:\"amelia_write_status_events\";b:1;s:30:\"amelia_write_time_appointments\";b:1;s:12:\"upload_files\";b:1;}}}','on'),(103,'fresh_site','0','off'),(104,'user_count','2','off'),(105,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"\";}i:3;a:1:{s:7:\"content\";s:154:\"

Recent Posts

\";}i:4;a:1:{s:7:\"content\";s:227:\"

Recent Comments

\";}i:5;a:1:{s:7:\"content\";s:146:\"

Archives

\";}i:6;a:1:{s:7:\"content\";s:150:\"

Categories

\";}s:12:\"_multiwidget\";i:1;}','auto'),(106,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','auto'),(107,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(108,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(109,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(114,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(115,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(116,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(117,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(118,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(119,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(121,'recovery_keys','a:0:{}','off'),(122,'theme_mods_twentytwentyfive','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1744838882;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','off'),(123,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:3:\"6.8\";s:5:\"files\";a:536:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:21:\"button/editor-rtl.css\";i:29;s:25:\"button/editor-rtl.min.css\";i:30;s:17:\"button/editor.css\";i:31;s:21:\"button/editor.min.css\";i:32;s:20:\"button/style-rtl.css\";i:33;s:24:\"button/style-rtl.min.css\";i:34;s:16:\"button/style.css\";i:35;s:20:\"button/style.min.css\";i:36;s:22:\"buttons/editor-rtl.css\";i:37;s:26:\"buttons/editor-rtl.min.css\";i:38;s:18:\"buttons/editor.css\";i:39;s:22:\"buttons/editor.min.css\";i:40;s:21:\"buttons/style-rtl.css\";i:41;s:25:\"buttons/style-rtl.min.css\";i:42;s:17:\"buttons/style.css\";i:43;s:21:\"buttons/style.min.css\";i:44;s:22:\"calendar/style-rtl.css\";i:45;s:26:\"calendar/style-rtl.min.css\";i:46;s:18:\"calendar/style.css\";i:47;s:22:\"calendar/style.min.css\";i:48;s:25:\"categories/editor-rtl.css\";i:49;s:29:\"categories/editor-rtl.min.css\";i:50;s:21:\"categories/editor.css\";i:51;s:25:\"categories/editor.min.css\";i:52;s:24:\"categories/style-rtl.css\";i:53;s:28:\"categories/style-rtl.min.css\";i:54;s:20:\"categories/style.css\";i:55;s:24:\"categories/style.min.css\";i:56;s:19:\"code/editor-rtl.css\";i:57;s:23:\"code/editor-rtl.min.css\";i:58;s:15:\"code/editor.css\";i:59;s:19:\"code/editor.min.css\";i:60;s:18:\"code/style-rtl.css\";i:61;s:22:\"code/style-rtl.min.css\";i:62;s:14:\"code/style.css\";i:63;s:18:\"code/style.min.css\";i:64;s:18:\"code/theme-rtl.css\";i:65;s:22:\"code/theme-rtl.min.css\";i:66;s:14:\"code/theme.css\";i:67;s:18:\"code/theme.min.css\";i:68;s:22:\"columns/editor-rtl.css\";i:69;s:26:\"columns/editor-rtl.min.css\";i:70;s:18:\"columns/editor.css\";i:71;s:22:\"columns/editor.min.css\";i:72;s:21:\"columns/style-rtl.css\";i:73;s:25:\"columns/style-rtl.min.css\";i:74;s:17:\"columns/style.css\";i:75;s:21:\"columns/style.min.css\";i:76;s:33:\"comment-author-name/style-rtl.css\";i:77;s:37:\"comment-author-name/style-rtl.min.css\";i:78;s:29:\"comment-author-name/style.css\";i:79;s:33:\"comment-author-name/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:26:\"comment-date/style-rtl.css\";i:85;s:30:\"comment-date/style-rtl.min.css\";i:86;s:22:\"comment-date/style.css\";i:87;s:26:\"comment-date/style.min.css\";i:88;s:31:\"comment-edit-link/style-rtl.css\";i:89;s:35:\"comment-edit-link/style-rtl.min.css\";i:90;s:27:\"comment-edit-link/style.css\";i:91;s:31:\"comment-edit-link/style.min.css\";i:92;s:32:\"comment-reply-link/style-rtl.css\";i:93;s:36:\"comment-reply-link/style-rtl.min.css\";i:94;s:28:\"comment-reply-link/style.css\";i:95;s:32:\"comment-reply-link/style.min.css\";i:96;s:30:\"comment-template/style-rtl.css\";i:97;s:34:\"comment-template/style-rtl.min.css\";i:98;s:26:\"comment-template/style.css\";i:99;s:30:\"comment-template/style.min.css\";i:100;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:101;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:102;s:38:\"comments-pagination-numbers/editor.css\";i:103;s:42:\"comments-pagination-numbers/editor.min.css\";i:104;s:34:\"comments-pagination/editor-rtl.css\";i:105;s:38:\"comments-pagination/editor-rtl.min.css\";i:106;s:30:\"comments-pagination/editor.css\";i:107;s:34:\"comments-pagination/editor.min.css\";i:108;s:33:\"comments-pagination/style-rtl.css\";i:109;s:37:\"comments-pagination/style-rtl.min.css\";i:110;s:29:\"comments-pagination/style.css\";i:111;s:33:\"comments-pagination/style.min.css\";i:112;s:29:\"comments-title/editor-rtl.css\";i:113;s:33:\"comments-title/editor-rtl.min.css\";i:114;s:25:\"comments-title/editor.css\";i:115;s:29:\"comments-title/editor.min.css\";i:116;s:23:\"comments/editor-rtl.css\";i:117;s:27:\"comments/editor-rtl.min.css\";i:118;s:19:\"comments/editor.css\";i:119;s:23:\"comments/editor.min.css\";i:120;s:22:\"comments/style-rtl.css\";i:121;s:26:\"comments/style-rtl.min.css\";i:122;s:18:\"comments/style.css\";i:123;s:22:\"comments/style.min.css\";i:124;s:20:\"cover/editor-rtl.css\";i:125;s:24:\"cover/editor-rtl.min.css\";i:126;s:16:\"cover/editor.css\";i:127;s:20:\"cover/editor.min.css\";i:128;s:19:\"cover/style-rtl.css\";i:129;s:23:\"cover/style-rtl.min.css\";i:130;s:15:\"cover/style.css\";i:131;s:19:\"cover/style.min.css\";i:132;s:22:\"details/editor-rtl.css\";i:133;s:26:\"details/editor-rtl.min.css\";i:134;s:18:\"details/editor.css\";i:135;s:22:\"details/editor.min.css\";i:136;s:21:\"details/style-rtl.css\";i:137;s:25:\"details/style-rtl.min.css\";i:138;s:17:\"details/style.css\";i:139;s:21:\"details/style.min.css\";i:140;s:20:\"embed/editor-rtl.css\";i:141;s:24:\"embed/editor-rtl.min.css\";i:142;s:16:\"embed/editor.css\";i:143;s:20:\"embed/editor.min.css\";i:144;s:19:\"embed/style-rtl.css\";i:145;s:23:\"embed/style-rtl.min.css\";i:146;s:15:\"embed/style.css\";i:147;s:19:\"embed/style.min.css\";i:148;s:19:\"embed/theme-rtl.css\";i:149;s:23:\"embed/theme-rtl.min.css\";i:150;s:15:\"embed/theme.css\";i:151;s:19:\"embed/theme.min.css\";i:152;s:19:\"file/editor-rtl.css\";i:153;s:23:\"file/editor-rtl.min.css\";i:154;s:15:\"file/editor.css\";i:155;s:19:\"file/editor.min.css\";i:156;s:18:\"file/style-rtl.css\";i:157;s:22:\"file/style-rtl.min.css\";i:158;s:14:\"file/style.css\";i:159;s:18:\"file/style.min.css\";i:160;s:23:\"footnotes/style-rtl.css\";i:161;s:27:\"footnotes/style-rtl.min.css\";i:162;s:19:\"footnotes/style.css\";i:163;s:23:\"footnotes/style.min.css\";i:164;s:23:\"freeform/editor-rtl.css\";i:165;s:27:\"freeform/editor-rtl.min.css\";i:166;s:19:\"freeform/editor.css\";i:167;s:23:\"freeform/editor.min.css\";i:168;s:22:\"gallery/editor-rtl.css\";i:169;s:26:\"gallery/editor-rtl.min.css\";i:170;s:18:\"gallery/editor.css\";i:171;s:22:\"gallery/editor.min.css\";i:172;s:21:\"gallery/style-rtl.css\";i:173;s:25:\"gallery/style-rtl.min.css\";i:174;s:17:\"gallery/style.css\";i:175;s:21:\"gallery/style.min.css\";i:176;s:21:\"gallery/theme-rtl.css\";i:177;s:25:\"gallery/theme-rtl.min.css\";i:178;s:17:\"gallery/theme.css\";i:179;s:21:\"gallery/theme.min.css\";i:180;s:20:\"group/editor-rtl.css\";i:181;s:24:\"group/editor-rtl.min.css\";i:182;s:16:\"group/editor.css\";i:183;s:20:\"group/editor.min.css\";i:184;s:19:\"group/style-rtl.css\";i:185;s:23:\"group/style-rtl.min.css\";i:186;s:15:\"group/style.css\";i:187;s:19:\"group/style.min.css\";i:188;s:19:\"group/theme-rtl.css\";i:189;s:23:\"group/theme-rtl.min.css\";i:190;s:15:\"group/theme.css\";i:191;s:19:\"group/theme.min.css\";i:192;s:21:\"heading/style-rtl.css\";i:193;s:25:\"heading/style-rtl.min.css\";i:194;s:17:\"heading/style.css\";i:195;s:21:\"heading/style.min.css\";i:196;s:19:\"html/editor-rtl.css\";i:197;s:23:\"html/editor-rtl.min.css\";i:198;s:15:\"html/editor.css\";i:199;s:19:\"html/editor.min.css\";i:200;s:20:\"image/editor-rtl.css\";i:201;s:24:\"image/editor-rtl.min.css\";i:202;s:16:\"image/editor.css\";i:203;s:20:\"image/editor.min.css\";i:204;s:19:\"image/style-rtl.css\";i:205;s:23:\"image/style-rtl.min.css\";i:206;s:15:\"image/style.css\";i:207;s:19:\"image/style.min.css\";i:208;s:19:\"image/theme-rtl.css\";i:209;s:23:\"image/theme-rtl.min.css\";i:210;s:15:\"image/theme.css\";i:211;s:19:\"image/theme.min.css\";i:212;s:29:\"latest-comments/style-rtl.css\";i:213;s:33:\"latest-comments/style-rtl.min.css\";i:214;s:25:\"latest-comments/style.css\";i:215;s:29:\"latest-comments/style.min.css\";i:216;s:27:\"latest-posts/editor-rtl.css\";i:217;s:31:\"latest-posts/editor-rtl.min.css\";i:218;s:23:\"latest-posts/editor.css\";i:219;s:27:\"latest-posts/editor.min.css\";i:220;s:26:\"latest-posts/style-rtl.css\";i:221;s:30:\"latest-posts/style-rtl.min.css\";i:222;s:22:\"latest-posts/style.css\";i:223;s:26:\"latest-posts/style.min.css\";i:224;s:18:\"list/style-rtl.css\";i:225;s:22:\"list/style-rtl.min.css\";i:226;s:14:\"list/style.css\";i:227;s:18:\"list/style.min.css\";i:228;s:22:\"loginout/style-rtl.css\";i:229;s:26:\"loginout/style-rtl.min.css\";i:230;s:18:\"loginout/style.css\";i:231;s:22:\"loginout/style.min.css\";i:232;s:25:\"media-text/editor-rtl.css\";i:233;s:29:\"media-text/editor-rtl.min.css\";i:234;s:21:\"media-text/editor.css\";i:235;s:25:\"media-text/editor.min.css\";i:236;s:24:\"media-text/style-rtl.css\";i:237;s:28:\"media-text/style-rtl.min.css\";i:238;s:20:\"media-text/style.css\";i:239;s:24:\"media-text/style.min.css\";i:240;s:19:\"more/editor-rtl.css\";i:241;s:23:\"more/editor-rtl.min.css\";i:242;s:15:\"more/editor.css\";i:243;s:19:\"more/editor.min.css\";i:244;s:30:\"navigation-link/editor-rtl.css\";i:245;s:34:\"navigation-link/editor-rtl.min.css\";i:246;s:26:\"navigation-link/editor.css\";i:247;s:30:\"navigation-link/editor.min.css\";i:248;s:29:\"navigation-link/style-rtl.css\";i:249;s:33:\"navigation-link/style-rtl.min.css\";i:250;s:25:\"navigation-link/style.css\";i:251;s:29:\"navigation-link/style.min.css\";i:252;s:33:\"navigation-submenu/editor-rtl.css\";i:253;s:37:\"navigation-submenu/editor-rtl.min.css\";i:254;s:29:\"navigation-submenu/editor.css\";i:255;s:33:\"navigation-submenu/editor.min.css\";i:256;s:25:\"navigation/editor-rtl.css\";i:257;s:29:\"navigation/editor-rtl.min.css\";i:258;s:21:\"navigation/editor.css\";i:259;s:25:\"navigation/editor.min.css\";i:260;s:24:\"navigation/style-rtl.css\";i:261;s:28:\"navigation/style-rtl.min.css\";i:262;s:20:\"navigation/style.css\";i:263;s:24:\"navigation/style.min.css\";i:264;s:23:\"nextpage/editor-rtl.css\";i:265;s:27:\"nextpage/editor-rtl.min.css\";i:266;s:19:\"nextpage/editor.css\";i:267;s:23:\"nextpage/editor.min.css\";i:268;s:24:\"page-list/editor-rtl.css\";i:269;s:28:\"page-list/editor-rtl.min.css\";i:270;s:20:\"page-list/editor.css\";i:271;s:24:\"page-list/editor.min.css\";i:272;s:23:\"page-list/style-rtl.css\";i:273;s:27:\"page-list/style-rtl.min.css\";i:274;s:19:\"page-list/style.css\";i:275;s:23:\"page-list/style.min.css\";i:276;s:24:\"paragraph/editor-rtl.css\";i:277;s:28:\"paragraph/editor-rtl.min.css\";i:278;s:20:\"paragraph/editor.css\";i:279;s:24:\"paragraph/editor.min.css\";i:280;s:23:\"paragraph/style-rtl.css\";i:281;s:27:\"paragraph/style-rtl.min.css\";i:282;s:19:\"paragraph/style.css\";i:283;s:23:\"paragraph/style.min.css\";i:284;s:35:\"post-author-biography/style-rtl.css\";i:285;s:39:\"post-author-biography/style-rtl.min.css\";i:286;s:31:\"post-author-biography/style.css\";i:287;s:35:\"post-author-biography/style.min.css\";i:288;s:30:\"post-author-name/style-rtl.css\";i:289;s:34:\"post-author-name/style-rtl.min.css\";i:290;s:26:\"post-author-name/style.css\";i:291;s:30:\"post-author-name/style.min.css\";i:292;s:26:\"post-author/editor-rtl.css\";i:293;s:30:\"post-author/editor-rtl.min.css\";i:294;s:22:\"post-author/editor.css\";i:295;s:26:\"post-author/editor.min.css\";i:296;s:25:\"post-author/style-rtl.css\";i:297;s:29:\"post-author/style-rtl.min.css\";i:298;s:21:\"post-author/style.css\";i:299;s:25:\"post-author/style.min.css\";i:300;s:33:\"post-comments-form/editor-rtl.css\";i:301;s:37:\"post-comments-form/editor-rtl.min.css\";i:302;s:29:\"post-comments-form/editor.css\";i:303;s:33:\"post-comments-form/editor.min.css\";i:304;s:32:\"post-comments-form/style-rtl.css\";i:305;s:36:\"post-comments-form/style-rtl.min.css\";i:306;s:28:\"post-comments-form/style.css\";i:307;s:32:\"post-comments-form/style.min.css\";i:308;s:26:\"post-content/style-rtl.css\";i:309;s:30:\"post-content/style-rtl.min.css\";i:310;s:22:\"post-content/style.css\";i:311;s:26:\"post-content/style.min.css\";i:312;s:23:\"post-date/style-rtl.css\";i:313;s:27:\"post-date/style-rtl.min.css\";i:314;s:19:\"post-date/style.css\";i:315;s:23:\"post-date/style.min.css\";i:316;s:27:\"post-excerpt/editor-rtl.css\";i:317;s:31:\"post-excerpt/editor-rtl.min.css\";i:318;s:23:\"post-excerpt/editor.css\";i:319;s:27:\"post-excerpt/editor.min.css\";i:320;s:26:\"post-excerpt/style-rtl.css\";i:321;s:30:\"post-excerpt/style-rtl.min.css\";i:322;s:22:\"post-excerpt/style.css\";i:323;s:26:\"post-excerpt/style.min.css\";i:324;s:34:\"post-featured-image/editor-rtl.css\";i:325;s:38:\"post-featured-image/editor-rtl.min.css\";i:326;s:30:\"post-featured-image/editor.css\";i:327;s:34:\"post-featured-image/editor.min.css\";i:328;s:33:\"post-featured-image/style-rtl.css\";i:329;s:37:\"post-featured-image/style-rtl.min.css\";i:330;s:29:\"post-featured-image/style.css\";i:331;s:33:\"post-featured-image/style.min.css\";i:332;s:34:\"post-navigation-link/style-rtl.css\";i:333;s:38:\"post-navigation-link/style-rtl.min.css\";i:334;s:30:\"post-navigation-link/style.css\";i:335;s:34:\"post-navigation-link/style.min.css\";i:336;s:27:\"post-template/style-rtl.css\";i:337;s:31:\"post-template/style-rtl.min.css\";i:338;s:23:\"post-template/style.css\";i:339;s:27:\"post-template/style.min.css\";i:340;s:24:\"post-terms/style-rtl.css\";i:341;s:28:\"post-terms/style-rtl.min.css\";i:342;s:20:\"post-terms/style.css\";i:343;s:24:\"post-terms/style.min.css\";i:344;s:24:\"post-title/style-rtl.css\";i:345;s:28:\"post-title/style-rtl.min.css\";i:346;s:20:\"post-title/style.css\";i:347;s:24:\"post-title/style.min.css\";i:348;s:26:\"preformatted/style-rtl.css\";i:349;s:30:\"preformatted/style-rtl.min.css\";i:350;s:22:\"preformatted/style.css\";i:351;s:26:\"preformatted/style.min.css\";i:352;s:24:\"pullquote/editor-rtl.css\";i:353;s:28:\"pullquote/editor-rtl.min.css\";i:354;s:20:\"pullquote/editor.css\";i:355;s:24:\"pullquote/editor.min.css\";i:356;s:23:\"pullquote/style-rtl.css\";i:357;s:27:\"pullquote/style-rtl.min.css\";i:358;s:19:\"pullquote/style.css\";i:359;s:23:\"pullquote/style.min.css\";i:360;s:23:\"pullquote/theme-rtl.css\";i:361;s:27:\"pullquote/theme-rtl.min.css\";i:362;s:19:\"pullquote/theme.css\";i:363;s:23:\"pullquote/theme.min.css\";i:364;s:39:\"query-pagination-numbers/editor-rtl.css\";i:365;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:366;s:35:\"query-pagination-numbers/editor.css\";i:367;s:39:\"query-pagination-numbers/editor.min.css\";i:368;s:31:\"query-pagination/editor-rtl.css\";i:369;s:35:\"query-pagination/editor-rtl.min.css\";i:370;s:27:\"query-pagination/editor.css\";i:371;s:31:\"query-pagination/editor.min.css\";i:372;s:30:\"query-pagination/style-rtl.css\";i:373;s:34:\"query-pagination/style-rtl.min.css\";i:374;s:26:\"query-pagination/style.css\";i:375;s:30:\"query-pagination/style.min.css\";i:376;s:25:\"query-title/style-rtl.css\";i:377;s:29:\"query-title/style-rtl.min.css\";i:378;s:21:\"query-title/style.css\";i:379;s:25:\"query-title/style.min.css\";i:380;s:25:\"query-total/style-rtl.css\";i:381;s:29:\"query-total/style-rtl.min.css\";i:382;s:21:\"query-total/style.css\";i:383;s:25:\"query-total/style.min.css\";i:384;s:20:\"query/editor-rtl.css\";i:385;s:24:\"query/editor-rtl.min.css\";i:386;s:16:\"query/editor.css\";i:387;s:20:\"query/editor.min.css\";i:388;s:19:\"quote/style-rtl.css\";i:389;s:23:\"quote/style-rtl.min.css\";i:390;s:15:\"quote/style.css\";i:391;s:19:\"quote/style.min.css\";i:392;s:19:\"quote/theme-rtl.css\";i:393;s:23:\"quote/theme-rtl.min.css\";i:394;s:15:\"quote/theme.css\";i:395;s:19:\"quote/theme.min.css\";i:396;s:23:\"read-more/style-rtl.css\";i:397;s:27:\"read-more/style-rtl.min.css\";i:398;s:19:\"read-more/style.css\";i:399;s:23:\"read-more/style.min.css\";i:400;s:18:\"rss/editor-rtl.css\";i:401;s:22:\"rss/editor-rtl.min.css\";i:402;s:14:\"rss/editor.css\";i:403;s:18:\"rss/editor.min.css\";i:404;s:17:\"rss/style-rtl.css\";i:405;s:21:\"rss/style-rtl.min.css\";i:406;s:13:\"rss/style.css\";i:407;s:17:\"rss/style.min.css\";i:408;s:21:\"search/editor-rtl.css\";i:409;s:25:\"search/editor-rtl.min.css\";i:410;s:17:\"search/editor.css\";i:411;s:21:\"search/editor.min.css\";i:412;s:20:\"search/style-rtl.css\";i:413;s:24:\"search/style-rtl.min.css\";i:414;s:16:\"search/style.css\";i:415;s:20:\"search/style.min.css\";i:416;s:20:\"search/theme-rtl.css\";i:417;s:24:\"search/theme-rtl.min.css\";i:418;s:16:\"search/theme.css\";i:419;s:20:\"search/theme.min.css\";i:420;s:24:\"separator/editor-rtl.css\";i:421;s:28:\"separator/editor-rtl.min.css\";i:422;s:20:\"separator/editor.css\";i:423;s:24:\"separator/editor.min.css\";i:424;s:23:\"separator/style-rtl.css\";i:425;s:27:\"separator/style-rtl.min.css\";i:426;s:19:\"separator/style.css\";i:427;s:23:\"separator/style.min.css\";i:428;s:23:\"separator/theme-rtl.css\";i:429;s:27:\"separator/theme-rtl.min.css\";i:430;s:19:\"separator/theme.css\";i:431;s:23:\"separator/theme.min.css\";i:432;s:24:\"shortcode/editor-rtl.css\";i:433;s:28:\"shortcode/editor-rtl.min.css\";i:434;s:20:\"shortcode/editor.css\";i:435;s:24:\"shortcode/editor.min.css\";i:436;s:24:\"site-logo/editor-rtl.css\";i:437;s:28:\"site-logo/editor-rtl.min.css\";i:438;s:20:\"site-logo/editor.css\";i:439;s:24:\"site-logo/editor.min.css\";i:440;s:23:\"site-logo/style-rtl.css\";i:441;s:27:\"site-logo/style-rtl.min.css\";i:442;s:19:\"site-logo/style.css\";i:443;s:23:\"site-logo/style.min.css\";i:444;s:27:\"site-tagline/editor-rtl.css\";i:445;s:31:\"site-tagline/editor-rtl.min.css\";i:446;s:23:\"site-tagline/editor.css\";i:447;s:27:\"site-tagline/editor.min.css\";i:448;s:26:\"site-tagline/style-rtl.css\";i:449;s:30:\"site-tagline/style-rtl.min.css\";i:450;s:22:\"site-tagline/style.css\";i:451;s:26:\"site-tagline/style.min.css\";i:452;s:25:\"site-title/editor-rtl.css\";i:453;s:29:\"site-title/editor-rtl.min.css\";i:454;s:21:\"site-title/editor.css\";i:455;s:25:\"site-title/editor.min.css\";i:456;s:24:\"site-title/style-rtl.css\";i:457;s:28:\"site-title/style-rtl.min.css\";i:458;s:20:\"site-title/style.css\";i:459;s:24:\"site-title/style.min.css\";i:460;s:26:\"social-link/editor-rtl.css\";i:461;s:30:\"social-link/editor-rtl.min.css\";i:462;s:22:\"social-link/editor.css\";i:463;s:26:\"social-link/editor.min.css\";i:464;s:27:\"social-links/editor-rtl.css\";i:465;s:31:\"social-links/editor-rtl.min.css\";i:466;s:23:\"social-links/editor.css\";i:467;s:27:\"social-links/editor.min.css\";i:468;s:26:\"social-links/style-rtl.css\";i:469;s:30:\"social-links/style-rtl.min.css\";i:470;s:22:\"social-links/style.css\";i:471;s:26:\"social-links/style.min.css\";i:472;s:21:\"spacer/editor-rtl.css\";i:473;s:25:\"spacer/editor-rtl.min.css\";i:474;s:17:\"spacer/editor.css\";i:475;s:21:\"spacer/editor.min.css\";i:476;s:20:\"spacer/style-rtl.css\";i:477;s:24:\"spacer/style-rtl.min.css\";i:478;s:16:\"spacer/style.css\";i:479;s:20:\"spacer/style.min.css\";i:480;s:20:\"table/editor-rtl.css\";i:481;s:24:\"table/editor-rtl.min.css\";i:482;s:16:\"table/editor.css\";i:483;s:20:\"table/editor.min.css\";i:484;s:19:\"table/style-rtl.css\";i:485;s:23:\"table/style-rtl.min.css\";i:486;s:15:\"table/style.css\";i:487;s:19:\"table/style.min.css\";i:488;s:19:\"table/theme-rtl.css\";i:489;s:23:\"table/theme-rtl.min.css\";i:490;s:15:\"table/theme.css\";i:491;s:19:\"table/theme.min.css\";i:492;s:24:\"tag-cloud/editor-rtl.css\";i:493;s:28:\"tag-cloud/editor-rtl.min.css\";i:494;s:20:\"tag-cloud/editor.css\";i:495;s:24:\"tag-cloud/editor.min.css\";i:496;s:23:\"tag-cloud/style-rtl.css\";i:497;s:27:\"tag-cloud/style-rtl.min.css\";i:498;s:19:\"tag-cloud/style.css\";i:499;s:23:\"tag-cloud/style.min.css\";i:500;s:28:\"template-part/editor-rtl.css\";i:501;s:32:\"template-part/editor-rtl.min.css\";i:502;s:24:\"template-part/editor.css\";i:503;s:28:\"template-part/editor.min.css\";i:504;s:27:\"template-part/theme-rtl.css\";i:505;s:31:\"template-part/theme-rtl.min.css\";i:506;s:23:\"template-part/theme.css\";i:507;s:27:\"template-part/theme.min.css\";i:508;s:30:\"term-description/style-rtl.css\";i:509;s:34:\"term-description/style-rtl.min.css\";i:510;s:26:\"term-description/style.css\";i:511;s:30:\"term-description/style.min.css\";i:512;s:27:\"text-columns/editor-rtl.css\";i:513;s:31:\"text-columns/editor-rtl.min.css\";i:514;s:23:\"text-columns/editor.css\";i:515;s:27:\"text-columns/editor.min.css\";i:516;s:26:\"text-columns/style-rtl.css\";i:517;s:30:\"text-columns/style-rtl.min.css\";i:518;s:22:\"text-columns/style.css\";i:519;s:26:\"text-columns/style.min.css\";i:520;s:19:\"verse/style-rtl.css\";i:521;s:23:\"verse/style-rtl.min.css\";i:522;s:15:\"verse/style.css\";i:523;s:19:\"verse/style.min.css\";i:524;s:20:\"video/editor-rtl.css\";i:525;s:24:\"video/editor-rtl.min.css\";i:526;s:16:\"video/editor.css\";i:527;s:20:\"video/editor.min.css\";i:528;s:19:\"video/style-rtl.css\";i:529;s:23:\"video/style-rtl.min.css\";i:530;s:15:\"video/style.css\";i:531;s:19:\"video/style.min.css\";i:532;s:19:\"video/theme-rtl.css\";i:533;s:23:\"video/theme-rtl.min.css\";i:534;s:15:\"video/theme.css\";i:535;s:19:\"video/theme.min.css\";}}','on'),(130,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"1a7f8946efbf284a4c14585980ade540\";s:6:\"blocks\";a:5:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:0:\"\";s:12:\"core/columns\";s:0:\"\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}','on'),(140,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:23:\"designsfunnel@gmail.com\";s:7:\"version\";s:3:\"6.8\";s:9:\"timestamp\";i:1744838645;}','off'),(149,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','off'),(150,'recently_activated','a:2:{s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:1745002073;s:45:\"generate-child-theme/generate-child-theme.php\";i:1744842696;}','off'),(151,'can_compress_scripts','0','on'),(154,'finished_updating_comment_type','1','auto'),(159,'current_theme','Grace Med Aesthetics','auto'),(160,'theme_mods_hello-elementor','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1744838953;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}}}}','off'),(161,'theme_switched','','auto'),(162,'hello_theme_version','3.3.0','auto'),(165,'elementor_connect_site_key','e6e77ba85cfa2a9bbe22e21759c7fa95','auto'),(166,'_hello-elementor_notifications','a:2:{s:7:\"timeout\";i:1746026987;s:5:\"value\";s:6499:\"[{\"id\":\"hello-theme-3.3.0\",\"title\":\"3.3.0 - 2025-01-21\",\"description\":\"\\n