added docker compose

This commit is contained in:
emmymayo
2025-02-10 03:04:50 +01:00
parent d07588beed
commit 463a238503
15 changed files with 262 additions and 267 deletions
+9
View File
@@ -0,0 +1,9 @@
RewriteEngine On
RewriteBase /
# If the requested file or directory exists, serve it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Otherwise, route all requests to index.php
RewriteRule ^(.*)$ index.php [QSA,L]
+32 -20
View File
@@ -1,5 +1,3 @@
# Module 3 - TFU # Module 3 - TFU
A PHP-based web application for managing team campaigns and followups. A PHP-based web application for managing team campaigns and followups.
@@ -8,10 +6,27 @@ A PHP-based web application for managing team campaigns and followups.
### Prerequisites ### Prerequisites
- PHP 7.4 or higher - Docker and Docker Compose
- MySQL/MariaDB - OR PHP 7.4 or higher with MySQL/MariaDB
### Installation ### Docker Installation (Recommended)
1. Clone this repository to your local machine
2. Run the following command in the project root:
```bash
docker-compose up -d
```
3. The services will be available at:
- Application: http://localhost:9000
- PHPMyAdmin: http://localhost:8889 (credentials: root/root)
4. Import the database schema:
- Access PHPMyAdmin at http://localhost:8889
- Login with username: root, password: root
- Create a new database named 'tfu_db'
- Import the `db.sql` file
- import the `migration.sql` file
### Traditional Installation
1. Clone this repository to your local machine 1. Clone this repository to your local machine
2. Configure your database connection in `config.php` 2. Configure your database connection in `config.php`
@@ -19,45 +34,42 @@ A PHP-based web application for managing team campaigns and followups.
### Running the Application ### Running the Application
#### Using Docker (Recommended)
The application will be automatically running at http://localhost:9000
#### Using PHP Built-in Server
Start the development server using: Start the development server using:
```bash ```bash
php -S localhost:9000 php -S localhost:9000
``` ```
Then visit `http://localhost:9000` in your web browser. Then visit `http://localhost:9000` in your web browser.
Admin Login `http://localhost:9000/admin/login` ### Login Credentials
admin@manaknight.com Admin Login `http://localhost:9000/admin/login`
a123456 - Email: admin@manaknight.com
- Password: a123456
Client Login `http://localhost:9000/client/login` Client Login `http://localhost:9000/client/login`
- Email: emmy@manaknight.com
emmy@manaknight.com - Password: a123456
a123456
## Features ## Features
- Campaign management - Campaign management
- Team followup tracking - Followup tracking
- Add and edit campaign details - Add and edit campaign details
- Database-driven application - Database-driven application
## Core Project Files ## Core Project Files
├── README.md ├── README.md
├── config.php # Database configuration ├── config.php # Database configuration
├── db.sql # Database schema ├── db.sql # Database schema
├── migration.sql # Database seed data ├── migration.sql # Database seed data
├── index.php # Main entry point ├── index.php # Main entry point
├── docker-compose.yml # Docker configuration
## Tasks ## Tasks
+5 -5
View File
@@ -9,7 +9,7 @@ class MkdConfig
{ {
$this->_config = [ $this->_config = [
"project-name" => "Team Followup ", "project-name" => "Mkd Project ",
"project-type" => "", "project-type" => "",
"programming-language" => "php", "programming-language" => "php",
"user-type" => "", "user-type" => "",
@@ -30,11 +30,11 @@ class MkdConfig
"smtp-port" => 2525, "smtp-port" => 2525,
"database" => 1, "database" => 1,
"database-type" => "sql", "database-type" => "sql",
"database-hostname" => "localhost", "database-hostname" => "mysql",
"database-u-ser" => "root", "database-u-ser" => "tfu_user",
"database-password" => "", "database-password" => "tfu_password",
"database-port" => "3306", "database-port" => "3306",
"database-name" => "team_followup_prod_test", "database-name" => "tfu_db",
"upload" => 0, "upload" => 0,
"aws-version" => "", "aws-version" => "",
"aws-region" => "", "aws-region" => "",
+4 -4
View File
@@ -33,9 +33,9 @@ CREATE TABLE `calendar` (
DROP TABLE IF EXISTS `campaign`; DROP TABLE IF EXISTS `campaign`;
CREATE TABLE `campaign` ( CREATE TABLE `campaign` (
`id` int NOT NULL AUTO_INCREMENT, `id` int NOT NULL AUTO_INCREMENT,
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`file_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `file_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci, `data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
`user_id` int unsigned NOT NULL, `user_id` int unsigned NOT NULL,
`created_at` date DEFAULT NULL, `created_at` date DEFAULT NULL,
`updated_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL,
@@ -124,7 +124,7 @@ CREATE TABLE `user` (
`password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`role` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'admin', `role` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'admin',
`company` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'Team Follow Up', `company` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'MKD Follow Up',
`drive_access_token` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci, `drive_access_token` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
`drive_refresh_token` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci, `drive_refresh_token` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
`created_at` date DEFAULT NULL, `created_at` date DEFAULT NULL,
+45
View File
@@ -0,0 +1,45 @@
version: '3.8'
services:
php:
image: php:7.4-apache
ports:
- "9000:80"
volumes:
- .:/var/www/html
- ./docker/apache.conf:/etc/apache2/sites-available/000-default.conf
depends_on:
- mysql
# Install additional PHP extensions that might be needed
command: >
sh -c "apt-get update &&
apt-get install -y libpq-dev &&
docker-php-ext-install pdo pdo_mysql &&
a2enmod rewrite &&
apache2-foreground"
mysql:
image: mysql:5.7
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: tfu_db
MYSQL_USER: tfu_user
MYSQL_PASSWORD: tfu_password
ports:
- "3306:3306"
volumes:
- mysql_data:/var/lib/mysql
command: --sql_mode=""
phpmyadmin:
image: phpmyadmin/phpmyadmin
ports:
- "8889:80"
environment:
PMA_HOST: mysql
MYSQL_ROOT_PASSWORD: root
depends_on:
- mysql
volumes:
mysql_data:
+13
View File
@@ -0,0 +1,13 @@
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
<Directory /var/www/html>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
+2 -1
View File
@@ -281,7 +281,7 @@ Route::add('/help', function () {
<script> <script>
var key="apikey"; var key="apikey";
var relationship_num="#"; var relationship_num="#";
$.get('https://ghltool.team-followup.com?apikey=' + key + '&relationship_num=' + relationship_num, function(data, status){ $.get('http://localhost:9000?apikey=' + key + '&relationship_num=' + relationship_num, function(data, status){
document.getElementById('tfp-call-again').src = data; document.getElementById('tfp-call-again').src = data;
}); });
</script><script id="tfp-call-again"></script> </script><script id="tfp-call-again"></script>
@@ -325,6 +325,7 @@ Route::add('/admin/login', function () {
// Insert data into the database using LicenseModel // Insert data into the database using LicenseModel
$userModel = new UserModel(); $userModel = new UserModel();
$result = $userModel->get_by_field('email', $email); $result = $userModel->get_by_field('email', $email);
// var_dump($result);exit; // var_dump($result);exit;
if ($result) { if ($result) {
if (password_verify($raw_password, $result['password']) && $result['status'] == 'active' && $result['role'] == 'admin') { if (password_verify($raw_password, $result['password']) && $result['status'] == 'active' && $result['role'] == 'admin') {
+1 -1
View File
@@ -152,7 +152,7 @@
<div class="wrapper"> <div class="wrapper">
<nav id="sidebar"> <nav id="sidebar">
<div class="sidebar-header"> <div class="sidebar-header">
Team Followup Manaknight Project
</div> </div>
<ul class="list-unstyled components"> <ul class="list-unstyled components">
<li><a href="/admin/license" <?php echo ($data['page_title'] == 'License') ? 'class="active"' : ''; ?>> License </a></li> <li><a href="/admin/license" <?php echo ($data['page_title'] == 'License') ? 'class="active"' : ''; ?>> License </a></li>
+1 -1
View File
@@ -152,7 +152,7 @@
<div class="wrapper"> <div class="wrapper">
<nav id="sidebar"> <nav id="sidebar">
<div class="sidebar-header"> <div class="sidebar-header">
Team Followup Manaknight Project
</div> </div>
<ul class="list-unstyled components"> <ul class="list-unstyled components">
<li><a href="/client/project" <?php echo ($data['page_title'] == 'Project') ? 'class="active"' : ''; <li><a href="/client/project" <?php echo ($data['page_title'] == 'Project') ? 'class="active"' : '';
+1 -2
View File
@@ -1,4 +1,3 @@
<?php <?php
class GHLOAuth2 { class GHLOAuth2 {
@@ -6,7 +5,7 @@ class GHLOAuth2 {
private $baseUrl = 'https://services.leadconnectorhq.com'; private $baseUrl = 'https://services.leadconnectorhq.com';
private $authorizeUrl = 'https://marketplace.gohighlevel.com/oauth/chooselocation'; private $authorizeUrl = 'https://marketplace.gohighlevel.com/oauth/chooselocation';
private $scopes = ['calendars.readonly', 'calendars/events.readonly']; private $scopes = ['calendars.readonly', 'calendars/events.readonly'];
private $redirectUri = 'https://ghltool.team-followup.com/ghl/callback'; private $redirectUri = 'http://localhost:9000/ghl/callback';
private $clientId = 'xxx'; private $clientId = 'xxx';
private $clientSecret = 'xxx'; private $clientSecret = 'xxx';
+146 -143
View File
@@ -21,149 +21,152 @@ INSERT INTO `calendar` (`id`, `slot`, `days`, `calendar`, `created_at`, `updated
INSERT INTO `license` (`id`, `relationship_num`, `email`, `apikey`, `ip`, `status`, `created_at`, `updated_at`) VALUES INSERT INTO `license` (`id`, `relationship_num`, `email`, `apikey`, `ip`, `status`, `created_at`, `updated_at`) VALUES
(3, '1001', 'arin@team-followup.com', '3df120851f52158682ee9de50e4261b3', '', 'active', '2023-09-07', '2023-09-07 11:10:24'), (3, '1001', 'xxrin@texxm-followup.com', '3df120851f521586829de50e4261b3', '', 'active', '2023-09-07', '2023-09-07 11:10:24'),
(4, '1002', 'olu@locationflowsolutions.com', '44fdd885a36335af76c04b166e9a2b45', '', 'active', '2023-09-07', '2023-09-07 11:19:13'), (4, '1002', 'olu@locxxtionflowsolutions.com', '44fdd885xx36335xxf76c04b166e9xx2b45', '', 'active', '2023-09-07', '2023-09-07 11:19:13'),
(5, '1003', 'brent.oliver@gymlaunch.com', 'a63ddca64598f4840c27e213891a5100', '', 'active', '2023-09-07', '2023-09-07 13:38:53'), (5, '1003', 'brent.oliver@gymlxxunch.com', 'xx63ddcxx64598f4840c27e213891xx5100', '', 'active', '2023-09-07', '2023-09-07 13:38:53'),
(6, '1004', 'bentleyvisualmedia@gmail.com', 'b067d63361f2116d545d3935bfb0fcc0', '', 'active', '2023-09-08', '2023-09-08 16:08:32'), (6, '1004', 'bentleyvisuxxlmedixx@gmxxil.com', 'b067d63361f2145d3935bfb0fcc0', '', 'active', '2023-09-08', '2023-09-08 16:08:32'),
(7, '1007', 'joe@accelerra.co.uk', '36b3f289b0abe2875e488d5d14aafbf9', '', 'inactive', '2023-10-10', '2023-12-27 21:38:29'), (7, '1007', 'joe@xxccelerrxx.co.uk', '36b3f289b0xxbe2875e488d5d14xxxxfbf9', '', 'inactive', '2023-10-10', '2023-12-27 21:38:29'),
(8, '1008', 'ricardo@unknownemail.com', 'bbff746e31c314f27471b0c3693a90e5', '', 'inactive', '2023-11-28', '2024-02-02 19:20:04'), (8, '1008', 'ricxxrdo@unknownemxxil.com', 'bbff746e31c314f27471b0c3693xx90e5', '', 'inactive', '2023-11-28', '2024-02-02 19:20:04'),
(9, '1009', 'john@dokimarketing.com', '851b23d65b74f45b33c88d99dbf87aba', '', 'active', '2023-12-22', '2023-12-22 15:58:53'), (9, '1009', 'john@dokimxxrketing.com', '851b23d65b74f45b33c88d99dbf87xxbxx', '', 'active', '2023-12-22', '2023-12-22 15:58:53'),
(10, '1010', 'logan@roofreach-ai.com', '9ec1130b249332d4ececd66886a34e6e', '', 'active', '2024-01-14', '2024-01-14 10:26:17'), (10, '1010', 'logxxn@roofrexxch-xxi.com', '9ec1130b249332d4ececd66886xx34e6e', '', 'active', '2024-01-14', '2024-01-14 10:26:17'),
(11, '1011', 'bailey@roofingaisystems.com', 'ecb483afbf57d16a24fec51485651cd7', '', 'active', '2024-01-28', '2024-01-28 21:41:08'), (11, '1011', 'bxxiley@roofingxxisystems.com', 'ecb483xxfbf57d16xx24fec51485651cd7', '', 'active', '2024-01-28', '2024-01-28 21:41:08'),
(12, '1012', 'cam@pinpointscaling.co.uk', 'ee9fbecd7d0aee6ceb928be32a28dd42', '', 'active', '2024-02-02', '2024-02-13 22:17:36'), (12, '1012', 'cxxm@pinpointscxxling.co.uk', 'ee9fbecd7d0xxee6ceb928be32xx28dd42', '', 'active', '2024-02-02', '2024-02-13 22:17:36'),
(14, '1013', 'gr@hoffmarketing.com', 'f13a2cc62a328023e901e32f6ee8a5e4', '', 'active', '2024-02-13', '2024-02-13 17:33:00'), (14, '1013', 'gr@hoffmxxrketing.com', 'f13xx2cc62xx328023e901e32f6ee8xx5e4', '', 'active', '2024-02-13', '2024-02-13 17:33:00'),
(15, '1014', 'Ahmed@denflow.ai', 'c51d7dd1a1bc12ae8149dd5b8134c6aa', '', 'active', '2024-02-13', '2024-02-13 22:21:37'), (15, '1014', 'xxhmed@denflow.xxi', 'c51d7dd1xx1bc12xxe8149dd5b8134c6xxxx', '', 'active', '2024-02-13', '2024-02-13 22:21:37'),
(16, '1015', 'sebastian.maldonado.braven@gmail.com', '26a6a3be58c088fdcd2994f76df9a2b9', '', 'active', '2024-02-27', '2024-02-27 14:42:44'), (16, '1015', 'sebxxstixxn.mxxldonxxdo.brxxven@gmxxil.com', '26xx6xx3be58c088fdcd2994f76df9xx2b9', '', 'active', '2024-02-27', '2024-02-27 14:42:44'),
(17, '1016', 'dino@fullcontrolexpansion.com', '8eb65157239a27d7f53746fd26fe32ce', '', 'inactive', '2024-02-27', '2024-06-14 14:26:35'), (17, '1016', 'dino@fullcontrolexpxxnsion.com', '8eb6515729xx27d7f53746fd26fe32ce', '', 'inactive', '2024-02-27', '2024-06-14 14:26:35'),
(18, '1017', 'travis@gocrowndigital.com', 'c01f9bcc9391e562a4b60057077ecdfb', '', 'inactive', '2024-03-06', '2024-06-12 15:00:23'), (18, '1017', 'trxxvis@gocrowndigitxxl.com', 'c01f9bcc9391e562xx4b60057077ecdfb', '', 'inactive', '2024-03-06', '2024-06-12 15:00:23'),
(19, '1018', 'ej07kim@gmail.com', 'b6ec627194408a4782a797e359afa7e6', '', 'active', '2024-03-06', '2024-03-06 21:00:35'), (19, '1018', 'ej07kim@gmxxil.com', 'b6ec627194408xx4782xx797e359xxfxx7e6', '', 'active', '2024-03-06', '2024-03-06 21:00:35'),
(20, '1019', 'diegoespi317@gmail.com', 'f2ad2df703612b0b93f7dfcf92b42270', '', 'inactive', '2024-03-12', '2024-04-02 10:44:03'), (20, '1019', 'diegoespi317@gmxxil.com', 'f2xxd2df703612b0b93f7dfcf92b42270', '', 'inactive', '2024-03-12', '2024-04-02 10:44:03'),
(21, '1020', 'alex@tcmstrategy.com', '38625d777ae9ab4b61e520a1866e223d', '', 'active', '2024-03-18', '2024-03-18 12:56:00'), (21, '1020', 'xxlex@tcmstrxxtegy.com', '38625d777xxe9xxb4b61e520xx1866e223d', '', 'active', '2024-03-18', '2024-03-18 12:56:00'),
(22, '1021', 'bobby@constantconnectionsgroup.com', '94fef52043e2f581d8cc505c32cc5e36', '', 'active', '2024-03-22', '2024-03-22 17:27:00'), (22, '1021', 'bobby@constxxntconnectionsgroup.com', '94fef043e2f581d8cc505c32cc5e36', '', 'active', '2024-03-22', '2024-03-22 17:27:00'),
(23, '1022', 'justin@evermetric.com', '195acb3ce6b03058b608ea83e0f926aa', '', 'active', '2024-03-25', '2024-04-30 17:15:40'), (23, '1022', 'justin@evermetric.com', '195xxcb3ce6b03058b608exx83e0f926xxxx', '', 'active', '2024-03-25', '2024-04-30 17:15:40'),
(24, '1023', 'luke@elitescaledigital.com', 'edd25eb25e9f32cbb9afb549101a3bad', '', 'inactive', '2024-03-26', '2024-06-18 21:24:15'), (24, '1023', 'luke@elitescxxledigitxxl.com', 'edd25eb25e9f32cbb9xxfb549101xx3bxxd', '', 'inactive', '2024-03-26', '2024-06-18 21:24:15'),
(25, '1024', 'rotem.kraizberg@gmail.com', '19db4f255cbafe0e16f624e758101043', '', 'inactive', '2024-03-29', '2024-04-30 17:15:51'), (25, '1024', 'rotem.krxxizberg@gmxxil.com', '19db4f255cbxxfe0e16f624e758101043', '', 'inactive', '2024-03-29', '2024-04-30 17:15:51'),
(26, '1025', 'gavin@roofreach-ai.com', '7ff75b1bc97bf532b725ac57484b4e4c', '', 'active', '2024-04-02', '2024-04-02 18:04:23'), (26, '1025', 'gxxvin@roofrexxch-xxi.com', '7ff75b1bc97bf532b725xxc57484b4e4c', '', 'active', '2024-04-02', '2024-04-02 18:04:23'),
(27, '1026', 'edgarbuelna20@gmail.com', '3b56a954926b67831d2961b3e3524c85', '', 'inactive', '2024-04-11', '2024-08-09 14:40:52'), (27, '1026', 'edgxxrbuelnxx20@gmxxil.com', '3b56xx954926b67831d2961b3e3524c85', '', 'inactive', '2024-04-11', '2024-08-09 14:40:52'),
(28, '1027', 'vishal@acepointmedia.com', '1bfa00df499460da603ebce35380ab60', '', 'active', '2024-04-11', '2024-04-11 15:29:15'), (28, '1027', 'vishxxl@xxcepointmedixx.com', '1bfxx00df499460dxx603ebce35380xxb60', '', 'active', '2024-04-11', '2024-04-11 15:29:15'),
(29, '1028', 'pasha@dentmarketing.ca', '748feee3de92902d6064783ffde851a5', '', 'active', '2024-04-12', '2024-04-12 13:31:34'), (29, '1028', 'pxxshxx@dentmxxrketing.cxx', '748feee3de92902d6064783ffde851xx5', '', 'active', '2024-04-12', '2024-04-12 13:31:34'),
(30, '1029', 'ian@ael-media.com', '0f4f568eaa02263e4a7da24651b98ad1', '', 'inactive', '2024-04-12', '2024-07-16 21:12:53'), (30, '1029', 'ixxn@xxel-medixx.com', '0f4f568exxxx02263e4xx7dxx24651b98xxd1', '', 'inactive', '2024-04-12', '2024-07-16 21:12:53'),
(31, '1030', 'solarmarketingpro@gmail.com', 'e0e078df81f92ff4f9ecd55105b4ae77', '', 'inactive', '2024-04-23', '2024-07-15 16:42:20'), (31, '1030', 'solxxrmxxrketingpro@gmxxil.com', 'e0e078df81f92ff4f9ecd55105b4xxe77', '', 'inactive', '2024-04-23', '2024-07-15 16:42:20'),
(32, '1031', 'raidenwburr@gmail.com', '0d3a7fbfbbf1a7a9ef954985715efdf6', '', 'active', '2024-04-25', '2024-04-25 20:46:03'), (32, '1031', 'rxxidenwburr@gmxxil.com', '0d3xx7fbfbbf1xx7xx9ef954985715efdf6', '', 'active', '2024-04-25', '2024-04-25 20:46:03'),
(33, '1032', 'Evan@pingmarketingteam.com', '3c972e47103545176f0b46c1ecc7e541', '', 'active', '2024-04-26', '2024-04-26 18:35:36'), (33, '1032', 'Evxxn@pingmxxrketingtexxm.com', '3c972e471545176f0b46c1ecc7e541', '', 'active', '2024-04-26', '2024-04-26 18:35:36'),
(34, '1033', 'eli@fuzesystems.co', '0e10c71a42af8c218966018396e969c9', '', 'active', '2024-04-29', '2024-04-29 15:31:26'), (34, '1033', 'eli@fuzesystems.co', '0e10c71xx42xxf8c218966018396e969c9', '', 'active', '2024-04-29', '2024-04-29 15:31:26'),
(35, '1034', 'austinjireh8@gmail.com', 'f3b93fe5ae5b15cd2890b16c0887cef0', '', 'active', '2024-04-30', '2024-04-30 13:10:23'), (35, '1034', 'xxustinjireh8@gmxxil.com', 'f3b93fe5xxe5b15cd90b16c0887cef0', '', 'active', '2024-04-30', '2024-04-30 13:10:23'),
(36, '1035', 'Warriorpipeline@gmail.com', '514fedc8d1dc327d75a537758cf13dfd', '', 'active', '2024-05-03', '2024-05-03 13:24:18'), (36, '1035', 'Wxxrriorpipeline@gmxxil.com', '514fedc8d1dc327d75xx537758cf13dfd', '', 'active', '2024-05-03', '2024-05-03 13:24:18'),
(37, '1036', 'damien@maestromedia.fr', 'c693f2788fedde782021e4bfa22e9d7f', '', 'active', '2024-05-03', '2024-05-03 14:26:16'), (37, '1036', 'dxxmien@mxxestromedixx.fr', 'c693f2788fedde782021e4bfxx22e9d7f', '', 'active', '2024-05-03', '2024-05-03 14:26:16'),
(39, '1037', 'jonas@oakstellar.com', '2eb5f3fe065c0f95ef88c8d38aeb969a', '', 'inactive', '2024-05-10', '2024-09-04 17:26:13'), (39, '1037', 'jonxxs@oxxkstellxxr.com', '2eb5f3fe065c0f95ef88c8d38xxeb969xx', '', 'inactive', '2024-05-10', '2024-09-04 17:26:13'),
(40, '1038', 'clutchdigitalio@gmail.com', '741cb0489adb1801e873d9d4a9ce6cac', '', 'active', '2024-05-13', '2024-05-13 13:12:26'), (40, '1038', 'clutchdigitxxlio@gmxxil.com', '741cb0489xxdb1801e873d9d4xx9ce6cxxc', '', 'active', '2024-05-13', '2024-05-13 13:12:26'),
(41, '1039', 'faisal@inflow-agency.com', '03dbb535f5410e368dd6272156963355', '', 'inactive', '2024-05-14', '2024-08-15 13:45:14'), (41, '1039', 'fxxisxxl@inflow-xxgency.com', '03dbb535f541368dd6272156963355', '', 'inactive', '2024-05-14', '2024-08-15 13:45:14'),
(42, '1040', 'arcasmail@gmail.com', '048ca52fa58b0616f9c388449c0b475c', '', 'inactive', '2024-05-20', '2024-09-18 13:53:13'), (42, '1040', 'xxrcxxsmxxil@gmxxil.com', '048cxx52fxx58b0616f9c388449c0b475c', '', 'inactive', '2024-05-20', '2024-09-18 13:53:13'),
(43, '1041', 'orien@daly-media.co.uk', 'cda0978fc74d531ccdef1710a9fb801d', '', 'active', '2024-05-22', '2024-05-22 13:37:28'), (43, '1041', 'orien@dxxly-medixx.co.uk', 'cdxx0978fc74d531ccdef1710xx9fb801d', '', 'active', '2024-05-22', '2024-05-22 13:37:28'),
(44, '1042', 'Luke@hw-media.co.uk', '34b7377406ddebf03f0ee6a4ab575a5d', '', 'active', '2024-05-23', '2024-05-23 13:31:20'), (44, '1042', 'Luke@hw-medixx.co.uk', '34b7377406ddebf03f0ee6xx4xxb575xx5d', '', 'active', '2024-05-23', '2024-05-23 13:31:20'),
(45, '1043', 'joe@casesondemand.net', '7a37dfcd31de894cbc7c63e39a1e917b', '', 'inactive', '2024-05-29', '2024-09-16 16:00:24'), (45, '1043', 'joe@cxxsesondemxxnd.net', '7xx37dfcd31de894cbc7c63e39xx1e917b', '', 'inactive', '2024-05-29', '2024-09-16 16:00:24'),
(46, '1044', 'andrey@ivsgroupuk.com', '24930fb7f7f1471316ffcc6868bca0f8', '', 'active', '2024-06-04', '2024-06-04 13:45:14'), (46, '1044', 'xxndrey@ivsgroupuk.com', '24930fb7f7f1471316ffcc6868bcxx0f8', '', 'active', '2024-06-04', '2024-06-04 13:45:14'),
(47, '1045', 'laith@plaidmedia.org', 'ed2f0c063dbe9d7096dea2184b27fbce', '', 'active', '2024-06-12', '2024-06-12 19:44:52'), (47, '1045', 'lxxith@plxxidmedixx.org', 'ed2f0c063dbe9d7096dexx2184b27fbce', '', 'active', '2024-06-12', '2024-06-12 19:44:52'),
(48, '1046', 'Caleb@rapidmediaco.com', '5e493cbc08cffd207baa426db25db65d', '', 'inactive', '2024-06-19', '2024-08-19 13:08:34'), (48, '1046', 'Cxxleb@rxxpidmedixxco.com', '5e493cbc08cffd207bxxxx426db25db65d', '', 'inactive', '2024-06-19', '2024-08-19 13:08:34'),
(49, '1047', 'devin@daylight-digital.com', 'eddd3a40749d64f55463892215996753', '', 'active', '2024-06-28', '2024-06-28 13:30:13'), (49, '1047', 'devin@dxxylight-digitxxl.com', 'eddd3xx40749d64f55463892215996753', '', 'active', '2024-06-28', '2024-06-28 13:30:13'),
(50, '1048', 'oliver@mymedigrowth.com', '16732fdf5e0d540e9774af352ea7ee14', '', 'active', '2024-07-01', '2024-07-01 14:23:42'), (50, '1048', 'oliver@mymedigrowth.com', '16732fdf5e0d540e9774xxf352exx7ee14', '', 'active', '2024-07-01', '2024-07-01 14:23:42'),
(51, '1049', 'Jacob@stackedstrategies.com', '430abf9083d104f6250020c203cea57a', '', 'active', '2024-07-08', '2024-07-08 16:22:25'), (51, '1049', 'Jxxcob@stxxckedstrxxtegies.com', '430xxbf9083d104f6250020c203cexx57xx', '', 'active', '2024-07-08', '2024-07-08 16:22:25'),
(52, '1050', 'louis@theborregobrothers.com', 'd65d4fe08736d80ad561b8328e772271', '', 'inactive', '2024-07-08', '2024-10-28 14:24:04'), (52, '1050', 'louis@theborregobrothers.com', 'd65d4fe08736d80xxd561b8328e772271', '', 'inactive', '2024-07-08', '2024-10-28 14:24:04'),
(53, '1051', 'cam@pinpointscaling.co.uk', 'f7348039c4d9ee3da6a6b94de46eb2fc', '', 'active', '2024-07-15', '2024-07-15 13:10:42'), (53, '1051', 'cxxm@pinpointscxxling.co.uk', 'f7348039c4d9ee3dxx6xx6b94de46eb2fc', '', 'active', '2024-07-15', '2024-07-15 13:10:42'),
(54, '1052', 'ivan@newlybooked.com', '91d3123c47b736ee4bd4a045681a3671', '', 'active', '2024-07-15', '2024-07-15 19:15:20'), (54, '1052', 'ivxxn@newlybooked.com', '91d3123c47b736ee4bd4xx045681xx3671', '', 'active', '2024-07-15', '2024-07-15 19:15:20'),
(55, '1053', 'robertprice2000@hotmail.co.uk', '9df794545846e2df71412347d7a702eb', '', 'active', '2024-07-19', '2024-07-19 13:06:29'), (55, '1053', 'robertprice2000@hotmxxil.co.uk', '9df794545846e2df71412347d7xx702eb', '', 'active', '2024-07-19', '2024-07-19 13:06:29'),
(56, '1054', 'lucas@monadispatch.com', '5737f8403bb6555664bbb3337104ba42', '', 'active', '2024-07-22', '2024-07-22 18:42:56'), (56, '1054', 'lucxxs@monxxdispxxtch.com', '5737f8403bb6555664bbb3337104bxx42', '', 'active', '2024-07-22', '2024-07-22 18:42:56'),
(57, '1055', 'cate@sanesocialmedia.com', '7befec1cdbecc0dfa5392d20c969defd', '', 'active', '2024-07-26', '2024-07-26 13:59:49'), (57, '1055', 'cxxte@sxxnesocixxlmedixx.com', '7befec1cdbecc0dfxx5392d20c969defd', '', 'active', '2024-07-26', '2024-07-26 13:59:49'),
(58, '1056', 'gabegoertzen@gmail.com', '4689420a66b7d22c945b01bee353b78e', '', 'active', '2024-07-29', '2024-07-29 13:46:33'), (58, '1056', 'gxxbegoertzen@gmxxil.com', '4689420xx66b7d22c945b01bee353b78e', '', 'active', '2024-07-29', '2024-07-29 13:46:33'),
(59, '1057', 'sohaib@spamgt.com', '6eb931d900001c12bd70a0d853a924f1', '', 'inactive', '2024-07-29', '2024-08-30 14:43:16'), (59, '1057', 'sohxxib@spxxmgt.com', '6eb931d900001c12bd70xx0d853xx924f1', '', 'inactive', '2024-07-29', '2024-08-30 14:43:16'),
(61, '1058', 'todd@redlightsystems.com', 'd1256ec6baf78668a54b8e80afbff254', '', 'active', '2024-08-06', '2024-08-06 16:20:54'), (61, '1058', 'todd@redlightsystems.com', 'd1256ec6bxxf78668xx54b8e80xxfbff254', '', 'active', '2024-08-06', '2024-08-06 16:20:54'),
(62, '1059', 'cj@roistrategic.com', '2720b8bd88a027f4582de663adf401a9', '', 'active', '2024-08-07', '2024-08-07 13:57:15'), (62, '1059', 'cj@roistrxxtegic.com', '2720b8bd88xx027f4582de663xxdf401xx9', '', 'active', '2024-08-07', '2024-08-07 13:57:15'),
(63, '1060', 'vincent@medspaadvertising.com', '586c2ffd19d4728c5cd0634fdc940369', '', 'active', '2024-08-07', '2024-08-07 20:56:49'), (63, '1060', 'vincent@medspxxxxdvertising.com', '586c2ffd19d48c5cd0634fdc940369', '', 'active', '2024-08-07', '2024-08-07 20:56:49'),
(64, '1061', 'Stasiu@sandcleads.com', 'e3cf0557fb94a69c4669a3f07eb233f0', '', 'active', '2024-08-08', '2024-08-08 21:01:53'), (64, '1061', 'Stxxsiu@sxxndclexxds.com', 'e3cf0557fb94xx69c4669xx3f07eb233f0', '', 'active', '2024-08-08', '2024-08-08 21:01:53'),
(65, '1062', 'sherman@digitaldoorknockers.com', 'cbb8f77941d15db44ece38cddd1854ef', '', 'active', '2024-08-13', '2024-08-13 15:37:53'), (65, '1062', 'shermxxn@digitxxldoorknockers.com', 'cbb8f741d15db44ece38cddd1854ef', '', 'active', '2024-08-13', '2024-08-13 15:37:53'),
(67, '1063', 'callum.mills@servedia.co', 'd0699797b55c85e4c55e9c15548d1491', '', 'active', '2024-08-16', '2024-08-16 15:23:11'), (67, '1063', 'cxxllum.mills@servedixx.co', 'd0699797b85e4c55e9c15548d1491', '', 'active', '2024-08-16', '2024-08-16 15:23:11'),
(68, '1064', 'michael@llmedia.info', 'a3f4e47ae5411ca88dc648e756ac0193', '', 'active', '2024-08-19', '2024-08-19 13:35:21'), (68, '1064', 'michxxel@llmedixx.info', 'xx3f4e47xxe5411cxx88dc648e756xxc0193', '', 'active', '2024-08-19', '2024-08-19 13:35:21'),
(69, '1065', 'david@ll.media', '97fa155d1f5d1e92e867363572532c64', '', 'active', '2024-08-19', '2024-08-19 13:37:37'), (69, '1065', 'dxxvid@ll.medixx', '97fxx155d1f5d1e92e867363572532c64', '', 'active', '2024-08-19', '2024-08-19 13:37:37'),
(70, '1066', 'millerepalmer@gmail.com', 'e10027ff27561f7b9d4929039eede97e', '', 'active', '2024-08-21', '2024-08-21 13:18:13'), (70, '1066', 'millerepxxlmer@gmxxil.com', 'e10027ff275f7b9d4929039eede97e', '', 'active', '2024-08-21', '2024-08-21 13:18:13'),
(71, '1067', 'sean@theperfectlook.co', '6ff86fc9de3a60e53757aeb39031965a', '', 'active', '2024-08-23', '2024-08-23 13:27:24'), (71, '1067', 'sexxn@theperfectlook.co', '6ff86fc9de3xx60e53757xxeb39031965xx', '', 'active', '2024-08-23', '2024-08-23 13:27:24'),
(72, '1068', 'mark@chirojump.com', 'cff66714d74dd6302bbf32c076804512', '', 'active', '2024-08-27', '2024-08-27 16:10:50'), (72, '1068', 'mxxrk@chirojump.com', 'cff66714d74dd630bf32c076804512', '', 'active', '2024-08-27', '2024-08-27 16:10:50'),
(73, '1069', 'bartvandaatselaar@gmail.com', '19f46574d8ca0ea61f94611d7fc2c912', '', 'active', '2024-09-02', '2024-09-02 14:00:52'), (73, '1069', 'bxxrtvxxndxxxxtselxxxxr@gmxxil.com', '19f46574d8cxx0exx61f94611d7fc2c912', '', 'active', '2024-09-02', '2024-09-02 14:00:52'),
(74, '1070', 'basnagel2000@gmail.com', 'f6326961ac7d010dcb13972feb5445dc', '', 'active', '2024-09-02', '2024-09-02 14:01:04'), (74, '1070', 'bxxsnxxgel2000@gmxxil.com', 'f6326961xxc7d010dcb13972feb5445dc', '', 'active', '2024-09-02', '2024-09-02 14:01:04'),
(75, '1071', 'support@jcatmediallc.com', 'd98d77bd15f2f6c33e85092ff9c838ee', '', 'active', '2024-09-04', '2024-09-04 16:39:09'), (75, '1071', 'support@jcxxtmedixxllc.com', 'd98d77bd15f2f6c33e5092ff9c838ee', '', 'active', '2024-09-04', '2024-09-04 16:39:09'),
(76, '1072', 'kontakt.ascendmarketing@gmail.com', '6a1f683233195879e70b59e250df2f67', '', 'active', '2024-09-12', '2024-09-12 13:14:49'), (76, '1072', 'kontxxkt.xxscendmxxrketing@gmxxil.com', '6xx1f683233195879e70b59e250df2f67', '', 'active', '2024-09-12', '2024-09-12 13:14:49'),
(77, '1073', 'Asa@ablazeai.com', 'cb11fd7e3ff0d2f0f2ffaa5aca3a202f', '', 'active', '2024-09-12', '2024-09-12 13:15:50'), (77, '1073', 'xxsxx@xxblxxzexxi.com', 'cb11fd7e3ff0d2f0f2ffxxxx5xxcxx3xx202f', '', 'active', '2024-09-12', '2024-09-12 13:15:50'),
(78, '1074', 'bart@fitnessproductions.nl', '2679df978497627563be18e6a057f0fb', '', 'active', '2024-09-12', '2024-09-12 13:49:26'), (78, '1074', 'bxxrt@fitnessproductions.nl', '2679df978497627563be18e6xx057f0fb', '', 'active', '2024-09-12', '2024-09-12 13:49:26'),
(79, '1075', 'asa@ablazeai.com', 'dc2f862305a569e0333e2ef6485f780f', '', 'active', '2024-09-12', '2024-09-12 17:35:52'), (79, '1075', 'xxsxx@xxblxxzexxi.com', 'dc2f862305xx569e0333e2ef6485f780f', '', 'active', '2024-09-12', '2024-09-12 17:35:52'),
(80, '1076', 'info@azureonmarketing.com', 'b8684a0f4f7dfc85686a59043f9dbe8f', '', 'active', '2024-09-16', '2024-09-16 13:22:47'), (80, '1076', 'info@xxzureonmxxrketing.com', 'b8684xx0f4f7dfc85686xx59043f9dbe8f', '', 'active', '2024-09-16', '2024-09-16 13:22:47'),
(81, '1077', 'gemma@elevatedental.agency', '3feecdbf743dd95ee344d4fb539516bd', '', 'active', '2024-09-23', '2024-09-23 14:41:58'), (81, '1077', 'gemmxx@elevxxtedentxxl.xxgency', '3feecdbf743d95ee344d4fb539516bd', '', 'active', '2024-09-23', '2024-09-23 14:41:58'),
(82, '1078', 'andyceo@neomarkmedia.com', '41a7f2bd3fbff7747f9842bc8b075355', '', 'active', '2024-09-26', '2024-10-31 15:12:28'), (82, '1078', 'xxndyceo@neomxxrkmedixx.com', '41xx7f2bd3fbff7747f9842bc8b075355', '', 'active', '2024-09-26', '2024-10-31 15:12:28'),
(83, '1079', 'yuvraj@badhaodigital.com', 'fb301067b8076c590d78c9ed2a83c64e', '', 'active', '2024-09-26', '2024-09-26 21:01:08'), (83, '1079', 'yuvrxxj@bxxdhxxodigitxxl.com', 'fb301067b8076c590d78c9ed2xx83c64e', '', 'active', '2024-09-26', '2024-09-26 21:01:08'),
(84, '1080', 'joe@socialforgesolutions.com', '315aeef54d1d1a186cc184646ce69a76', '', 'active', '2024-10-02', '2024-10-02 20:26:46'), (84, '1080', 'joe@socixxlforgesolutions.com', '315xxeef54d1d1xx186cc184646ce69xx76', '', 'active', '2024-10-02', '2024-10-02 20:26:46'),
(85, '1081', 'gabriel@midtouchmedia.com', '3d0f591837f689f84ed2a75d6ee5d2e5', '', 'active', '2024-10-03', '2024-10-03 13:16:52'), (85, '1081', 'gxxbriel@midtouchmedixx.com', '3d0f591837f689f84ed2xx75d6ee5d2e5', '', 'active', '2024-10-03', '2024-10-03 13:16:52'),
(86, '1082', 'Cristiano@ruchedigital.com', 'ae8d4b1b47f2c0ddfe5d2ecb7d1a6adf', '', 'active', '2024-10-04', '2024-10-04 14:10:21'), (86, '1082', 'Cristixxno@ruchedigitxxl.com', 'xxe8d4b1b47f2c0ddfe5d2ecb7d1xx6xxdf', '', 'active', '2024-10-04', '2024-10-04 14:10:21'),
(87, '1083', 'benmacmahon16@gmail.com', '88eebc2c9a945280b295553083cf085e', '', 'active', '2024-10-07', '2024-10-07 14:34:03'), (87, '1083', 'benmxxcmxxhon16@gmxxil.com', '88eebc2c9xx94520b295553083cf085e', '', 'active', '2024-10-07', '2024-10-07 14:34:03'),
(88, '1084', 'certifiedappointments@gmail.com', '2442c537428edc1f733146a22dcfe11b', '', 'active', '2024-10-07', '2024-10-07 14:36:02'), (88, '1084', 'certifiedxxppointments@gmxxil.com', '2442c537428edc1f733146xx22dcfe11b', '', 'active', '2024-10-07', '2024-10-07 14:36:02'),
(89, '1085', 'michaelerichoward@googlemail.com', '87db6dc7c1096c0913af001aa2222fbb', '', 'active', '2024-10-08', '2024-10-08 14:00:59'), (89, '1085', 'michxxelerichowxxrd@googlemxxil.com', '87db6dc7c1096c0913xxf001xxxx2222fbb', '', 'active', '2024-10-08', '2024-10-08 14:00:59'),
(91, '1086', 'hardikdudeja7@gmail.com', 'ce3ad59a2ff80c17ff0329f499597a95', '', 'active', '2024-10-09', '2024-10-09 17:41:41'), (91, '1086', 'hxxrdikdudejxx7@gmxxil.com', 'ce3xxd59xx2ff80c17ff0329f499597xx95', '', 'active', '2024-10-09', '2024-10-09 17:41:41'),
(92, '1087', 'lukeborges0@gmail.com', '0f62f93196b0dc1a4a395c759ccfb929', '', 'active', '2024-10-17', '2024-10-17 14:22:20'), (92, '1087', 'lukeborges0@gmxxil.com', '0f62f93196b0dc1xx4xx395c759ccfb929', '', 'active', '2024-10-17', '2024-10-17 14:22:20'),
(93, '1088', 'Kristian@stargoop.com', '91465e7fbf8c92470ac726072e92a1d6', '', 'active', '2024-10-18', '2024-10-18 13:27:45'), (93, '1088', 'Kristixxn@stxxrgoop.com', '91465e7fbf8c92470xxc726072e92xx1d6', '', 'active', '2024-10-18', '2024-10-18 13:27:45'),
(94, '1089', 'joshua@redlinedigital.ca', '73252554730488a226cfc3114c3330ed', '', 'active', '2024-10-21', '2024-10-21 14:15:46'); (94, '1089', 'joshuxx@redlinedigitxxl.cxx', '73252554730488xx226cfc3114c3330ed', '', 'active', '2024-10-21', '2024-10-21 14:15:46');
INSERT INTO `project` (`id`, `project_name`, `user_id`, `slot`, `days`, `alert`, `score_threshold`, `actual_score`, `webhook`, `calendar`, `created_at`, `updated_at`, `payload`, `location`, `access_token`, `refresh_token`, `token_expiry`) VALUES INSERT INTO `project` (`id`, `project_name`, `user_id`, `slot`, `days`, `alert`, `score_threshold`, `actual_score`, `webhook`, `calendar`, `created_at`, `updated_at`, `payload`, `location`, `access_token`, `refresh_token`, `token_expiry`) VALUES
(78, 'No Bad Days Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 1, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'OTTXZjW9AHLmO9ttljjL', '2024-01-12 11:17:46', '2024-10-31 05:00:07', '{\"Project\":\"No Bad Days Fitness\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/OTTXZjW9AHLmO9ttljjL\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IktsUTRsZDVCM0RKbThZNlFvaHY4IiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjY4MTA4NTQxNjQxLCJzdWIiOiJ1c2VyX2lkIn0.Afu51evYMgav5Ma1niAw6nZ7VJd8R_413oEGhMeucOw', NULL, NULL, NULL), (78, 'No Bad Days Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 1, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'OTTXZjW9AHLmO9ttljjL', '2024-01-12 11:17:46', '2024-10-31 05:00:07', '{\"Project\":\"No Bad Days Fitness\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/OTTXZjW9AHLmO9ttljjL\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IktsUTRsZDVCM0RKbThZNlFvaHY4IiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjY4MTA4NTQxNjQxLCJzdWIiOiJ1c2VyX2lkIn0.Afu51evYMgav5Ma1niAw6nZ7VJd8R_413oEGhMeucOw', NULL, NULL, NULL),
(79, 'BFS Fitness Club', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 3, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'JL51L2IzywQYBYzeSnz9', '2024-01-12 11:18:41', '2024-10-31 05:00:16', '{\"Project\":\"BFS Fitness Club\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/JL51L2IzywQYBYzeSnz9\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IlVrYUdISjl1N1lWdGFLNG41MVo2IiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjc4NzQxNDE1OTQ4LCJzdWIiOiJ1c2VyX2lkIn0.Nq_03tly5m1vnkHbDnqblJzIwj0wvHJN39NVLgPazyA', NULL, NULL, NULL), (79, 'BFS Fitness Club', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 3, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'JL51L2IzywQYBYzeSnz9', '2024-01-12 11:18:41', '2024-10-31 05:00:16', '{\"Project\":\"BFS Fitness Club\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/JL51L2IzywQYBYzeSnz9\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IlVrYUdISjl1N1lWdGFLNG41MVo2IiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjc4NzQxNDE1OTQ4LCJzdWIiOiJ1c2VyX2lkIn0.Nq_03tly5m1vnkHbDnqblJzIwj0wvHJN39NVLgPazyA', NULL, NULL, NULL),
(80, 'DriveRx Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 37, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', '3MDc2tKsm5PW2zZtAT2n', '2024-01-12 14:25:44', '2024-10-31 05:00:45', '{\"Project\":\"DriveRx Fitness\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/3MDc2tKsm5PW2zZtAT2n\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6InhRZlBOS3pFUGJ4SGhJNHFKanNZIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjcwODc5Njc3ODUzLCJzdWIiOiJ1c2VyX2lkIn0.uJq7Dis9g9EbLLvRnUhtTAkKaInEJb0onWkqRJZ8jrc', NULL, NULL, NULL), (80, 'DriveRx Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 37, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', '3MDc2tKsm5PW2zZtAT2n', '2024-01-12 14:25:44', '2024-10-31 05:00:45', '{\"Project\":\"DriveRx Fitness\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/3MDc2tKsm5PW2zZtAT2n\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6InhRZlBOS3pFUGJ4SGhJNHFKanNZIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjcwODc5Njc3ODUzLCJzdWIiOiJ1c2VyX2lkIn0.uJq7Dis9g9EbLLvRnUhtTAkKaInEJb0onWkqRJZ8jrc', NULL, NULL, NULL),
(81, 'Balance Sports Performance', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 42, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'toIpOJsRpI5VWKVw948B', '2024-01-12 14:26:46', '2024-04-10 05:00:37', '{\"Project\":\"Balance Sports Performance\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/toIpOJsRpI5VWKVw948B\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IkFRalpRbnpQSmU0RnpjczZQZ1BYIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjcxMDQ5ODkzNzY4LCJzdWIiOiJ1c2VyX2lkIn0.Jb4m3TAVOXTHs4MIVCfiYyMUgQBxZ8qB9CJ8Jiv6vzQ', NULL, NULL, NULL), (81, 'Balance Sports Performance', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 42, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'toIpOJsRpI5VWKVw948B', '2024-01-12 14:26:46', '2024-04-10 05:00:37', '{\"Project\":\"Balance Sports Performance\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/toIpOJsRpI5VWKVw948B\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IkFRalpRbnpQSmU0RnpjczZQZ1BYIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjcxMDQ5ODkzNzY4LCJzdWIiOiJ1c2VyX2lkIn0.Jb4m3TAVOXTHs4MIVCfiYyMUgQBxZ8qB9CJ8Jiv6vzQ', NULL, NULL, NULL),
(82, 'Transformation Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 7, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'zzY1nbwt91408shqZQkm', '2024-01-12 14:28:58', '2024-10-31 05:03:04', '{\"Project\":\"Transformation Fitness\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/zzY1nbwt91408shqZQkm\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IjhMaktUNU9taHBkTDg3azFpMkNqIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjM5NTg2NTAzODcxLCJzdWIiOiJ1c2VyX2lkIn0.HTQB1atxyeeYvIQ6fRMFR3ff3OTeB_hjP-J0bLLd-M8', NULL, NULL, NULL), (82, 'Transformation Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 7, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'zzY1nbwt91408shqZQkm', '2024-01-12 14:28:58', '2024-10-31 05:03:04', '{\"Project\":\"Transformation Fitness\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/zzY1nbwt91408shqZQkm\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IjhMaktUNU9taHBkTDg3azFpMkNqIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjM5NTg2NTAzODcxLCJzdWIiOiJ1c2VyX2lkIn0.HTQB1atxyeeYvIQ6fRMFR3ff3OTeB_hjP-J0bLLd-M8', NULL, NULL, NULL),
(83, 'Egley Train Boise', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 4, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'gZJAggtDb0DDFDirLsax', '2024-01-12 14:30:04', '2024-10-31 05:03:13', '{\"Project\":\"Egley Train Boise\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/gZJAggtDb0DDFDirLsax\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6InQwalRmR1dXQ1piTjh0ZE1zbGl1IiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjU1OTI5MzUzNzYyLCJzdWIiOiJ1c2VyX2lkIn0.HWsIwo9IF6TMmKeY1O6hz6sfyC8E6B4OECwyjs66Bcg', NULL, NULL, NULL), (83, 'Egley Train Boise', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 4, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'gZJAggtDb0DDFDirLsax', '2024-01-12 14:30:04', '2024-10-31 05:03:13', '{\"Project\":\"Egley Train Boise\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/gZJAggtDb0DDFDirLsax\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6InQwalRmR1dXQ1piTjh0ZE1zbGl1IiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjU1OTI5MzUzNzYyLCJzdWIiOiJ1c2VyX2lkIn0.HWsIwo9IF6TMmKeY1O6hz6sfyC8E6B4OECwyjs66Bcg', NULL, NULL, NULL),
(84, 'Bochner\'s Realistic Self-Defense Training and Fitness Center', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 7, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'eK5zoN7kJ8y1L8RGfJ54', '2024-01-12 14:32:26', '2024-10-31 05:03:19', '{\"Project\":\"Bochner\'s Realistic Self-Defense Training and Fitness Center\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/eK5zoN7kJ8y1L8RGfJ54\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6ImxUYVBDekFjb0FkM25qZEVoTDFEIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYxODAyNzQ0NzA2LCJzdWIiOiJ1c2VyX2lkIn0.IQFSOextPRdBAo0O6MxcOyrxMZs4O0ZmyCko-MZ9PW0', NULL, NULL, NULL), (84, 'Bochner\'s Realistic Self-Defense Training and Fitness Center', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 7, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'eK5zoN7kJ8y1L8RGfJ54', '2024-01-12 14:32:26', '2024-10-31 05:03:19', '{\"Project\":\"Bochner\'s Realistic Self-Defense Training and Fitness Center\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/eK5zoN7kJ8y1L8RGfJ54\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6ImxUYVBDekFjb0FkM25qZEVoTDFEIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYxODAyNzQ0NzA2LCJzdWIiOiJ1c2VyX2lkIn0.IQFSOextPRdBAo0O6MxcOyrxMZs4O0ZmyCko-MZ9PW0', NULL, NULL, NULL),
(85, 'The YourLife Gym', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 41, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'ly7WqjsKTuSqkTSo2MWi', '2024-01-12 14:33:11', '2024-03-03 05:01:43', '{\"Project\":\"The YourLife Gym\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/ly7WqjsKTuSqkTSo2MWi\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IkxjdFUxRzhWekNDakhmdmo5UkVwIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYxOTcxODcxNDYxLCJzdWIiOiJ1c2VyX2lkIn0.L_uxLg17Trppxi38CYGekAYjWt0UlrKmMR9xJsHYbWY', NULL, NULL, NULL), (85, 'The YourLife Gym', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 41, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'ly7WqjsKTuSqkTSo2MWi', '2024-01-12 14:33:11', '2024-03-03 05:01:43', '{\"Project\":\"The YourLife Gym\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/ly7WqjsKTuSqkTSo2MWi\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IkxjdFUxRzhWekNDakhmdmo5UkVwIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYxOTcxODcxNDYxLCJzdWIiOiJ1c2VyX2lkIn0.L_uxLg17Trppxi38CYGekAYjWt0UlrKmMR9xJsHYbWY', NULL, NULL, NULL),
(86, 'No Doubt Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 0, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'Gm9esEicp8r0OgHw3pEJ', '2024-01-12 14:34:48', '2024-03-25 05:02:15', '{\"Project\":\"No Doubt Fitness\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/Gm9esEicp8r0OgHw3pEJ\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IkJINzZxUVZ6WEJHNzlUcHdvQzN2IiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYyNzM1MjE1MjI1LCJzdWIiOiJ1c2VyX2lkIn0.YHVghMo7zAYLbhmO_YRM_1b-32P7vhllXleOrnfdY1w', NULL, NULL, NULL), (86, 'No Doubt Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 0, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'Gm9esEicp8r0OgHw3pEJ', '2024-01-12 14:34:48', '2024-03-25 05:02:15', '{\"Project\":\"No Doubt Fitness\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/Gm9esEicp8r0OgHw3pEJ\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IkJINzZxUVZ6WEJHNzlUcHdvQzN2IiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYyNzM1MjE1MjI1LCJzdWIiOiJ1c2VyX2lkIn0.YHVghMo7zAYLbhmO_YRM_1b-32P7vhllXleOrnfdY1w', NULL, NULL, NULL),
(87, 'Recalibrated Performance', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 4, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'c5dM5TQiOGqCpl0k3u0S', '2024-01-12 14:34:49', '2024-10-25 05:01:57', '{\"Project\":\"Recalibrated Performance\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/c5dM5TQiOGqCpl0k3u0S\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6ImNLcGdiNzliWklkWlhjUTFnMDBFIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYwNjgzMjYyNTA2LCJzdWIiOiJ1c2VyX2lkIn0.ltm8Bozm3jH29CdSu3jZArPydGiepF6vN8KUYulppCw', NULL, NULL, NULL), (87, 'Recalibrated Performance', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 4, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'c5dM5TQiOGqCpl0k3u0S', '2024-01-12 14:34:49', '2024-10-25 05:01:57', '{\"Project\":\"Recalibrated Performance\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/c5dM5TQiOGqCpl0k3u0S\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6ImNLcGdiNzliWklkWlhjUTFnMDBFIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYwNjgzMjYyNTA2LCJzdWIiOiJ1c2VyX2lkIn0.ltm8Bozm3jH29CdSu3jZArPydGiepF6vN8KUYulppCw', NULL, NULL, NULL),
(88, 'Atom Olson Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 13, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'uNHrsZxMcSU3AvXzBW1e', '2024-01-12 14:37:37', '2024-10-31 05:03:43', '{\"Project\":\"Atom Olson Fitness\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/uNHrsZxMcSU3AvXzBW1e\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6ImNWZEk2WDdHTmN5dVdvQ3NZTXVUIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYzMTY4NzI4MzQxLCJzdWIiOiJ1c2VyX2lkIn0.kW37YG13lUdb4UM6MGIFdbK26Pm0GCUAb0HAX6W2kMc', NULL, NULL, NULL), (88, 'Atom Olson Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 13, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'uNHrsZxMcSU3AvXzBW1e', '2024-01-12 14:37:37', '2024-10-31 05:03:43', '{\"Project\":\"Atom Olson Fitness\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/uNHrsZxMcSU3AvXzBW1e\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6ImNWZEk2WDdHTmN5dVdvQ3NZTXVUIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYzMTY4NzI4MzQxLCJzdWIiOiJ1c2VyX2lkIn0.kW37YG13lUdb4UM6MGIFdbK26Pm0GCUAb0HAX6W2kMc', NULL, NULL, NULL),
(89, 'Lazaro Health and Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'Off', 15, 42, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'COe25dXQbKCIHH5EcZiD', '2024-01-12 14:38:49', '2024-02-02 20:42:39', '{\"Project\":\"Lazaro Health and Fitness\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/COe25dXQbKCIHH5EcZiD\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IjN2TVVFcWNPR21Wa245bGVhdXFDIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYxMjczNTY4MDgxLCJzdWIiOiJ1c2VyX2lkIn0.v_SaiCCw-B83ZK85JfgG-Yg3SWldqVJ9YS0fjZDisCA', NULL, NULL, NULL), (89, 'Lazaro Health and Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'Off', 15, 42, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'COe25dXQbKCIHH5EcZiD', '2024-01-12 14:38:49', '2024-02-02 20:42:39', '{\"Project\":\"Lazaro Health and Fitness\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/COe25dXQbKCIHH5EcZiD\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IjN2TVVFcWNPR21Wa245bGVhdXFDIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYxMjczNTY4MDgxLCJzdWIiOiJ1c2VyX2lkIn0.v_SaiCCw-B83ZK85JfgG-Yg3SWldqVJ9YS0fjZDisCA', NULL, NULL, NULL),
(90, 'Fishers Fit Body Boot Camp', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'Off', 15, 42, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'Y4iKEoos56tOKjHjiHT0', '2024-01-12 14:40:17', '2024-02-02 20:42:31', '{\"Project\":\"Fishers Fit Body Boot Camp\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/Y4iKEoos56tOKjHjiHT0\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6Im5FR2M4ZkI5VmE1b3dKNUJVMWhpIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjY1NzY1NjIxNTA1LCJzdWIiOiJ1c2VyX2lkIn0.bJWnx58j2TKN96TrIHaK1zr1BFmxvuj3ElV_7kzJ300', NULL, NULL, NULL), (90, 'Fishers Fit Body Boot Camp', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'Off', 15, 42, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'Y4iKEoos56tOKjHjiHT0', '2024-01-12 14:40:17', '2024-02-02 20:42:31', '{\"Project\":\"Fishers Fit Body Boot Camp\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/Y4iKEoos56tOKjHjiHT0\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6Im5FR2M4ZkI5VmE1b3dKNUJVMWhpIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjY1NzY1NjIxNTA1LCJzdWIiOiJ1c2VyX2lkIn0.bJWnx58j2TKN96TrIHaK1zr1BFmxvuj3ElV_7kzJ300', NULL, NULL, NULL),
(91, 'B3 Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'Off', 15, 42, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 's8BRasW1C7oOBJV7vHbQ', '2024-01-12 14:41:16', '2024-02-02 20:42:23', '{\"Project\":\"B3 Fitness\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/s8BRasW1C7oOBJV7vHbQ\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6Ing1bnZYVTRFR0hMb3Q2bWw3ZTBSIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYwNjY3Mzk3NTQxLCJzdWIiOiJ1c2VyX2lkIn0.YW0cWlLYLbYVQoVXgce2Sc_LUpUFUxN7zEU8YeQscwM', NULL, NULL, NULL), (91, 'B3 Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'Off', 15, 42, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 's8BRasW1C7oOBJV7vHbQ', '2024-01-12 14:41:16', '2024-02-02 20:42:23', '{\"Project\":\"B3 Fitness\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/s8BRasW1C7oOBJV7vHbQ\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6Ing1bnZYVTRFR0hMb3Q2bWw3ZTBSIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYwNjY3Mzk3NTQxLCJzdWIiOiJ1c2VyX2lkIn0.YW0cWlLYLbYVQoVXgce2Sc_LUpUFUxN7zEU8YeQscwM', NULL, NULL, NULL),
(92, 'EMF Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'Off', 15, 42, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', '45Y0BJJylwSqnjGQe4Au', '2024-01-12 14:41:59', '2024-02-02 20:41:17', '{\"Project\":\"EMF Fitness\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/45Y0BJJylwSqnjGQe4Au\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6InNqZkNZV2FLSjljNFNTWXp3VUdNIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjY1NTIxODMzNzU1LCJzdWIiOiJ1c2VyX2lkIn0.PavTQDPFh_tn89Es99mKnKMTOxF3Iw5e06GSMMdbTuU', NULL, NULL, NULL), (92, 'EMF Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'Off', 15, 42, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', '45Y0BJJylwSqnjGQe4Au', '2024-01-12 14:41:59', '2024-02-02 20:41:17', '{\"Project\":\"EMF Fitness\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/45Y0BJJylwSqnjGQe4Au\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6InNqZkNZV2FLSjljNFNTWXp3VUdNIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjY1NTIxODMzNzU1LCJzdWIiOiJ1c2VyX2lkIn0.PavTQDPFh_tn89Es99mKnKMTOxF3Iw5e06GSMMdbTuU', NULL, NULL, NULL),
(93, 'AlphaGainz', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'Off', 15, 42, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'XybaVxFyWSh4y17huWwZ', '2024-01-12 14:42:49', '2024-02-02 20:41:11', '{\"Project\":\"AlphaGainz\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/XybaVxFyWSh4y17huWwZ\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6Ild4VllLWGJXcGM4VXJlSWFIWFhKIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjY0MzgzNjEyNjUyLCJzdWIiOiJ1c2VyX2lkIn0.J8Yqd2kbj167nrJEGbm9sd2RzV6ajUEguEnb6tm4MLI', NULL, NULL, NULL), (93, 'AlphaGainz', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'Off', 15, 42, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'XybaVxFyWSh4y17huWwZ', '2024-01-12 14:42:49', '2024-02-02 20:41:11', '{\"Project\":\"AlphaGainz\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/XybaVxFyWSh4y17huWwZ\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6Ild4VllLWGJXcGM4VXJlSWFIWFhKIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjY0MzgzNjEyNjUyLCJzdWIiOiJ1c2VyX2lkIn0.J8Yqd2kbj167nrJEGbm9sd2RzV6ajUEguEnb6tm4MLI', NULL, NULL, NULL),
(94, 'Egans Fitness Aiea', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'Off', 15, 42, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'MSaDdycBZErghHdiRL2N', '2024-01-12 14:43:43', '2024-02-02 20:41:04', '{\"Project\":\"Elite Boxing Fitness (Stockton)\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/MSaDdycBZErghHdiRL2N\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6Inp6UGlEaVBVNHVobHVqd1VsdWtmIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjk3NTY2NjQ4NjA5LCJzdWIiOiJ1c2VyX2lkIn0.Hbc5HesljR1B7LEIUg_5pM3newdrYZeYMwo8i5mEk9g', NULL, NULL, NULL), (94, 'Egans Fitness Aiea', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'Off', 15, 42, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'MSaDdycBZErghHdiRL2N', '2024-01-12 14:43:43', '2024-02-02 20:41:04', '{\"Project\":\"Elite Boxing Fitness (Stockton)\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/MSaDdycBZErghHdiRL2N\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6Inp6UGlEaVBVNHVobHVqd1VsdWtmIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjk3NTY2NjQ4NjA5LCJzdWIiOiJ1c2VyX2lkIn0.Hbc5HesljR1B7LEIUg_5pM3newdrYZeYMwo8i5mEk9g', NULL, NULL, NULL),
(95, 'Elite Boxing Fitness (Stockton)', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'Off', 15, 42, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'gKFSZNpiAY4F3DI2kMwj', '2024-01-12 14:46:07', '2024-02-02 20:40:59', '{\"Project\":\"Elite Boxing Fitness (Stockton)\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/gKFSZNpiAY4F3DI2kMwj\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6InhjSEVyeDFxakdiVE1EZDFVYjhCIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjU0NjE2Mjg3NDkyLCJzdWIiOiJ1c2VyX2lkIn0.nV_RFsJSvVhP6GRS3kANpscxy0JTiGYJON8Hj547l-Q', NULL, NULL, NULL), (95, 'Elite Boxing Fitness (Stockton)', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'Off', 15, 42, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'gKFSZNpiAY4F3DI2kMwj', '2024-01-12 14:46:07', '2024-02-02 20:40:59', '{\"Project\":\"Elite Boxing Fitness (Stockton)\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/gKFSZNpiAY4F3DI2kMwj\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6InhjSEVyeDFxakdiVE1EZDFVYjhCIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjU0NjE2Mjg3NDkyLCJzdWIiOiJ1c2VyX2lkIn0.nV_RFsJSvVhP6GRS3kANpscxy0JTiGYJON8Hj547l-Q', NULL, NULL, NULL),
(96, 'Fit Theorem - Novi ', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'Off', 15, 42, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', '5Kg1uoGHVrwFKDfsKQDK', '2024-01-12 14:48:56', '2024-02-02 20:40:48', '{\"Project\":\"Fit Theorem - Novi \", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/5Kg1uoGHVrwFKDfsKQDK\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6Iko2ZlJrVVdPRm50REFMVFgxOEg3IiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYyMTU0NTI3MzExLCJzdWIiOiJ1c2VyX2lkIn0.mQtozMa-u1m0qAxNTII5YO2p54EoZk9e4htIdc01-pk', NULL, NULL, NULL), (96, 'Fit Theorem - Novi ', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'Off', 15, 42, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', '5Kg1uoGHVrwFKDfsKQDK', '2024-01-12 14:48:56', '2024-02-02 20:40:48', '{\"Project\":\"Fit Theorem - Novi \", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/5Kg1uoGHVrwFKDfsKQDK\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6Iko2ZlJrVVdPRm50REFMVFgxOEg3IiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYyMTU0NTI3MzExLCJzdWIiOiJ1c2VyX2lkIn0.mQtozMa-u1m0qAxNTII5YO2p54EoZk9e4htIdc01-pk', NULL, NULL, NULL),
(97, 'Gulf Coast Performance', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'Off', 15, 42, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'KsvRnGNXA4gLHuUmHXIz', '2024-01-12 14:50:29', '2024-02-02 20:40:42', '{\"Project\":\"Gulf Coast Performance\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/KsvRnGNXA4gLHuUmHXIz\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6Imlhd3VqdzFtWGpxbzVDb0JCUHg4IiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYzODY3MDEzMjM5LCJzdWIiOiJ1c2VyX2lkIn0.4ej8T6jTx1g0wXUoxUXVg7iDi6B94rXJEYWPc6NcLuQ', NULL, NULL, NULL), (97, 'Gulf Coast Performance', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'Off', 15, 42, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'KsvRnGNXA4gLHuUmHXIz', '2024-01-12 14:50:29', '2024-02-02 20:40:42', '{\"Project\":\"Gulf Coast Performance\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/KsvRnGNXA4gLHuUmHXIz\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6Imlhd3VqdzFtWGpxbzVDb0JCUHg4IiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYzODY3MDEzMjM5LCJzdWIiOiJ1c2VyX2lkIn0.4ej8T6jTx1g0wXUoxUXVg7iDi6B94rXJEYWPc6NcLuQ', NULL, NULL, NULL),
(98, 'G-Five Training and Wellness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'Off', 15, 42, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'JBtL6Aqa9QDYZGxPpGNb', '2024-01-12 14:56:16', '2024-02-02 20:40:35', '{\"Project\":\"G-Five Training and Wellness\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/JBtL6Aqa9QDYZGxPpGNb\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IkhoSUFkMTBkREdWYzVKZm5BWlIyIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjg0NDIwMzM1MjQ5LCJzdWIiOiJ1c2VyX2lkIn0.QaBqZNYNeMODkTfaveTn6TwFsQvP0GvXlUFUViz2EeE', NULL, NULL, NULL), (98, 'G-Five Training and Wellness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'Off', 15, 42, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'JBtL6Aqa9QDYZGxPpGNb', '2024-01-12 14:56:16', '2024-02-02 20:40:35', '{\"Project\":\"G-Five Training and Wellness\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/JBtL6Aqa9QDYZGxPpGNb\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IkhoSUFkMTBkREdWYzVKZm5BWlIyIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjg0NDIwMzM1MjQ5LCJzdWIiOiJ1c2VyX2lkIn0.QaBqZNYNeMODkTfaveTn6TwFsQvP0GvXlUFUViz2EeE', NULL, NULL, NULL),
(99, 'A1 Health & Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 20, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'Fx6FwRYgwQBxNRxuLN0Y', '2024-01-12 14:56:57', '2024-10-31 05:04:20', '{\"Project\":\"A1 Health & Fitness\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/Fx6FwRYgwQBxNRxuLN0Y\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IjBJUzNWVFZQUnFyUjRVMjZMSkIzIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjU2NDQ1NjM5MDMxLCJzdWIiOiJ1c2VyX2lkIn0.Wuvc2UcrErNPXFLFKvshckT3TFl5wkjzyoi_DoxkV6c', NULL, NULL, NULL), (99, 'A1 Health & Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 20, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'Fx6FwRYgwQBxNRxuLN0Y', '2024-01-12 14:56:57', '2024-10-31 05:04:20', '{\"Project\":\"A1 Health & Fitness\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/Fx6FwRYgwQBxNRxuLN0Y\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IjBJUzNWVFZQUnFyUjRVMjZMSkIzIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjU2NDQ1NjM5MDMxLCJzdWIiOiJ1c2VyX2lkIn0.Wuvc2UcrErNPXFLFKvshckT3TFl5wkjzyoi_DoxkV6c', NULL, NULL, NULL),
(100, 'Southside Knockout Orland Park', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 729, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'dAaKgPMYHSiM7iK5Sp2v', '2024-01-12 14:58:07', '2024-10-31 05:13:54', '{\"Project\":\"Southside Knockout Orland Park\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/dAaKgPMYHSiM7iK5Sp2v\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IlZkNmo4NVRpSjJZaEQzYVFWM2pSIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjkyMzg1ODk5NjQ0LCJzdWIiOiJ1c2VyX2lkIn0.IrlkkZkT_AeILu7yn1n47gX1U--PXWWYRKLy3eRhi5g', NULL, NULL, NULL), (100, 'Southside Knockout Orland Park', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 729, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'dAaKgPMYHSiM7iK5Sp2v', '2024-01-12 14:58:07', '2024-10-31 05:13:54', '{\"Project\":\"Southside Knockout Orland Park\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/dAaKgPMYHSiM7iK5Sp2v\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IlZkNmo4NVRpSjJZaEQzYVFWM2pSIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjkyMzg1ODk5NjQ0LCJzdWIiOiJ1c2VyX2lkIn0.IrlkkZkT_AeILu7yn1n47gX1U--PXWWYRKLy3eRhi5g', NULL, NULL, NULL),
(101, 'CaliUnity', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 2, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', '4tNTFrjLrdpYt5GGmasE', '2024-01-12 14:59:04', '2024-10-01 05:12:18', '{\"Project\":\"CaliUnity\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/4tNTFrjLrdpYt5GGmasE\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IjBWMlByWXdsT1dqb1hrbkRDV3hWIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYyMTEwOTI1MTI3LCJzdWIiOiJ1c2VyX2lkIn0.HA3HfYqeuNtGWwjRWSvygiCCTXio2w9k_gHbp5Z7F08', NULL, NULL, NULL), (101, 'CaliUnity', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 2, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', '4tNTFrjLrdpYt5GGmasE', '2024-01-12 14:59:04', '2024-10-01 05:12:18', '{\"Project\":\"CaliUnity\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/4tNTFrjLrdpYt5GGmasE\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IjBWMlByWXdsT1dqb1hrbkRDV3hWIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYyMTEwOTI1MTI3LCJzdWIiOiJ1c2VyX2lkIn0.HA3HfYqeuNtGWwjRWSvygiCCTXio2w9k_gHbp5Z7F08', NULL, NULL, NULL),
(102, 'Armada Cross Training', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 6, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'D7aBAiNVTpkEK3XiNdZF', '2024-01-12 15:00:05', '2024-10-31 05:14:00', '{\"Project\":\"Armada Cross Training\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/D7aBAiNVTpkEK3XiNdZF\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6ImFjaGhxYTBjUmlpV1dTUmtIN3FZIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjY3ODQ2ODEwNjMxLCJzdWIiOiJ1c2VyX2lkIn0.IbTGi5UrKNr9B5gI7mSScc-m60PVwwCgdEwxHPbxyOY', NULL, NULL, NULL), (102, 'Armada Cross Training', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 6, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'D7aBAiNVTpkEK3XiNdZF', '2024-01-12 15:00:05', '2024-10-31 05:14:00', '{\"Project\":\"Armada Cross Training\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/D7aBAiNVTpkEK3XiNdZF\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6ImFjaGhxYTBjUmlpV1dTUmtIN3FZIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjY3ODQ2ODEwNjMxLCJzdWIiOiJ1c2VyX2lkIn0.IbTGi5UrKNr9B5gI7mSScc-m60PVwwCgdEwxHPbxyOY', NULL, NULL, NULL),
(103, 'F45 Training Colorado Springs Central', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 0, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'tfKTnUJsMEU4Xb1zBkj6', '2024-01-12 15:07:43', '2024-10-10 05:11:20', '{\"Project\":\"F45 Training Colorado Springs Central\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/tfKTnUJsMEU4Xb1zBkj6\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6Im83WjNYQlR3ZEpiREpiWlNoRTJBIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjc4NDY5MDA0OTE5LCJzdWIiOiJ1c2VyX2lkIn0.J87rwQn_KOK7FFU5coSjOMhdMcJjPTFs4Sui6ybuXuk', NULL, NULL, NULL), (103, 'F45 Training Colorado Springs Central', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 0, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'tfKTnUJsMEU4Xb1zBkj6', '2024-01-12 15:07:43', '2024-10-10 05:11:20', '{\"Project\":\"F45 Training Colorado Springs Central\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/tfKTnUJsMEU4Xb1zBkj6\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6Im83WjNYQlR3ZEpiREpiWlNoRTJBIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjc4NDY5MDA0OTE5LCJzdWIiOiJ1c2VyX2lkIn0.J87rwQn_KOK7FFU5coSjOMhdMcJjPTFs4Sui6ybuXuk', NULL, NULL, NULL),
(104, 'Empower Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 20, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', '7DzccNWgbctsPoAKovys', '2024-01-12 15:13:10', '2024-04-12 05:02:20', '{\"Project\":\"Empower Fitness\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/7DzccNWgbctsPoAKovys\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6Imhwdlk3Q2c0ZjZUQjhqQlhZdjJtIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjgzODMzNTc5MTA3LCJzdWIiOiJ1c2VyX2lkIn0.mHc9xn2YYrpZ_pBwdPkSKzCyJfdPu8Z6WqGBl9usrQo', NULL, NULL, NULL), (104, 'Empower Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 20, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', '7DzccNWgbctsPoAKovys', '2024-01-12 15:13:10', '2024-04-12 05:02:20', '{\"Project\":\"Empower Fitness\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/7DzccNWgbctsPoAKovys\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6Imhwdlk3Q2c0ZjZUQjhqQlhZdjJtIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjgzODMzNTc5MTA3LCJzdWIiOiJ1c2VyX2lkIn0.mHc9xn2YYrpZ_pBwdPkSKzCyJfdPu8Z6WqGBl9usrQo', NULL, NULL, NULL),
(105, 'Newport LKD', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 18, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'Pe1uNtsPsornOSRLrLM2', '2024-01-12 15:13:56', '2024-10-31 05:14:05', '{\"Project\":\"Newport LKD\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/Pe1uNtsPsornOSRLrLM2\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IkFQVFRacFBCaVRqQ01PZGlzT2lLIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjczMDI4ODI5MjE5LCJzdWIiOiJ1c2VyX2lkIn0.HAsSC5YKc3QZ1kFw4fjGsVlR7mv39C27PQ9aeXHY8RE', NULL, NULL, NULL), (105, 'Newport LKD', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 18, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'Pe1uNtsPsornOSRLrLM2', '2024-01-12 15:13:56', '2024-10-31 05:14:05', '{\"Project\":\"Newport LKD\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/Pe1uNtsPsornOSRLrLM2\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IkFQVFRacFBCaVRqQ01PZGlzT2lLIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjczMDI4ODI5MjE5LCJzdWIiOiJ1c2VyX2lkIn0.HAsSC5YKc3QZ1kFw4fjGsVlR7mv39C27PQ9aeXHY8RE', NULL, NULL, NULL),
(106, 'Peak 360', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 50, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'V7H3GharFwzTlTasxumj', '2024-01-12 15:15:04', '2024-05-11 05:02:49', '{\"Project\":\"Peak 360\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/V7H3GharFwzTlTasxumj\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6Im1lanRUM3E1bUh2dER1NmhweVNjIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjg0MzU3NzU4MTc3LCJzdWIiOiJ1c2VyX2lkIn0.1R0zZ-6S5m8cq-M4FT3MQGQI0rWC7bHN-wor7HSjPvw', NULL, NULL, NULL), (106, 'Peak 360', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 50, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'V7H3GharFwzTlTasxumj', '2024-01-12 15:15:04', '2024-05-11 05:02:49', '{\"Project\":\"Peak 360\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/V7H3GharFwzTlTasxumj\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6Im1lanRUM3E1bUh2dER1NmhweVNjIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjg0MzU3NzU4MTc3LCJzdWIiOiJ1c2VyX2lkIn0.1R0zZ-6S5m8cq-M4FT3MQGQI0rWC7bHN-wor7HSjPvw', NULL, NULL, NULL),
(107, 'Soar Over Obstacles', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 4, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'rrT2vsaMI4ILm1ZhHjym', '2024-01-12 15:16:00', '2024-05-14 05:03:25', '{\"Project\":\"Soar Over Obstacles\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/rrT2vsaMI4ILm1ZhHjym\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IkduWmwzZmdjSkQ5SVpDUkFCNmxwIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjg0NDM3ODk3NjczLCJzdWIiOiJ1c2VyX2lkIn0.Kie23Tmg4qje7zZYozi8HGHcCFP7lJWkkI5mHUB6GKQ', NULL, NULL, NULL), (107, 'Soar Over Obstacles', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 4, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'rrT2vsaMI4ILm1ZhHjym', '2024-01-12 15:16:00', '2024-05-14 05:03:25', '{\"Project\":\"Soar Over Obstacles\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/rrT2vsaMI4ILm1ZhHjym\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IkduWmwzZmdjSkQ5SVpDUkFCNmxwIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjg0NDM3ODk3NjczLCJzdWIiOiJ1c2VyX2lkIn0.Kie23Tmg4qje7zZYozi8HGHcCFP7lJWkkI5mHUB6GKQ', NULL, NULL, NULL),
(108, 'RUF Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 0, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', '4KDMjSpHsgl6nqjqsYnK', '2024-01-12 15:16:37', '2024-06-19 05:03:12', '{\"Project\":\"RUF Fitness\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/4KDMjSpHsgl6nqjqsYnK\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IlE0czJuOG1xUGVuWTFWR1FyeTVhIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjUzNjAwNTIwOTQ2LCJzdWIiOiJ1c2VyX2lkIn0.E9liDtPI8ZU6UtKI4dEeMJzAk4NuAXDDQMQFI-FOhHc', NULL, NULL, NULL), (108, 'RUF Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 0, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', '4KDMjSpHsgl6nqjqsYnK', '2024-01-12 15:16:37', '2024-06-19 05:03:12', '{\"Project\":\"RUF Fitness\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/4KDMjSpHsgl6nqjqsYnK\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IlE0czJuOG1xUGVuWTFWR1FyeTVhIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjUzNjAwNTIwOTQ2LCJzdWIiOiJ1c2VyX2lkIn0.E9liDtPI8ZU6UtKI4dEeMJzAk4NuAXDDQMQFI-FOhHc', NULL, NULL, NULL),
(109, 'Wine Country Crossfit', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 19, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'jtIj87jTgIPx1Hk6LVM9', '2024-01-12 15:17:10', '2024-10-31 05:14:26', '{\"Project\":\"Wine Country Crossfit\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/jtIj87jTgIPx1Hk6LVM9\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IlRDcHlvT0lsdnZNdzE3NnBSWDBWIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjU4MzM3ODgyMzc2LCJzdWIiOiJ1c2VyX2lkIn0.KY_NJuH4KDt9JEu6b9hdGMfOUE6GjLG_BxZi3Gw9WLQ', NULL, NULL, NULL), (109, 'Wine Country Crossfit', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 19, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'jtIj87jTgIPx1Hk6LVM9', '2024-01-12 15:17:10', '2024-10-31 05:14:26', '{\"Project\":\"Wine Country Crossfit\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/jtIj87jTgIPx1Hk6LVM9\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IlRDcHlvT0lsdnZNdzE3NnBSWDBWIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjU4MzM3ODgyMzc2LCJzdWIiOiJ1c2VyX2lkIn0.KY_NJuH4KDt9JEu6b9hdGMfOUE6GjLG_BxZi3Gw9WLQ', NULL, NULL, NULL),
(110, 'Steel Mill Fleming Island', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 14, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'WaOLlr3W3vOfVX9Ockj5', '2024-01-12 15:19:40', '2024-10-31 05:14:32', '{\"Project\":\"Steel Mill Fleming Island\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/WaOLlr3W3vOfVX9Ockj5\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IkFkVjBYdFNVNTZGbVMza09HUkI1IiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYyNTY3MDc4Njk4LCJzdWIiOiJ1c2VyX2lkIn0.wGlYDRn67XEe-v8blBXCIQuPR_MSVh5sGe4BNaPXqbc', NULL, NULL, NULL), (110, 'Steel Mill Fleming Island', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 14, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'WaOLlr3W3vOfVX9Ockj5', '2024-01-12 15:19:40', '2024-10-31 05:14:32', '{\"Project\":\"Steel Mill Fleming Island\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/WaOLlr3W3vOfVX9Ockj5\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IkFkVjBYdFNVNTZGbVMza09HUkI1IiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYyNTY3MDc4Njk4LCJzdWIiOiJ1c2VyX2lkIn0.wGlYDRn67XEe-v8blBXCIQuPR_MSVh5sGe4BNaPXqbc', NULL, NULL, NULL),
(111, 'Empower Fit', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 27, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'xLHuykMQdr5MHKkBrs6j', '2024-01-12 15:20:34', '2024-10-31 05:14:54', '{\"Project\":\"Empower Fit\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/xLHuykMQdr5MHKkBrs6j\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IlNzNFEwN0tRQllCZFhYNmEzV3dBIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjg0OTU5Mjk4MDY5LCJzdWIiOiJ1c2VyX2lkIn0.cDqYs5DRLydsORmrX1z4LzKB7HsLj5v_ZXa5ztnGb68', NULL, NULL, NULL), (111, 'Empower Fit', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 27, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'xLHuykMQdr5MHKkBrs6j', '2024-01-12 15:20:34', '2024-10-31 05:14:54', '{\"Project\":\"Empower Fit\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/xLHuykMQdr5MHKkBrs6j\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IlNzNFEwN0tRQllCZFhYNmEzV3dBIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjg0OTU5Mjk4MDY5LCJzdWIiOiJ1c2VyX2lkIn0.cDqYs5DRLydsORmrX1z4LzKB7HsLj5v_ZXa5ztnGb68', NULL, NULL, NULL),
(112, 'F45 Training Coeur D\'Alene', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 32, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'GFwKOQXHlB2uepE2pGbW', '2024-01-12 15:21:17', '2024-10-31 05:15:05', '{\"Project\":\"F45 Training Coeur D\'Alene\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/GFwKOQXHlB2uepE2pGbW\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IkU5YnN2ZmZSMFhZcGN2cVRSVmFlIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjU1ODM5OTQxOTY1LCJzdWIiOiJ1c2VyX2lkIn0.1-suMs0NV7pbNr8ZPMp08kKpeGM3oodJkzXvLK7ysmQ', NULL, NULL, NULL), (112, 'F45 Training Coeur D\'Alene', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 32, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'GFwKOQXHlB2uepE2pGbW', '2024-01-12 15:21:17', '2024-10-31 05:15:05', '{\"Project\":\"F45 Training Coeur D\'Alene\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/GFwKOQXHlB2uepE2pGbW\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IkU5YnN2ZmZSMFhZcGN2cVRSVmFlIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjU1ODM5OTQxOTY1LCJzdWIiOiJ1c2VyX2lkIn0.1-suMs0NV7pbNr8ZPMp08kKpeGM3oodJkzXvLK7ysmQ', NULL, NULL, NULL),
(113, 'Train PTM', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 18, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'rSb1ljJSzwpsUFSFsjB3', '2024-01-12 15:21:46', '2024-10-29 05:12:25', '{\"Project\":\"Train PTM\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/rSb1ljJSzwpsUFSFsjB3\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6Ijc4eHZoTno1U09oRU1GVW5hWXFIIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjg0MTcxMTIwMjgyLCJzdWIiOiJ1c2VyX2lkIn0.4k3F32U6eaY5uXPeKFtnxL7vZ0g0IXLCVSwP826N9AM', NULL, NULL, NULL), (113, 'Train PTM', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 18, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'rSb1ljJSzwpsUFSFsjB3', '2024-01-12 15:21:46', '2024-10-29 05:12:25', '{\"Project\":\"Train PTM\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/rSb1ljJSzwpsUFSFsjB3\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6Ijc4eHZoTno1U09oRU1GVW5hWXFIIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjg0MTcxMTIwMjgyLCJzdWIiOiJ1c2VyX2lkIn0.4k3F32U6eaY5uXPeKFtnxL7vZ0g0IXLCVSwP826N9AM', NULL, NULL, NULL),
(114, 'Midwest Muscle', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 111, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'Wbk0GmUk81r3eClWCBhz', '2024-01-12 15:22:23', '2024-10-31 05:15:11', '{\"Project\":\"Midwest Muscle\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/Wbk0GmUk81r3eClWCBhz\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IkQzQUtleXpjQ1pLdFhScXFFSVAzIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjg0ODczNTI4MTUyLCJzdWIiOiJ1c2VyX2lkIn0.6GJr0vmf6At4OCBnaF1NpP0zKU0a7GbQ08h3BIFHghY', NULL, NULL, NULL), (114, 'Midwest Muscle', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 111, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'Wbk0GmUk81r3eClWCBhz', '2024-01-12 15:22:23', '2024-10-31 05:15:11', '{\"Project\":\"Midwest Muscle\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/Wbk0GmUk81r3eClWCBhz\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IkQzQUtleXpjQ1pLdFhScXFFSVAzIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjg0ODczNTI4MTUyLCJzdWIiOiJ1c2VyX2lkIn0.6GJr0vmf6At4OCBnaF1NpP0zKU0a7GbQ08h3BIFHghY', NULL, NULL, NULL),
(115, 'Fit Results', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 0, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', '69qvBR6v28tCkj6TQcJP', '2024-01-12 15:23:23', '2024-02-15 05:04:05', '{\"Project\":\"Fit Results\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/69qvBR6v28tCkj6TQcJP\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6ImtCM1ZKSElVUTBPYWc2aVlXVk5zIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjgzNzUwNTE3NDIyLCJzdWIiOiJ1c2VyX2lkIn0.5WRSIeDryKn8v1yVOFUj4m1hVTSW-ngqIo6mDft39YA', NULL, NULL, NULL), (115, 'Fit Results', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 0, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', '69qvBR6v28tCkj6TQcJP', '2024-01-12 15:23:23', '2024-02-15 05:04:05', '{\"Project\":\"Fit Results\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/69qvBR6v28tCkj6TQcJP\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6ImtCM1ZKSElVUTBPYWc2aVlXVk5zIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjgzNzUwNTE3NDIyLCJzdWIiOiJ1c2VyX2lkIn0.5WRSIeDryKn8v1yVOFUj4m1hVTSW-ngqIo6mDft39YA', NULL, NULL, NULL),
(116, 'Powerhouse Training Covina', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 60, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'lwWBMoeHARriTFBUOLvV', '2024-01-12 15:24:40', '2024-05-30 05:04:22', '{\"Project\":\"Powerhouse Training Covina\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/lwWBMoeHARriTFBUOLvV\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IjVyM3FLYVMyUlVBNjlwN3dyUk1iIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjg0MjYxMjkyMzM1LCJzdWIiOiJ1c2VyX2lkIn0.QRhvzhFi_1rX0NCdJiSrQq1hywnKi4NKQTzwaBKr45M', NULL, NULL, NULL), (116, 'Powerhouse Training Covina', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 60, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'lwWBMoeHARriTFBUOLvV', '2024-01-12 15:24:40', '2024-05-30 05:04:22', '{\"Project\":\"Powerhouse Training Covina\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/lwWBMoeHARriTFBUOLvV\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IjVyM3FLYVMyUlVBNjlwN3dyUk1iIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjg0MjYxMjkyMzM1LCJzdWIiOiJ1c2VyX2lkIn0.QRhvzhFi_1rX0NCdJiSrQq1hywnKi4NKQTzwaBKr45M', NULL, NULL, NULL),
(117, 'CJJF Texas', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 26, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'ksrKihTv60Howjov9ew4', '2024-01-12 15:25:35', '2024-10-31 05:15:16', '{\"Project\":\"Lights Out Boxing\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/ksrKihTv60Howjov9ew4\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IjFvd1FvenU5Z1FrR0d4d1l4Z0k4IiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjg0MTY1MzY3MzgyLCJzdWIiOiJ1c2VyX2lkIn0.1lbrjX8HwdqgVPsgCDsVDzl9Z0gDeVNcaWtOQ2rBX8I', NULL, NULL, NULL), (117, 'CJJF Texas', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 26, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'ksrKihTv60Howjov9ew4', '2024-01-12 15:25:35', '2024-10-31 05:15:16', '{\"Project\":\"Lights Out Boxing\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/ksrKihTv60Howjov9ew4\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IjFvd1FvenU5Z1FrR0d4d1l4Z0k4IiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjg0MTY1MzY3MzgyLCJzdWIiOiJ1c2VyX2lkIn0.1lbrjX8HwdqgVPsgCDsVDzl9Z0gDeVNcaWtOQ2rBX8I', NULL, NULL, NULL),
(118, 'Lights Out Boxing', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 121, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'rEOz0hbfpdhO2zQFxHqd', '2024-01-12 15:26:24', '2024-10-10 05:12:46', '{\"Project\":\"Lights Out Boxing\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/rEOz0hbfpdhO2zQFxHqd\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6Im4zTVdlOTliQk5pZDhPM1ljZ2NLIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYzMDg5NjgwNTI1LCJzdWIiOiJ1c2VyX2lkIn0.7BIpf_19_eEWpAsOi-xR--cYDxxT7oau8U9Wu2sNXyc', NULL, NULL, NULL), (118, 'Lights Out Boxing', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 121, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'rEOz0hbfpdhO2zQFxHqd', '2024-01-12 15:26:24', '2024-10-10 05:12:46', '{\"Project\":\"Lights Out Boxing\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/rEOz0hbfpdhO2zQFxHqd\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6Im4zTVdlOTliQk5pZDhPM1ljZ2NLIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYzMDg5NjgwNTI1LCJzdWIiOiJ1c2VyX2lkIn0.7BIpf_19_eEWpAsOi-xR--cYDxxT7oau8U9Wu2sNXyc', NULL, NULL, NULL),
(119, 'Booty Lab', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 0, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'C5tXFKwg8fCNiB9NgR8o', '2024-01-12 15:26:46', '2024-10-31 05:15:22', '{\"Project\":\"Booty Lab\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/C5tXFKwg8fCNiB9NgR8o\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IjduWHZJdExYcXdlTHNOb0pTU1E5IiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYwMDY2NDQ1NzE2LCJzdWIiOiJ1c2VyX2lkIn0.f0fPlJc6Bdn9_7DvuGCp8DdluL1Z2HO9b2wOdOOTJ0A', NULL, NULL, NULL), (119, 'Booty Lab', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 0, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'C5tXFKwg8fCNiB9NgR8o', '2024-01-12 15:26:46', '2024-10-31 05:15:22', '{\"Project\":\"Booty Lab\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/C5tXFKwg8fCNiB9NgR8o\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IjduWHZJdExYcXdlTHNOb0pTU1E5IiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYwMDY2NDQ1NzE2LCJzdWIiOiJ1c2VyX2lkIn0.f0fPlJc6Bdn9_7DvuGCp8DdluL1Z2HO9b2wOdOOTJ0A', NULL, NULL, NULL),
(120, 'Legacy Gym Columbus', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 78, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'FeDCSL9ZjKyNrHA4Z4RP', '2024-01-12 15:26:47', '2024-10-31 05:16:03', '{\"Project\":\"Legacy Gym Columbus\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/FeDCSL9ZjKyNrHA4Z4RP\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IlZMenQwYUxkVlNPVkpmTVFlQ09QIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjgxNDg3OTQ1MjE3LCJzdWIiOiJ1c2VyX2lkIn0.o8w_heWPJfbvgx3IKylHDXrsbD02Dm6Hvbsb9t4lQOg', NULL, NULL, NULL), (120, 'Legacy Gym Columbus', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 78, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'FeDCSL9ZjKyNrHA4Z4RP', '2024-01-12 15:26:47', '2024-10-31 05:16:03', '{\"Project\":\"Legacy Gym Columbus\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/FeDCSL9ZjKyNrHA4Z4RP\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IlZMenQwYUxkVlNPVkpmTVFlQ09QIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjgxNDg3OTQ1MjE3LCJzdWIiOiJ1c2VyX2lkIn0.o8w_heWPJfbvgx3IKylHDXrsbD02Dm6Hvbsb9t4lQOg', NULL, NULL, NULL),
(121, 'WEFiT', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 7, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'hOCcfOIxELgCOplzNQKK', '2024-01-12 15:26:48', '2024-02-13 05:05:59', '{\"Project\":\"WEFiT\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/hOCcfOIxELgCOplzNQKK\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6ImVmYkFCN3dzWGFyNTVqZ2U5QTBPIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYzODc4NTUzMDYzLCJzdWIiOiJ1c2VyX2lkIn0.YqLAMFSCga9B-feY15X5JgKkeS9JTa9ht-F7P76jaFk', NULL, NULL, NULL), (121, 'WEFiT', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 7, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'hOCcfOIxELgCOplzNQKK', '2024-01-12 15:26:48', '2024-02-13 05:05:59', '{\"Project\":\"WEFiT\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/hOCcfOIxELgCOplzNQKK\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6ImVmYkFCN3dzWGFyNTVqZ2U5QTBPIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYzODc4NTUzMDYzLCJzdWIiOiJ1c2VyX2lkIn0.YqLAMFSCga9B-feY15X5JgKkeS9JTa9ht-F7P76jaFk', NULL, NULL, NULL),
(122, 'Clean Cut Elite', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 16, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'j8QMNffOtlrpEsi8iUSk', '2024-01-12 15:26:48', '2024-10-31 05:16:09', '{\"Project\":\"Clean Cut Elite\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/j8QMNffOtlrpEsi8iUSk\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IndsblFzRUFaY29UN1hLVTBsZkdVIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjU5NzE2NDM2NDQxLCJzdWIiOiJ1c2VyX2lkIn0.x_y5xzi4HuUwV_s4eZzCAx2vLjaVYTbcF8YvsNN1NVM', NULL, NULL, NULL), (122, 'Clean Cut Elite', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 16, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'j8QMNffOtlrpEsi8iUSk', '2024-01-12 15:26:48', '2024-10-31 05:16:09', '{\"Project\":\"Clean Cut Elite\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/j8QMNffOtlrpEsi8iUSk\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IndsblFzRUFaY29UN1hLVTBsZkdVIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjU5NzE2NDM2NDQxLCJzdWIiOiJ1c2VyX2lkIn0.x_y5xzi4HuUwV_s4eZzCAx2vLjaVYTbcF8YvsNN1NVM', NULL, NULL, NULL),
(123, 'Catalyst Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 43, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'QrP2X2pWwFGqSCyxHoqP', '2024-01-12 15:26:49', '2024-05-25 05:04:23', '{\"Project\":\"Catalyst Fitness\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/QrP2X2pWwFGqSCyxHoqP\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IlNxZmZzUUxGYjRNR3VqTjJodnQ1IiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjgzODM3OTU3NTM4LCJzdWIiOiJ1c2VyX2lkIn0.-UhhtuJwW3l-JsrgKULkzCepgBxuSAlPr0vY2Vcm0j0', NULL, NULL, NULL), (123, 'Catalyst Fitness', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 43, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'QrP2X2pWwFGqSCyxHoqP', '2024-01-12 15:26:49', '2024-05-25 05:04:23', '{\"Project\":\"Catalyst Fitness\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/QrP2X2pWwFGqSCyxHoqP\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IlNxZmZzUUxGYjRNR3VqTjJodnQ1IiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjgzODM3OTU3NTM4LCJzdWIiOiJ1c2VyX2lkIn0.-UhhtuJwW3l-JsrgKULkzCepgBxuSAlPr0vY2Vcm0j0', NULL, NULL, NULL),
(124, 'LM Fitness Center', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 9, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'HYmJMZlbp380XtXjy5AC', '2024-01-12 15:26:50', '2024-10-31 05:16:14', '{\"Project\":\"LM Fitness Center\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/HYmJMZlbp380XtXjy5AC\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IlBVaVJwb2EzY1F0eTRsQ1hOM3NGIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjUyNDY3Mjc5NzU4LCJzdWIiOiJ1c2VyX2lkIn0.cOU2jTZMOe_-sTtLcq4bQaLi73DBPjgKP8ENhNKgLDg', NULL, NULL, NULL), (124, 'LM Fitness Center', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 9, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'HYmJMZlbp380XtXjy5AC', '2024-01-12 15:26:50', '2024-10-31 05:16:14', '{\"Project\":\"LM Fitness Center\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/HYmJMZlbp380XtXjy5AC\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IlBVaVJwb2EzY1F0eTRsQ1hOM3NGIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjUyNDY3Mjc5NzU4LCJzdWIiOiJ1c2VyX2lkIn0.cOU2jTZMOe_-sTtLcq4bQaLi73DBPjgKP8ENhNKgLDg', NULL, NULL, NULL),
(125, 'Buena Park 1 Fit', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 9, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'yCpyFRGKyp6GJCqvC7aG', '2024-01-12 15:26:51', '2024-10-31 05:16:33', '{\"Project\":\"Buena Park 1 Fit\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/yCpyFRGKyp6GJCqvC7aG\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IkpUWWhxYzI3TUZYdEtGUVduakwyIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjQwMjE0ODU5NDYyLCJzdWIiOiJ1c2VyX2lkIn0.YEq-jJ5CSlxgiiVov60wIrUpXtcvSfROPEvlR4Wx2rs', NULL, NULL, NULL), (125, 'Buena Park 1 Fit', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 9, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'yCpyFRGKyp6GJCqvC7aG', '2024-01-12 15:26:51', '2024-10-31 05:16:33', '{\"Project\":\"Buena Park 1 Fit\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/yCpyFRGKyp6GJCqvC7aG\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IkpUWWhxYzI3TUZYdEtGUVduakwyIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjQwMjE0ODU5NDYyLCJzdWIiOiJ1c2VyX2lkIn0.YEq-jJ5CSlxgiiVov60wIrUpXtcvSfROPEvlR4Wx2rs', NULL, NULL, NULL),
(131, 'Performance Arc', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 44, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'Bny3AIXD73nPLEQHyLl9', '2024-01-12 15:41:58', '2024-10-31 05:16:49', '{\"Project\":\"Performance Arc\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/Bny3AIXD73nPLEQHyLl9\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IjN0cjhaNXdSV3RIWlUySTZ4cDZPIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjgzOTIzMDg1NDg0LCJzdWIiOiJ1c2VyX2lkIn0.iwBC7Lu13UQRQ1uaA2uiua0BWgzNqqD7dPsojdOClcQ', NULL, NULL, NULL), (131, 'Performance Arc', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 44, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'Bny3AIXD73nPLEQHyLl9', '2024-01-12 15:41:58', '2024-10-31 05:16:49', '{\"Project\":\"Performance Arc\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/Bny3AIXD73nPLEQHyLl9\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IjN0cjhaNXdSV3RIWlUySTZ4cDZPIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjgzOTIzMDg1NDg0LCJzdWIiOiJ1c2VyX2lkIn0.iwBC7Lu13UQRQ1uaA2uiua0BWgzNqqD7dPsojdOClcQ', NULL, NULL, NULL),
(132, 'F45 Training Brookfield', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 40, 'https://hook.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'fdH5SgeBkv9JYGEuksrD', '2024-01-12 15:43:09', '2024-03-06 05:05:45', '{\"Project\":\"F45 Training Brookfield\", \"Calendar Link\":\"https://link.localbestgyms.com/widget/booking/fdH5SgeBkv9JYGEuksrD\"}', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2NhdGlvbl9pZCI6IlJyWEtQVWJHZzFvNVA1dVRwNENjIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYzMDg1ODQyODAwLCJzdWIiOiJ1c2VyX2lkIn0.be_Qn0e9ovGfiXLmIIYquhqQFvqqtzwdpQ5jncUEe1w', NULL, NULL, NULL); (132, 'F45 Training Brookfield', NULL, '{\"sunday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}],\"monday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"tuesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"wednesday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"thursday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"friday\":[{\"from\":\"00:00\",\"to\":\"16:00\",\"point\":\"1\"},{\"from\":\"16:00\",\"to\":\"19:00\",\"point\":\"2\"},{\"from\":\"19:00\",\"to\":\"00:00\",\"point\":\"1\"}],\"saturday\":[{\"from\":\"00:00\",\"to\":\"00:00\",\"point\":\"2\"}]}', 12, 'On', 15, 40, 'https://app.eu1.make.com/g2cnu8lsuuqf72ufipq20lwa0abb8xkw', 'fdH5SgeBkv9JYGEuksrD', '2024-01-12 15:43:09', '2024-03-06 05:05:45', '{\"Project\":\"F45 Training Brookfield\", \"Calendar Link\":\"https://app.localbestgyms.com/widget/booking/fdH5SgeBkv9JYGEuksrD\"}', 'fbphbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.fbpsb2NhdGlvbl9pZCI6IlJyWEtQVWJHZzFvNVA1dVRwNENjIiwiY29tcGFueV9pZCI6IkVFRHdsY2pnQTlYS29CbVQxNVQwIiwidmVyc2lvbiI6MSwiaWF0IjoxNjYzMDg1ODQyODAwLCJzdWIiOiJ1c2VyX2lkIn0.be_Qn0e9ovGfiXLmIIYquhqQFvqqtzwdpQ5jncUEe1w', NULL, NULL, NULL);
@@ -224,10 +227,10 @@ INSERT INTO `campaign` (`id`, `name`, `file_id`, `data`, `user_id`, `created_at`
INSERT INTO `user` (`id`, `email`, `password`, `status`, `role`, `company`, `drive_access_token`, `drive_refresh_token`, `created_at`, `updated_at`) VALUES INSERT INTO `user` (`id`, `email`, `password`, `status`, `role`, `company`, `drive_access_token`, `drive_refresh_token`, `created_at`, `updated_at`) VALUES
(2, 'admin@manaknight.com', '$2a$10$LVzS6puBDllaSLt5eGxWCubf6qvLPKtk8taUwnU2tzYfQUKikFlwO', 'active', 'admin', 'Team Follow Up', 'ya29.a0AXeO80QLAusz5s5MA7VNCTvTbjCD4fvMUxbpYi3YZxdWkF_oGjaTzqABwRsR_ZgJwbwsDpKHiYZwWjGuZBQrcCF0MlCCdVLxcYHrcOej53a2u1jwLA4y6QUf6X1BaQIZEO-uVUZ0OD5JKrP098LrdrRlYGsiBid67rYXwKVoaCgYKAcMSARASFQHGX2MiZNcwyHXTbgvh6diBE3VT-w0175', '1//03noSXsyWetHtCgYIARAAGAMSNwF-L9IrbWjCPDsg5f1Xk7BroV5KMMaRR4q8bfE2eNdRwTBfXAOjZSN7r_5XCgWph-wGhZBx6xM', NULL, '2025-01-29 12:31:44'), (2, 'admin@manaknight.com', '$2a$10$LVzS6puBDllaSLt5eGxWCubf6qvLPKtk8taUwnU2tzYfQUKikFlwO', 'active', 'admin', 'MKD Follow Up', 'ya29.a0AXeO80QLAusz5s5MA7VNCTvTbjCD4fvMUxbpYi3YZxdWkF_oGjaTzqABwRsR_ZgJwbwsDpKHiYZwWjGuZBQrcCF0MlCCdVLxcYHrcOej53a2u1jwLA4y6QUf6X1BaQIZEO-uVUZ0OD5JKrP098LrdrRlYGsiBid67rYXwKVoaCgYKAcMSARASFQHGX2MiZNcwyHXTbgvh6diBE3VT-w0175', '1//03noSXsyWetHtCgYIARAAGAMSNwF-L9IrbWjCPDsg5f1Xk7BroV5KMMaRR4q8bfE2eNdRwTBfXAjZS7r_5XCgWph-wGhZBx6xM', NULL, '2025-01-29 12:31:44'),
(3, 'adminteam@manaknight.com', '$2y$10$GpPSVZINjfrlMxm0.pVXhO6oCahQQTy32hWyBNg6gMELih5zLdr.W', 'active', 'admin', 'Team Follow Up', NULL, NULL, '2023-12-13', '2023-12-13 19:40:19'), (3, 'adminteam@manaknight.com', '$2y$10$GpPSVZINjfrlMxm0.pVXhO6oCahQQTy32hWyBNg6gMELih5zLdr.W', 'active', 'admin', 'MKD Follow Up', NULL, NULL, '2023-12-13', '2023-12-13 19:40:19'),
(5, 'admintest@manaknight.com', '$2y$10$tPLIU5zu0h48T/8i443.3epeaLXpbNMuULbQ7Ju9X7cGGrjqAugkK', 'active', 'admin', 'Team Follow Up', NULL, NULL, '2023-12-18', '2023-12-18 20:03:27'), (5, 'admintest@manaknight.com', '$2y$10$tPLIU5zu0h48T/8i443.3epeaLXpbNMuULbQ7Ju9X7cGGrjqAugkK', 'active', 'admin', 'MKD Follow Up', NULL, NULL, '2023-12-18', '2023-12-18 20:03:27'),
(9, 'gls@manaknight.com', '$2y$10$0o1TpLTQwVqdVcfXhlH0AO3xT79KK0mcN2bh0iSA5IzKNpE7gEKPa', 'active', 'client', 'GLS', NULL, NULL, NULL, '2024-03-04 20:50:40'), (9, 'gls@manaknight.com', '$2y$10$0o1TpLTQwVqdVcfXhlH0AO3xT79KK0mcN2bh0iSA5IzKNpE7gEKPa', 'active', 'client', 'MKD', NULL, NULL, NULL, '2024-03-04 20:50:40'),
(10, 'emmy@manaknight.com', '$2a$10$LVzS6puBDllaSLt5eGxWCubf6qvLPKtk8taUwnU2tzYfQUKikFlwO', 'active', 'client', 'Team Follow Up', 'ya29.a0ARW5m77GHU7yS5Cfk0zxjL-PcN1oQ4usNwkIfKCChflapA_991O5mVXdZFsHhuiAL8dnHs0CpAJguNrjGwnaMF4YFn7IxVC5Tlddk20kKX2z_L5TQWhykLVXbmCpamcbji6gnwPjaMAnt_S1_3OZp7NDd7zpfoz0uhZIJti5aCgYKAbESARASFQHGX2MibQDtWjAw9btwO5P7urVgEw0175', '1//03nzwtiJYvYkvCgYIARAAGAMSNwF-L9IrZLUjJLpTPSqABB-s_NVAS5stK_h9yZ0tUHED4yTpifxifaaxCOaAJqYnEdq8j_2Rnh8', '2024-02-16', '2025-01-09 18:58:57'), (10, 'emmy@manaknight.com', '$2a$10$LVzS6puBDllaSLt5eGxWCubf6qvLPKtk8taUwnU2tzYfQUKikFlwO', 'active', 'client', 'MKD Follow Up', 'ya29.a0ARW5m77GHU7yS5Cfk0zxjL-PcN1oQ4usNwkIfKCChflapA_991O5mVXdZFsHhuiAL8dnHs0CpAJguNrjGwnaMF4YFn7IxVC5Tlddk20kKX2z_L5TQWhykLVXbmCpamcbji6gnwPjaMAnt_S1_3OZp7NDd7zpfoz0uhZIJti5aCgYKAbESARASFQHGX2MibQDtWjAw9btwO5P7urVgEw0175', '1//03nzwtiJYvYkvCgYIARAAGAMSNwF-L9IrZLUjJLpTPSqABB-s_NVAS5stK_h9yZ0tUHED4yTpiifaaxCOaAJqYnEdq8j_2Rnh8', '2024-02-16', '2025-01-09 18:58:57'),
(11, 'teamfollowup@manaknight.com', '$2y$10$e189rlZouySxKwsLLVtqxO2e8cbQzyh8b1b2f4eiKPfFaurUPbjQm', 'active', 'client', 'Team Follow Up', NULL, NULL, '2024-02-16', '2024-03-04 20:31:07'), (11, 'team@manaknight.com', '$2y$10$e189rlZouySxKwsLLVtqxO2e8cbQzyh8b1b2f4eiKPfFaurUPbjQm', 'active', 'client', 'MKD Follow Up', NULL, NULL, '2024-02-16', '2024-03-04 20:31:07'),
(14, 'testcomp@mkd.com', '$2y$10$BhVBeBoQobBtqxTydotETOmGHu31sqBxmh5lVeVLl8BBUPQv9yAB2', 'active', 'client', 'Comp', NULL, NULL, '2024-03-04', '2024-03-04 20:35:30'); (14, 'testcomp@mkd.com', '$2y$10$BhVBeBoQobBtqxTydotETOmGHu31sqBxmh5lVeVLl8BBUPQv9yAB2', 'active', 'client', 'Comp', NULL, NULL, '2024-03-04', '2024-03-04 20:35:30');
+1 -1
View File
@@ -5,7 +5,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<title>Privacy Policy | Team Follow-up </title> <title>Privacy Policy | Manaknight</title>
</head> </head>
<body> <body>
<div class="container py-5"> <div class="container py-5">
-87
View File
@@ -1,87 +0,0 @@
# ************************************************************
# Sequel Pro SQL dump
# Version 4541
#
# http://www.sequelpro.com/
# https://github.com/sequelpro/sequelpro
#
# Host: 127.0.0.1 (MySQL 5.5.5-10.11.2-MariaDB)
# Database: team_followup
# Generation Time: 2023-10-16 23:15:41 +0000
# ************************************************************
/*!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 utf8 */;
/*!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 */;
# Dump of table accesslog
# ------------------------------------------------------------
DROP TABLE IF EXISTS `accesslog`;
CREATE TABLE `accesslog` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`relationship_num` varchar(255) NOT NULL,
`ip` varchar(255) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` varchar(191) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
LOCK TABLES `accesslog` WRITE;
/*!40000 ALTER TABLE `accesslog` DISABLE KEYS */;
INSERT INTO `accesslog` (`id`, `relationship_num`, `ip`, `created_at`, `updated_at`)
VALUES
(3,'1000','127.0.0.1','2023-09-06 21:56:17','2023-09-6 21:56:17');
/*!40000 ALTER TABLE `accesslog` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table license
# ------------------------------------------------------------
DROP TABLE IF EXISTS `license`;
CREATE TABLE `license` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`relationship_num` varchar(255) NOT NULL,
`email` varchar(255) NOT NULL,
`apikey` varchar(255) NOT NULL,
`ip` varchar(255) NOT NULL,
`status` varchar(255) NOT NULL,
`created_at` date NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
LOCK TABLES `license` WRITE;
/*!40000 ALTER TABLE `license` DISABLE KEYS */;
INSERT INTO `license` (`id`, `relationship_num`, `email`, `apikey`, `ip`, `status`, `created_at`, `updated_at`)
VALUES
(4,'4000','ryan@manaknight.com','abc','','active','2023-09-06','2023-09-06 13:18:30'),
(5,'5000','ryan@manaknight.com','abc','','active','2023-09-06','2023-09-06 13:18:30'),
(6,'2345','wongryan2001@gmail.com','e750b10010d5447b51ec35bd194b19e4','','active','2023-09-07','2023-09-07 09:28:15'),
(7,'2345','wongryan2001@gmail.com','98f2acce631c7a146e01c4d69a8d6cd8','','active','2023-09-07','2023-09-07 09:28:46'),
(8,'10012','wongryan2001@gmail.com','70e52251408159907c7fb5abfa32d5f2','','active','2023-09-07','2023-09-07 09:29:02'),
(9,'2011','ryan11@manaknight.com','b9246f6914aa5f1e367871dfad3252a1f','','inactive','2023-09-07','2023-09-07 09:42:01');
/*!40000 ALTER TABLE `license` ENABLE KEYS */;
UNLOCK TABLES;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
+1 -1
View File
@@ -2,7 +2,7 @@
<html> <html>
<head> <head>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<title>Terms & Conditions | Team Follow-up </title> <title>Terms & Conditions | Manaknight</title>
</head> </head>
<body> <body>
<div class="container py-5"> <div class="container py-5">
+1 -1
View File
@@ -52,7 +52,7 @@
<body> <body>
<div class="wrapper"> <div class="wrapper">
<nav id="sidebar"> <nav id="sidebar">
<div class="sidebar-header">Team Followup</div> <div class="sidebar-header">Manaknight Project</div>
<ul class="list-unstyled components"> <ul class="list-unstyled components">
<li><a href="/admin/license"> License </a></li> <li><a href="/admin/license"> License </a></li>
<li><a href="/admin/accesslog"> Access log </a></li> <li><a href="/admin/accesslog"> Access log </a></li>