-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Oct 08, 2024 at 01:16 PM
-- Server version: 10.6.19-MariaDB-ubu2004
-- PHP Version: 8.3.11

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `mimeld_mxgrab`
--

-- --------------------------------------------------------

--
-- Table structure for table `adhocs`
--

CREATE TABLE `adhocs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `adhoc_users`
--

CREATE TABLE `adhoc_users` (
  `id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `name` varchar(50) NOT NULL,
  `email` varchar(150) DEFAULT NULL,
  `mobile` varchar(14) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `adhoc_users`
--

INSERT INTO `adhoc_users` (`id`, `request_id`, `name`, `email`, `mobile`, `active`, `created_at`, `updated_at`) VALUES
(1, '125060bd-92ec-4bb7-b4ad-e4b3d743bc44', 'Dr. Benjamin Scott', NULL, '+911234567859', 1, '2024-10-03 02:57:33', '2024-10-03 02:57:33');

-- --------------------------------------------------------

--
-- Table structure for table `admin_details`
--

CREATE TABLE `admin_details` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `service_location_id` char(36) DEFAULT NULL,
  `first_name` varchar(191) NOT NULL,
  `last_name` varchar(191) DEFAULT NULL,
  `address` text DEFAULT NULL,
  `country` int(10) UNSIGNED DEFAULT NULL,
  `state` varchar(50) DEFAULT NULL,
  `city` varchar(50) DEFAULT NULL,
  `pincode` int(11) DEFAULT NULL,
  `email` varchar(150) NOT NULL,
  `mobile` varchar(14) NOT NULL,
  `created_by` int(10) UNSIGNED DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `admin_details`
--

INSERT INTO `admin_details` (`id`, `user_id`, `service_location_id`, `first_name`, `last_name`, `address`, `country`, `state`, `city`, `pincode`, `email`, `mobile`, `created_by`, `created_at`, `updated_at`, `deleted_at`) VALUES
('04f1208d-4efb-4682-a310-0de9a428e00b', 2, 'fe9bfb11-ab9e-46b1-9771-8cc4c43447e2', 'Admin', NULL, 'Kolkata, WB', 102, 'WB', 'Kolkata', 987458, 'admin@demo.com', '9999999998', 1, '2023-11-08 03:47:43', '2023-11-08 03:47:43', NULL),
('d03d3870-b6eb-4f2a-be85-bef8269fa353', 1, NULL, 'Master', NULL, 'Kolkata, WB', 102, 'WB', 'Kolkata', 987458, 'mira@mxgrab.com', '9999999999', NULL, '2023-11-08 03:14:21', '2024-06-12 02:12:44', NULL),
('ebb12c87-b6d0-4a0d-95ff-0701841ad14a', 5, '63e81adf-18af-4aca-a644-26e3f23928a1', 'Taxi Dispatcher', NULL, 'Mumbai city', 102, 'Maharastra', 'Mumbai', 123456, 'taxidispatcher@demo.com', '9999999991', 1, '2023-11-20 05:00:35', '2024-06-26 08:22:35', NULL),
('fe7e3069-83ea-4f7e-899c-459a35e32ab7', 6, '63e81adf-18af-4aca-a644-26e3f23928a1', 'Delivery Dispatcher', NULL, 'Kolkata, WB', 102, 'WB', 'Kolkata', 123456, 'deliverydispatcher@demo.com', '9999999992', 1, '2023-11-20 05:03:48', '2024-06-26 08:22:52', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `airports`
--

CREATE TABLE `airports` (
  `id` char(36) NOT NULL,
  `service_location_id` char(36) NOT NULL,
  `name` varchar(191) NOT NULL,
  `coordinates` multipolygon DEFAULT NULL,
  `lat` double(15,8) DEFAULT NULL,
  `lng` double(15,8) DEFAULT NULL,
  `airport_surge_fee` double(10,2) NOT NULL DEFAULT 0.00,
  `company_key` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `banner_images`
--

CREATE TABLE `banner_images` (
  `id` char(36) NOT NULL,
  `image` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `cancellation_reasons`
--

CREATE TABLE `cancellation_reasons` (
  `id` char(36) NOT NULL,
  `company_key` varchar(191) DEFAULT NULL,
  `user_type` enum('user','driver') NOT NULL,
  `transport_type` enum('taxi','delivery','both') DEFAULT NULL,
  `payment_type` enum('free','compensate') NOT NULL,
  `arrival_status` enum('before','after') NOT NULL,
  `reason` text NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `cancellation_reasons`
--

INSERT INTO `cancellation_reasons` (`id`, `company_key`, `user_type`, `transport_type`, `payment_type`, `arrival_status`, `reason`, `active`, `created_at`, `updated_at`, `deleted_at`) VALUES
('055f9dd8-db63-4169-9c9e-cec72b90afd2', NULL, 'driver', 'taxi', 'compensate', 'after', 'User Too Late', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22', NULL),
('19fc16c1-093a-4f5d-85f0-f447bdb0ca21', NULL, 'user', 'taxi', 'free', 'before', 'Waiting for driver long Time', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22', NULL),
('3f175f9d-f8e4-4ce9-9c58-a3e721273eca', NULL, 'driver', 'delivery', 'free', 'after', 'User Not Receive Calls', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22', NULL),
('43dcb07a-4702-4162-8d2a-7e0466099f98', NULL, 'driver', 'taxi', 'free', 'before', 'User Cancelled', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22', NULL),
('559f7e40-4c46-476c-8e0e-7048c31f6c69', NULL, 'user', 'delivery', 'free', 'after', 'Too late TO ARRIVE', 1, '2024-10-03 02:40:29', '2024-10-03 02:40:29', NULL),
('6070dd14-028c-4d2b-8867-da52098bf4a0', NULL, 'user', 'delivery', 'free', 'after', 'Driver Drinked', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22', NULL),
('7bb64df0-ee4d-49be-b75f-da80ba056803', NULL, 'driver', 'delivery', 'compensate', 'after', 'User Too Late', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22', NULL),
('7bc76089-8667-4e46-8d32-4d70b2324d92', NULL, 'driver', 'delivery', 'free', 'before', 'User Cancelled', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22', NULL),
('9a6f544c-3d02-4c00-9d5e-ab41148dab84', NULL, 'driver', 'taxi', 'compensate', 'before', 'Self Cancelation', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22', NULL),
('a192f9e6-a685-4ba1-9ccf-e4edc52b4fec', NULL, 'user', 'delivery', 'compensate', 'after', 'Driver Too Late', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22', NULL),
('a7cda546-b27e-400e-aee8-1cc4985690b8', NULL, 'user', 'taxi', 'compensate', 'before', 'Self Cancelation', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22', NULL),
('cda589de-618c-4d10-834d-aa28d92d9c86', NULL, 'driver', 'taxi', 'free', 'after', 'User Not Receive Calls', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22', NULL),
('e2a96837-8891-4fee-a59f-c77444cde293', NULL, 'user', 'delivery', 'free', 'before', 'Waiting for driver long Time', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22', NULL),
('eed787b1-bc44-419f-8b6b-a049c433c954', NULL, 'user', 'delivery', 'compensate', 'before', 'Self Cancelation', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22', NULL),
('f2d45261-2dea-49f4-972e-935e90627730', NULL, 'driver', 'delivery', 'compensate', 'before', 'Self Cancelation', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22', NULL),
('f70d1247-7bdb-4a3b-b8cd-f0e3ff31851d', NULL, 'user', 'taxi', 'free', 'after', 'Driver Drinked', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22', NULL),
('fb00adce-79e5-4949-83f8-b1587d35a155', NULL, 'user', 'taxi', 'compensate', 'after', 'Driver Too Late', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `card_info`
--

CREATE TABLE `card_info` (
  `id` char(36) NOT NULL,
  `customer_id` varchar(191) NOT NULL,
  `merchant_id` varchar(191) NOT NULL,
  `card_token` varchar(191) NOT NULL,
  `valid_through` varchar(191) NOT NULL,
  `last_number` int(11) NOT NULL,
  `card_type` varchar(191) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  `user_role` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `car_makes`
--

CREATE TABLE `car_makes` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `vehicle_make_for` enum('taxi','motor_bike','truck') DEFAULT NULL,
  `transport_type` enum('taxi','delivery','both') DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `car_makes`
--

INSERT INTO `car_makes` (`id`, `name`, `vehicle_make_for`, `transport_type`, `active`, `created_at`, `updated_at`) VALUES
(1, 'Acura', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2024-10-01 10:23:09'),
(2, 'Alfa Romeo', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(3, 'Aston Martin', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(4, 'Audi', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(5, 'BMW', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(6, 'Bentley', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(7, 'Buick', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(8, 'Cadillac', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(9, 'Chevrolet', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(10, 'Chrysler', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(11, 'Dodge', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(12, 'FIAT', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(13, 'Ferrari', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(14, 'Fisker', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(15, 'Ford', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(16, 'GMC', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(17, 'HUMMER', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(18, 'Honda', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(19, 'Hyundai', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(20, 'INFINITI', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(21, 'Isuzu', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(22, 'Jaguar', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(23, 'Jeep', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(24, 'Kia', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(25, 'Land Rover', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(26, 'Lexus', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(27, 'Lincoln', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(28, 'MINI', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(29, 'Maserati', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(30, 'Mazda', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(31, 'Mercedes-Benz', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(32, 'Mercury', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(33, 'Mitsubishi', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(34, 'Nissan', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(35, 'Oldsmobile', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(36, 'Plymouth', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(37, 'Pontiac', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(38, 'Porsche', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(39, 'Ram', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(40, 'Rolls-Royce', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(41, 'Saab', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(42, 'Saturn', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(43, 'Scion', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(44, 'Subaru', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(45, 'Suzuki', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(46, 'Tesla', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(47, 'Toyota', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(48, 'Volkswagen', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(49, 'Volvo', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(50, 'smart', 'taxi', 'taxi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(51, 'Aprilia', 'motor_bike', 'both', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(52, 'Bajaj', 'motor_bike', 'both', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(53, 'Tata', 'truck', 'delivery', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(54, 'Ashok Leyland', 'truck', 'delivery', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(55, 'New Vehicle', 'taxi', 'taxi', 1, '2024-10-03 02:24:17', '2024-10-03 02:24:17');

-- --------------------------------------------------------

--
-- Table structure for table `car_models`
--

CREATE TABLE `car_models` (
  `id` int(10) UNSIGNED NOT NULL,
  `make_id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `car_models`
--

INSERT INTO `car_models` (`id`, `make_id`, `name`, `active`, `created_at`, `updated_at`) VALUES
(1, 1, 'CL', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(2, 1, 'ILX', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(3, 1, 'Integra', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(4, 1, 'Legend', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(5, 1, 'MDX', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(6, 1, 'NSX', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(7, 1, 'RDX', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(8, 1, 'RL', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(9, 1, 'RLX', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(10, 1, 'RSX', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(11, 1, 'TL', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(12, 1, 'TLX', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(13, 1, 'TSX', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(14, 2, '4C', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(15, 2, 'Giulia', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(16, 2, 'Stelvio', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(17, 3, 'V8 Vantage', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(18, 4, 'A3', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(19, 4, 'A4', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(20, 4, 'A5', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(21, 4, 'A6', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(22, 4, 'A7', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(23, 4, 'A8', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(24, 4, 'Allroad', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(25, 4, 'F250', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(26, 4, 'Q3', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(27, 4, 'Q5', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(28, 4, 'Q7', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(29, 4, 'Q8', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(30, 4, 'R8', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(31, 4, 'RS 3', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(32, 4, 'RS 5', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(33, 4, 'RS 7', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(34, 4, 'RS5', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(35, 4, 'S3', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(36, 4, 'S4', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(37, 4, 'S5', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(38, 4, 'S6', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(39, 4, 'S7', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(40, 4, 'S8', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(41, 4, 'SQ5', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(42, 4, 'TT', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(43, 4, 'TTS', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(44, 5, '1 Series', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(45, 5, '2 Series', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(46, 5, '230i', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(47, 5, '3 Series', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(48, 5, '330i', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(49, 5, '4 Series', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(50, 5, '440i', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(51, 5, '5 Series', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(52, 5, '530e', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(53, 5, '530i', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(54, 5, '540i', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(55, 5, '6 Series', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(56, 5, '640xi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(57, 5, '7-Series', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(58, 5, '740e', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(59, 5, '740i', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(60, 5, '750XI', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(61, 5, 'M2', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(62, 5, 'M240i', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(63, 5, 'M3', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(64, 5, 'M340XI', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(65, 5, 'M340i', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(66, 5, 'M4', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(67, 5, 'M5', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(68, 5, 'M550i', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(69, 5, 'M6', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(70, 5, 'M760i', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(71, 5, 'M850i', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(72, 5, 'X1', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(73, 5, 'X2', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(74, 5, 'X3', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(75, 5, 'X4', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(76, 5, 'X5', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(77, 5, 'X5 M', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(78, 5, 'X5 eDrive', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(79, 5, 'X6', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(80, 5, 'X6 M', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(81, 5, 'X7', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(82, 5, 'Z3', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(83, 5, 'Z4', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(84, 5, 'i3', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(85, 5, 'i8', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(86, 6, 'Continental GT', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(87, 6, 'Continental GTC', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(88, 7, 'Cascada', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(89, 7, 'Century', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(90, 7, 'Enclave', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(91, 7, 'Encore', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(92, 7, 'Envision', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(93, 7, 'LaCrosse', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(94, 7, 'LeSabre', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(95, 7, 'Lucerne', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(96, 7, 'Park Avenue', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(97, 7, 'Rainier', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(98, 7, 'Regal', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(99, 7, 'Regal Sportback', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(100, 7, 'Regal Tourx', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(101, 7, 'Rendezvous', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(102, 7, 'Skylark', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(103, 7, 'Terraza', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(104, 7, 'Verano', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(105, 8, 'ATS', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(106, 8, 'ATS-V', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(107, 8, 'Brougham', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(108, 8, 'CT6', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(109, 8, 'CTS', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(110, 8, 'CTS-V', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(111, 8, 'DTS', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(112, 8, 'Deville', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(113, 8, 'ELR', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(114, 8, 'Eldorado', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(115, 8, 'Escalade', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(116, 8, 'SRX', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(117, 8, 'STS', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(118, 8, 'XT4', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(119, 8, 'XT5', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(120, 8, 'XTS', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(121, 9, '3500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(122, 9, '4500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(123, 9, '4500 HD', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(124, 9, '4500xd', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(125, 9, '5500XD', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(126, 9, '5500hd', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(127, 9, 'Astro', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(128, 9, 'Avalanche', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(129, 9, 'Aveo', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(130, 9, 'Black Diamond Avalanche', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(131, 9, 'Blazer', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(132, 9, 'Bolt EV', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(133, 9, 'C/K 10', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(134, 9, 'C/K 1500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(135, 9, 'C/K 2500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(136, 9, 'Camaro', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(137, 9, 'Captiva Sport', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(138, 9, 'Cavalier', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(139, 9, 'Celebrity', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(140, 9, 'Chevy Van', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(141, 9, 'City Express', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(142, 9, 'Classic', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(143, 9, 'Cobalt', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(144, 9, 'Colorado', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(145, 9, 'Corvette', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(146, 9, 'Corvette Stingray', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(147, 9, 'Cruze', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(148, 9, 'Cruze Limited', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(149, 9, 'Equinox', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(150, 9, 'Express', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(151, 9, 'Express 2500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(152, 9, 'Express 3500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(153, 9, 'Express 4500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(154, 9, 'Express Cargo', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(155, 9, 'Gm515 - Silverado', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(156, 9, 'HHR', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(157, 9, 'Impala', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(158, 9, 'Impala Limited', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(159, 9, 'Lumina', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(160, 9, 'Malibu', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(161, 9, 'Malibu Classic', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(162, 9, 'Malibu Limited', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(163, 9, 'Malibu Maxx', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(164, 9, 'Monte Carlo', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(165, 9, 'Prizm', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(166, 9, 'S-10', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(167, 9, 'S10 Pickup', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(168, 9, 'SS', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(169, 9, 'SSR', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(170, 9, 'Silverado', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(171, 9, 'Silverado 1500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(172, 9, 'Silverado 2500HD', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(173, 9, 'Silverado 3500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(174, 9, 'Silverado 3500HD', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(175, 9, 'Silverado HD', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(176, 9, 'Silverado LD', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(177, 9, 'Silverado Legacy', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(178, 9, 'Sonic', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(179, 9, 'Spark', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(180, 9, 'Spark EV', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(181, 9, 'Suburban', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(182, 9, 'TRAVERSE', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(183, 9, 'Tahoe', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(184, 9, 'Tracker', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(185, 9, 'TrailBlazer', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(186, 9, 'TrailBlazer EXT', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(187, 9, 'Traverse', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(188, 9, 'Trax', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(189, 9, 'Uplander', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(190, 9, 'Venture', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(191, 9, 'Volt', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(192, 10, '200', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(193, 10, '300', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(194, 10, '300M', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(195, 10, 'Aspen', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(196, 10, 'Concorde', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(197, 10, 'Crossfire', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(198, 10, 'LHS', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(199, 10, 'PT Cruiser', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(200, 10, 'Pacifica', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(201, 10, 'Sebring', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(202, 10, 'Town & Country', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(203, 10, 'Town and Country', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(204, 10, 'Voyager', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(205, 11, 'Avenger', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(206, 11, 'Caliber', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(207, 11, 'Caravan', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(208, 11, 'Caravan/Grand Caravan', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(209, 11, 'Challenger', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(210, 11, 'Charger', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(211, 11, 'Dakota', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(212, 11, 'Dart', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(213, 11, 'Durango', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(214, 11, 'Grand Caravan', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(215, 11, 'Intrepid', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(216, 11, 'Journey', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(217, 11, 'Magnum', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(218, 11, 'Neon', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(219, 11, 'Nitro', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(220, 11, 'Ram 1500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(221, 11, 'Ram 2500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(222, 11, 'Ram 3500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(223, 11, 'Stratus', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(224, 11, 'Viper', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(225, 12, '124 Spider', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(226, 12, '500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(227, 12, '500L', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(228, 12, '500X', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(229, 12, '500e', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(230, 13, 'California', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(231, 14, 'Karma', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(232, 15, 'C-Max', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(233, 15, 'C-Max Energi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(234, 15, 'Club Wagon', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(235, 15, 'Contour', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(236, 15, 'Crown Victoria', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(237, 15, 'E-350', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(238, 15, 'E-350SD', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(239, 15, 'E-Series Van', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(240, 15, 'E-Series Wagon', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(241, 15, 'EcoSport', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(242, 15, 'Econoline', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(243, 15, 'Econoline Cargo', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(244, 15, 'Econoline Wagon', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(245, 15, 'Edge', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(246, 15, 'Escape', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(247, 15, 'Escort', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(248, 15, 'Excursion', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(249, 15, 'Expedition', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(250, 15, 'Expedition MAX', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(251, 15, 'Explorer', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(252, 15, 'Explorer Sport', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(253, 15, 'Explorer Sport Trac', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(254, 15, 'F-150', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(255, 15, 'F-250', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(256, 15, 'F-250 SD', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(257, 15, 'F-350', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(258, 15, 'F-350 SD', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(259, 15, 'F-450', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(260, 15, 'F-450 SD', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(261, 15, 'F-550', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(262, 15, 'F650', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(263, 15, 'Fiesta', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(264, 15, 'Five Hundred', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(265, 15, 'Flex', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(266, 15, 'Focus', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(267, 15, 'Focus RS', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(268, 15, 'Focus ST', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(269, 15, 'Freestar', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(270, 15, 'Freestyle', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(271, 15, 'Fusion', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(272, 15, 'Fusion Energi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(273, 15, 'Mustang', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(274, 15, 'Mustang SVT Cobra', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(275, 15, 'Ranger', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(276, 15, 'Shelby GT350', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(277, 15, 'Shelby GT500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(278, 15, 'Taurus', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(279, 15, 'Thunderbird', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(280, 15, 'Transit Connect', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(281, 15, 'Transit Van', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(282, 15, 'Transit Wagon', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(283, 15, 'Windstar', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(284, 16, 'Acadia', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(285, 16, 'Acadia Limited', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(286, 16, 'Canyon', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(287, 16, 'Envoy', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(288, 16, 'Envoy XL', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(289, 16, 'Envoy XUV', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(290, 16, 'Jimmy', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(291, 16, 'Safari', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(292, 16, 'Savana', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(293, 16, 'Savana 2500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(294, 16, 'Savana Cargo', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(295, 16, 'Savana VAN', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(296, 16, 'Sierra', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(297, 16, 'Sierra 1500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(298, 16, 'Sierra 2500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(299, 16, 'Sierra 2500HD', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(300, 16, 'Sierra 3500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(301, 16, 'Sierra 3500HD', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(302, 16, 'Sierra C/K 1500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(303, 16, 'Sierra C/K 2500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(304, 16, 'Sierra Limited', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(305, 16, 'Sonoma', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(306, 16, 'Suburban', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(307, 16, 'Terrain', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(308, 16, 'Yukon', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(309, 16, 'Yukon Denali', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(310, 16, 'Yukon XL', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(311, 17, 'H1', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(312, 17, 'H2', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(313, 17, 'H2 SUT', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(314, 17, 'H3', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(315, 18, 'Accord', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(316, 18, 'Accord Crosstour', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(317, 18, 'CBR1000RR', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(318, 18, 'CR-V', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(319, 18, 'CR-Z', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(320, 18, 'Civic', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(321, 18, 'Clarity', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(322, 18, 'Crosstour', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(323, 18, 'Element', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(324, 18, 'Fit', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(325, 18, 'Goldwing', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(326, 18, 'HR-V', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(327, 18, 'Insight', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(328, 18, 'Odyssey', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(329, 18, 'Passport', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(330, 18, 'Passport UV', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(331, 18, 'Pilot', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(332, 18, 'Prelude', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(333, 18, 'Ridgeline', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(334, 18, 'S2000', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(335, 18, 'VT750C2B', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(336, 18, 'VT750CA', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(337, 19, 'Accent', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(338, 19, 'Azera', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(339, 19, 'Elantra', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(340, 19, 'Elantra GT', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(341, 19, 'Elantra Touring', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(342, 19, 'Entourage', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(343, 19, 'Equus', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(344, 19, 'Genesis', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(345, 19, 'Ioniq', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(346, 19, 'Ioniq Electric ', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(347, 19, 'Kona', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(348, 19, 'Santa', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(349, 19, 'Santa FE XL', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(350, 19, 'Santa Fe', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(351, 19, 'Santa Fe Sport', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(352, 19, 'Sonata', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(353, 19, 'Tiburon', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(354, 19, 'Tucson', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(355, 19, 'Veloster', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(356, 19, 'Veracruz', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(357, 20, 'EX', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(358, 20, 'EX35', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(359, 20, 'FX', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(360, 20, 'FX35', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(361, 20, 'G', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(362, 20, 'G Convertible', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(363, 20, 'G Sedan', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(364, 20, 'G20', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(365, 20, 'G35', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(366, 20, 'G37', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(367, 20, 'G37 Convertible', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(368, 20, 'G37 Sedan', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(369, 20, 'I30', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(370, 20, 'I35', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(371, 20, 'J30', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(372, 20, 'JX', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(373, 20, 'M', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(374, 20, 'M35', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(375, 20, 'M37', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(376, 20, 'M45', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(377, 20, 'M56', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(378, 20, 'Q40', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(379, 20, 'Q45', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(380, 20, 'Q50', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(381, 20, 'Q60', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(382, 20, 'Q70', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(383, 20, 'Q70L', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(384, 20, 'QX', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(385, 20, 'QX30', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(386, 20, 'QX4', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(387, 20, 'QX50', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(388, 20, 'QX56', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(389, 20, 'QX60', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(390, 20, 'QX70', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(391, 20, 'QX80', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(392, 21, 'Ascender', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(393, 21, 'Axiom', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(394, 21, 'NPR/ NPR-HD/ NPR-XD', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(395, 21, 'Rodeo', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(396, 21, 'Trooper', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(397, 22, 'E-Pace', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(398, 22, 'F-Pace', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(399, 22, 'F-Type', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(400, 22, 'S-Type', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(401, 22, 'X-Type', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(402, 22, 'XE', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(403, 22, 'XF', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(404, 22, 'XJ', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(405, 22, 'XK', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(406, 23, 'Cherokee', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(407, 23, 'Commander', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(408, 23, 'Compass', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(409, 23, 'Gladiator', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(410, 23, 'Grand Cherokee', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(411, 23, 'Grand Cherokee SRT', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(412, 23, 'Liberty', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(413, 23, 'Patriot', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(414, 23, 'Renegade', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(415, 23, 'Wrangler', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(416, 23, 'Wrangler JK', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(417, 24, 'Amanti', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(418, 24, 'Borrego', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(419, 24, 'Cadenza', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(420, 24, 'Forte', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(421, 24, 'K900', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(422, 24, 'Niro', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(423, 24, 'Optima', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(424, 24, 'Optima/Plug-In', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(425, 24, 'Rio', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(426, 24, 'Rondo', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(427, 24, 'SUV', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(428, 24, 'Sedona', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(429, 24, 'Sorento', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(430, 24, 'Soul', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(431, 24, 'Soul EV', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(432, 24, 'Spectra', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(433, 24, 'Sportage', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(434, 24, 'Stinger', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(435, 24, 'Telluride', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(436, 25, 'Discovery', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(437, 25, 'Discovery Sport', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(438, 25, 'LR2', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(439, 25, 'LR3', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(440, 25, 'LR4', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(441, 25, 'Range Rover', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(442, 25, 'Range Rover Evoque', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(443, 25, 'Range Rover Sport', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(444, 25, 'Range Rover Velar', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(445, 26, 'CT 200h', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(446, 26, 'ES', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(447, 26, 'ES 300', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(448, 26, 'ES 300h', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(449, 26, 'ES 330', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(450, 26, 'ES 350', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(451, 26, 'GS', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(452, 26, 'GS 200t', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(453, 26, 'GS 300', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(454, 26, 'GS 350', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(455, 26, 'GS 430', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(456, 26, 'GS 450h', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(457, 26, 'GX', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(458, 26, 'GX 460', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(459, 26, 'GX 470', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(460, 26, 'GX, LX', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(461, 26, 'HS 250h', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(462, 26, 'IS 200t', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(463, 26, 'IS 250', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(464, 26, 'IS 250 C', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(465, 26, 'IS 300', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(466, 26, 'IS 350', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(467, 26, 'IS 350 C', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(468, 26, 'LC 500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(469, 26, 'LS 400', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(470, 26, 'LS 430', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(471, 26, 'LS 460', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(472, 26, 'LS 500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(473, 26, 'LX 470', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(474, 26, 'LX 570', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(475, 26, 'NX 200t', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(476, 26, 'NX 300', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(477, 26, 'NX 300h', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(478, 26, 'RC 200t', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(479, 26, 'RC 300', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(480, 26, 'RC 350', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(481, 26, 'RC F', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(482, 26, 'RCF', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(483, 26, 'RX 300', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(484, 26, 'RX 330', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(485, 26, 'RX 350', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(486, 26, 'RX 350L', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(487, 26, 'RX 400h', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(488, 26, 'RX 450h', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(489, 26, 'SC 400', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(490, 26, 'SC 430', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(491, 26, 'UX', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(492, 27, 'Aviator', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(493, 27, 'Blackwood', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(494, 27, 'Continental', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(495, 27, 'LS', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(496, 27, 'MKC', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(497, 27, 'MKS', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(498, 27, 'MKT', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(499, 27, 'MKX', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(500, 27, 'MKZ', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(501, 27, 'Mark LT', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(502, 27, 'Mark VIII', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(503, 27, 'Nautilus', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(504, 27, 'Navigator', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(505, 27, 'Town Car', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(506, 27, 'Zephyr', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(507, 28, 'Clubman', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(508, 28, 'Convertible', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(509, 28, 'Cooper', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(510, 28, 'Countryman', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(511, 28, 'Countryman Plug-in', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(512, 28, 'Hardtop 2 Door', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(513, 28, 'Hardtop 4 Door', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(514, 28, 'Roadster', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(515, 29, 'Ghibli', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(516, 29, 'GranTurismo', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(517, 29, 'GranTurismo Convertible', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(518, 29, 'Levante', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(519, 29, 'Quattroporte', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(520, 30, 'B-Series Truck', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(521, 30, 'CX-3', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(522, 30, 'CX-5', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(523, 30, 'CX-7', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(524, 30, 'CX-9', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(525, 30, 'MPV', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(526, 30, 'MX-5 Miata', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(527, 30, 'Mazda3', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(528, 30, 'Mazda5', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(529, 30, 'Mazda6', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(530, 30, 'Mazdaspeed 3', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(531, 30, 'Mazdaspeed3', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(532, 30, 'Millenia', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(533, 30, 'Mx-5', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(534, 30, 'Protege', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(535, 30, 'Protege5', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(536, 30, 'RX-7', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(537, 30, 'RX-8', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(538, 30, 'Tribute', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(539, 31, '420-Class', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(540, 31, '560', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(541, 31, 'A-Class', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(542, 31, 'AMG GT', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(543, 31, 'C-Class', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(544, 31, 'CL-Class', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(545, 31, 'CLA-Class', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(546, 31, 'CLK-Class', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(547, 31, 'CLS', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(548, 31, 'CLS-Class', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(549, 31, 'E-Class', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(550, 31, 'G-Class', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(551, 31, 'GL-Class', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(552, 31, 'GLA-Class', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(553, 31, 'GLC', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(554, 31, 'GLC-Class', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(555, 31, 'GLE', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(556, 31, 'GLE 350', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(557, 31, 'GLE-Class', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(558, 31, 'GLK-Class', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(559, 31, 'GLS-Class', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(560, 31, 'M-Class', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(561, 31, 'Metris', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(562, 31, 'S-Class', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(563, 31, 'SL-Class', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(564, 31, 'SLC - Class', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(565, 31, 'SLC-Class', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(566, 31, 'SLK-Class', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(567, 31, 'Sprinter', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(568, 32, 'Cougar', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(569, 32, 'Grand Marquis', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(570, 32, 'Marauder', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(571, 32, 'Mariner', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(572, 32, 'Milan', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(573, 32, 'Montego', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(574, 32, 'Monterey', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(575, 32, 'Mountaineer', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(576, 32, 'Mystique', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(577, 32, 'Sable', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(578, 32, 'Villager', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(579, 33, 'Diamante', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(580, 33, 'Eclipse', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(581, 33, 'Eclipse Cross', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(582, 33, 'Eclipse Spyder', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(583, 33, 'Endeavor', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(584, 33, 'Galant', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(585, 33, 'Lancer', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(586, 33, 'Lancer Evolution', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(587, 33, 'Lancer Sportback', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(588, 33, 'Mirage', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(589, 33, 'Mirage G4', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(590, 33, 'Montero', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(591, 33, 'Montero Sport', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(592, 33, 'Outlander', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(593, 33, 'Outlander - PHEV', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(594, 33, 'Outlander Sport', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(595, 33, 'Raider', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(596, 34, '200SX', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(597, 34, '350Z', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(598, 34, '370Z', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(599, 34, 'Altima', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(600, 34, 'Armada', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(601, 34, 'Cube', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(602, 34, 'Frontier', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(603, 34, 'GT-R', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(604, 34, 'Juke', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(605, 34, 'Kicks', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(606, 34, 'Leaf', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(607, 34, 'Maxima', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(608, 34, 'Murano', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(609, 34, 'Murano CrossCabriolet', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(610, 34, 'NV', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(611, 34, 'NV Cargo', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(612, 34, 'NV Passenger', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(613, 34, 'NV200', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(614, 34, 'NV3500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(615, 34, 'Pathfinder', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(616, 34, 'Pickup', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(617, 34, 'Quest', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(618, 34, 'Rogue', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(619, 34, 'Rogue Select', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(620, 34, 'Rogue Sport', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(621, 34, 'Rogue Sports', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(622, 34, 'Sentra', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(623, 34, 'Titan', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(624, 34, 'Titan XD', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(625, 34, 'Truck', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(626, 34, 'Versa', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(627, 34, 'Versa Note', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(628, 34, 'Xterra', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(629, 35, '88', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(630, 35, 'Achieva', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(631, 35, 'Alero', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(632, 35, 'Bravada', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(633, 35, 'Intrigue', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(634, 35, 'Silhouette', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(635, 36, 'Grand Voyager', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(636, 36, 'Neon', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(637, 36, 'Voyager', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(638, 37, 'Aztek', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(639, 37, 'Bonneville', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(640, 37, 'Firebird', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(641, 37, 'G5', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(642, 37, 'G6', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(643, 37, 'G8', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(644, 37, 'Grand Am', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(645, 37, 'Grand Prix', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(646, 37, 'Montana', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(647, 37, 'Montana SV6', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(648, 37, 'Solstice', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(649, 37, 'Sunfire', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(650, 37, 'Torrent', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(651, 37, 'Trans Sport', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(652, 37, 'Vibe', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(653, 38, '718', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(654, 38, '718 Boxster', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(655, 38, '718 Cayman', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(656, 38, '911', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(657, 38, '944', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(658, 38, 'Boxster', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(659, 38, 'Cayenne', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(660, 38, 'Cayman', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(661, 38, 'Cayman S', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(662, 38, 'Macan', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(663, 38, 'Panamera', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(664, 39, '1500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(665, 39, '2500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(666, 39, '2500 P', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(667, 39, '3500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(668, 39, '4500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(669, 39, '5500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(670, 39, 'C/V Tradesman', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(671, 39, 'CV Tradesman', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(672, 39, 'Dakota', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(673, 39, 'Laramie', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(674, 39, 'ProMaster 1500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(675, 39, 'ProMaster 2500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(676, 39, 'Promaster Cargo Van', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(677, 39, 'Promaster City', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(678, 40, 'Phantom', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(679, 41, '3-Sep', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(680, 41, '5-Sep', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(681, 41, '9-7X', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(682, 42, 'Aura', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(683, 42, 'ION', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(684, 42, 'L-Series', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(685, 42, 'L300', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(686, 42, 'Outlook', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(687, 42, 'S-Series', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(688, 42, 'SL', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(689, 42, 'Sky', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(690, 42, 'VUE', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(691, 43, 'FR-S', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(692, 43, 'iA', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(693, 43, 'iM', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(694, 43, 'iQ', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(695, 43, 'tC', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(696, 43, 'xA', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(697, 43, 'xB', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(698, 43, 'xD', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(699, 44, 'Ascent', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(700, 44, 'B9 Tribeca', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(701, 44, 'BRZ', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(702, 44, 'Crosstrek', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(703, 44, 'Forester', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(704, 44, 'Impreza', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(705, 44, 'Impreza WRX', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(706, 44, 'Legacy', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(707, 44, 'Legacy Wagon', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(708, 44, 'Outback', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(709, 44, 'Tribeca', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(710, 44, 'WRX', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(711, 44, 'XV Crosstrek', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(712, 45, 'Forenza', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(713, 45, 'GSX-R1000', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(714, 45, 'GSX600F', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(715, 45, 'Grand Vitara', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(716, 45, 'Kizashi', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(717, 45, 'Reno', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(718, 45, 'SX4', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(719, 45, 'Sidekick', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(720, 45, 'XL7', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(721, 46, 'Model 3', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(722, 46, 'Model S', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(723, 46, 'Model X', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(724, 47, '4-Runner', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(725, 47, '4Runner', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(726, 47, '86', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(727, 47, 'Avalon', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(728, 47, 'C-HR', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22');
INSERT INTO `car_models` (`id`, `make_id`, `name`, `active`, `created_at`, `updated_at`) VALUES
(729, 47, 'Camry', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(730, 47, 'Camry Solara', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(731, 47, 'Celica', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(732, 47, 'Corolla', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(733, 47, 'Corolla iM', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(734, 47, 'ECHO', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(735, 47, 'FJ Cruiser', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(736, 47, 'Highlander', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(737, 47, 'Land Cruiser', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(738, 47, 'MR2 Spyder', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(739, 47, 'Matrix', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(740, 47, 'Pickup', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(741, 47, 'Prius', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(742, 47, 'Prius Plug-in', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(743, 47, 'Prius Prime', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(744, 47, 'Prius V', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(745, 47, 'Prius c', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(746, 47, 'RAV4', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(747, 47, 'Sequoia', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(748, 47, 'Sienna', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(749, 47, 'Supra', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(750, 47, 'T100', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(751, 47, 'Tacoma', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(752, 47, 'Tundra', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(753, 47, 'Venza', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(754, 47, 'Yaris', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(755, 47, 'Yaris iA', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(756, 47, 'tC', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(757, 48, 'Arteon', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(758, 48, 'Arteon 2.0T', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(759, 48, 'Atlas', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(760, 48, 'Beetle', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(761, 48, 'Beetle Convertible', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(762, 48, 'CC', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(763, 48, 'Eos', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(764, 48, 'GLI', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(765, 48, 'GTI', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(766, 48, 'Golf', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(767, 48, 'Golf Alltrack', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(768, 48, 'Golf GTI', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(769, 48, 'Golf R', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(770, 48, 'Golf SportWagen', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(771, 48, 'Jetta', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(772, 48, 'Jetta SportWagen', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(773, 48, 'New Beetle', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(774, 48, 'Passat', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(775, 48, 'R32', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(776, 48, 'Rabbit', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(777, 48, 'Routan', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(778, 48, 'Tiguan', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(779, 48, 'Tiguan Limited', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(780, 48, 'Touareg', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(781, 48, 'Touareg 2', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(782, 49, '940', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(783, 49, 'C30', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(784, 49, 'C70', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(785, 49, 'S40', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(786, 49, 'S60', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(787, 49, 'S80', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(788, 49, 'S90', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(789, 49, 'V50', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(790, 49, 'V60', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(791, 49, 'V60 Cross Country', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(792, 49, 'V70', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(793, 49, 'V90', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(794, 49, 'V90 Cross Country', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(795, 49, 'XC60', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(796, 49, 'XC70', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(797, 49, 'XC90', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(798, 50, 'Fortwo', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(799, 51, 'Amico', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(800, 51, 'Area 51', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(801, 51, 'Atlantic 125', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(802, 51, 'Atlantic 250', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(803, 51, 'Atlantic 500', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(804, 51, 'Caponord 1000', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(805, 51, 'Classic 125', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(806, 51, 'Classic 50', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(807, 51, 'Gulliver 50', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(808, 51, 'Habana 125', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(809, 51, 'Habana 50', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(810, 51, 'Leonardo 125', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(811, 51, 'Leonardo 150', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(812, 51, 'Leonardo 250', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(813, 51, 'Leonardo 300', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(814, 51, 'Mcgulliver 50', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(815, 51, 'Moto 6.5', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(816, 51, 'MX 125', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(817, 51, 'MX Super Motard 50', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(818, 51, 'Pegaso 650', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(819, 51, 'Rally 50', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(820, 52, 'Classic SL 125', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(821, 52, 'Classic SL 150', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(822, 52, 'Sprint', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(823, 52, 'Sunny', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(824, 53, 'ACE', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(825, 53, 'ICV Truck', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(826, 53, 'Light Truck', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(827, 53, 'Yodha Pick-up', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(828, 53, 'M&HCV Cargo', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(829, 54, 'Dost', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(830, 54, 'Dost +', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(831, 54, 'BADA Dost', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(832, 54, 'Ecomet 1615', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(833, 54, 'Dost CNG', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(834, 5, 'BMW 1', 1, '2024-10-03 02:24:40', '2024-10-03 02:24:40');

-- --------------------------------------------------------

--
-- Table structure for table `chats`
--

CREATE TABLE `chats` (
  `id` char(36) NOT NULL,
  `message` varchar(191) NOT NULL,
  `from_type` int(11) NOT NULL COMMENT '1:user,2:driver',
  `request_id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `delivered` tinyint(1) NOT NULL DEFAULT 0,
  `seen` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `cities`
--

CREATE TABLE `cities` (
  `id` char(36) NOT NULL,
  `slug` varchar(50) NOT NULL,
  `name` varchar(50) NOT NULL,
  `alias` varchar(50) DEFAULT NULL,
  `display_order` int(10) UNSIGNED DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `state_id` char(36) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `companies`
--

CREATE TABLE `companies` (
  `id` char(36) NOT NULL,
  `admin_id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `owner_name` varchar(191) NOT NULL,
  `vat_number` varchar(191) DEFAULT NULL,
  `mobile` varchar(191) NOT NULL,
  `landline` varchar(14) DEFAULT NULL,
  `email` varchar(150) NOT NULL,
  `address` varchar(500) DEFAULT NULL,
  `postal_code` varchar(500) DEFAULT NULL,
  `state` varchar(50) DEFAULT NULL,
  `city` varchar(50) DEFAULT NULL,
  `country` int(10) UNSIGNED NOT NULL,
  `icon` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `complaints`
--

CREATE TABLE `complaints` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `driver_id` int(10) UNSIGNED DEFAULT NULL,
  `owner_id` char(36) DEFAULT NULL,
  `request_id` char(36) DEFAULT NULL,
  `complaint_type` varchar(191) NOT NULL DEFAULT 'general',
  `complaint_title_id` char(36) NOT NULL,
  `description` longtext NOT NULL,
  `status` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `complaint_titles`
--

CREATE TABLE `complaint_titles` (
  `id` char(36) NOT NULL,
  `company_key` varchar(191) DEFAULT NULL,
  `user_type` enum('user','driver','owner') NOT NULL,
  `complaint_type` varchar(191) NOT NULL DEFAULT 'dispute',
  `title` text NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `complaint_titles`
--

INSERT INTO `complaint_titles` (`id`, `company_key`, `user_type`, `complaint_type`, `title`, `active`, `created_at`, `updated_at`, `deleted_at`) VALUES
('17d26412-a34d-4d67-8812-694e226d4b43', NULL, 'driver', 'General', 'User Not Receive Calls', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22', NULL),
('46edab13-a732-410b-a67a-a6e4ffd16895', NULL, 'user', 'General', 'Vehicle Not Clean', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22', NULL),
('59443670-c123-4409-b6a5-fbe3e3139c2e', NULL, 'driver', 'Request Help', 'User Not In PickUp Point', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22', NULL),
('6c8bf51a-1498-44fe-a571-a32d36268a88', NULL, 'user', 'request_help', 'User Not arriving', 1, '2024-10-03 02:41:00', '2024-10-03 02:41:00', NULL),
('d1d61375-99a3-4391-8f0e-8a3bd57aa8ed', NULL, 'user', 'Request Help', 'Driver Rash Driving', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `countries`
--

CREATE TABLE `countries` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(255) NOT NULL,
  `dial_code` varchar(255) NOT NULL,
  `dial_min_length` int(11) NOT NULL DEFAULT 0,
  `dial_max_length` int(11) NOT NULL DEFAULT 0,
  `code` varchar(255) DEFAULT NULL,
  `currency_name` varchar(191) DEFAULT NULL,
  `currency_code` varchar(191) DEFAULT NULL,
  `currency_symbol` varchar(191) DEFAULT NULL,
  `flag` varchar(255) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `countries`
--

INSERT INTO `countries` (`id`, `name`, `dial_code`, `dial_min_length`, `dial_max_length`, `code`, `currency_name`, `currency_code`, `currency_symbol`, `flag`, `active`, `created_at`, `updated_at`) VALUES
(1, 'Afghanistan', '+93', 7, 14, 'AF', 'afghani', 'AFN', '؋', 'AF.png', 1, NULL, NULL),
(2, 'Albania', '+355', 7, 14, 'AL', 'lek', 'ALL', 'Lek', 'AL.png', 1, NULL, NULL),
(3, 'Antarctica', '+672', 7, 14, 'AQ', '', '', '', 'AQ.png', 1, NULL, NULL),
(4, 'Algeria', '+213', 7, 14, 'DZ', 'Algerian dinar', 'DZD', 'DZD', 'DZ.png', 1, NULL, NULL),
(5, 'American Samoa', '+1', 7, 14, 'AS', 'US dollar', 'USD', '$', 'AS.png', 1, NULL, NULL),
(6, 'Andorra', '+376', 7, 14, 'AD', 'euro', 'EUR', '€', 'AD.png', 1, NULL, NULL),
(7, 'Angola', '+244', 7, 14, 'AO', 'kwanza', 'AOA', 'Kz', 'AO.png', 1, NULL, NULL),
(8, 'Antigua and Barbuda', '+1', 7, 14, 'AG', 'East Caribbean dollar', 'XCD', '$', 'AG.png', 1, NULL, NULL),
(9, 'Azerbaijan', '+994', 7, 14, 'AZ', 'Azerbaijani manat', 'AZN', 'ман', 'AZ.png', 1, NULL, NULL),
(10, 'Argentina', '+54', 7, 14, 'AR', 'Argentine peso', 'ARS', '$', 'AR.png', 1, NULL, NULL),
(11, 'Australia', '+61', 7, 14, 'AU', 'Australian dollar', 'AUD', '$', 'AU.png', 1, NULL, NULL),
(12, 'Austria', '+43', 7, 14, 'AT', 'euro', 'EUR', '€', 'AT.png', 1, NULL, NULL),
(13, 'Bahamas', '+1', 7, 14, 'BS', 'Bahamian dollar', 'BSD', '$', 'BS.png', 1, NULL, NULL),
(14, 'Bahrain', '+973', 7, 14, 'BH', 'Bahraini dinar', 'BHD', 'BHD', 'BH.png', 1, NULL, NULL),
(15, 'Bangladesh', '+880', 7, 14, 'BD', 'taka (inv.)', 'BDT', 'BDT', 'BD.png', 1, NULL, NULL),
(16, 'Armenia', '+374', 7, 14, 'AM', 'dram (inv.)', 'AMD', 'AMD', 'AM.png', 1, NULL, NULL),
(17, 'Barbados', '+1', 7, 14, 'BB', 'Barbados dollar', 'BBD', '$', 'BB.png', 1, NULL, NULL),
(18, 'Belgium', '+32', 7, 14, 'BE', 'euro', 'EUR', '€', 'BE.png', 1, NULL, NULL),
(19, 'Bermuda', '+1', 7, 14, 'BM', 'Bermuda dollar', 'BMD', '$', 'BM.png', 1, NULL, NULL),
(20, 'Bhutan', '+975', 7, 14, 'BT', 'ngultrum (inv.)', 'BTN', 'BTN', 'BT.png', 1, NULL, NULL),
(21, 'Bolivia, Plurinational State of', '+591', 7, 14, 'BO', 'boliviano', 'BOB', '$b', 'BO.png', 1, NULL, NULL),
(22, 'Bosnia and Herzegovina', '+387', 7, 14, 'BA', 'convertible mark', 'BAM', 'KM', 'BA.png', 1, NULL, NULL),
(23, 'Botswana', '+267', 7, 14, 'BW', 'pula (inv.)', 'BWP', 'P', 'BW.png', 1, NULL, NULL),
(24, 'Bouvet Island', '+47', 7, 14, 'BV', '', '', 'kr', 'BV.png', 1, NULL, NULL),
(25, 'Brazil', '+55', 7, 14, 'BR', 'real (pl. reais)', 'BRL', 'R$', 'BR.png', 1, NULL, NULL),
(26, 'Belize', '+501', 7, 14, 'BZ', 'Belize dollar', 'BZD', 'BZ$', 'BZ.png', 1, NULL, NULL),
(27, 'British Indian Ocean Territory', '+246', 7, 14, 'IO', 'US dollar', 'USD', '$', 'IO.png', 1, NULL, NULL),
(28, 'Solomon Islands', '+677', 7, 14, 'SB', 'Solomon Islands dollar', 'SBD', '$', 'SB.png', 1, NULL, NULL),
(29, 'Virgin Islands, British', '+1', 7, 14, 'VG', 'US dollar', 'USD', '$', 'VG.png', 1, NULL, NULL),
(30, 'Brunei Darussalam', '+673', 7, 14, 'BN', 'Brunei dollar', 'BND', '$', 'BN.png', 1, NULL, NULL),
(31, 'Bulgaria', '+359', 7, 14, 'BG', 'lev (pl. leva)', 'BGN', 'лв', 'BG.png', 1, NULL, NULL),
(32, 'Myanmar', '+95', 7, 14, 'MM', 'kyat', 'MMK', 'K', 'MM.png', 1, NULL, NULL),
(33, 'Burundi', '+257', 7, 14, 'BI', 'Burundi franc', 'BIF', 'BIF', 'BI.png', 1, NULL, NULL),
(34, 'Belarus', '+375', 7, 14, 'BY', 'Belarusian rouble', 'BYR', 'p.', 'BY.png', 1, NULL, NULL),
(35, 'Cambodia', '+855', 7, 14, 'KH', 'riel', 'KHR', '៛', 'KH.png', 1, NULL, NULL),
(36, 'Cameroon', '+237', 7, 14, 'CM', 'CFA franc (BEAC)', 'XAF', 'FCF', 'CM.png', 1, NULL, NULL),
(37, 'Canada', '+1', 7, 14, 'CA', 'Canadian dollar', 'CAD', '$', 'CA.png', 1, NULL, NULL),
(38, 'Cape Verde', '+238', 7, 14, 'CV', 'Cape Verde escudo', 'CVE', 'CVE', 'CV.png', 1, NULL, NULL),
(39, 'Cayman Islands', '+1', 7, 14, 'KY', 'Cayman Islands dollar', 'KYD', '$', 'KY.png', 1, NULL, NULL),
(40, 'Central African Republic', '+236', 7, 14, 'CF', 'CFA franc (BEAC)', 'XAF', 'CFA', 'CF.png', 1, NULL, NULL),
(41, 'Sri Lanka', '+94', 7, 14, 'LK', 'Sri Lankan rupee', 'LKR', '₨', 'LK.png', 1, NULL, NULL),
(42, 'Chad', '+235', 7, 14, 'TD', 'CFA franc (BEAC)', 'XAF', 'XAF', 'TD.png', 1, NULL, NULL),
(43, 'Chile', '+56', 7, 14, 'CL', 'Chilean peso', 'CLP', 'CLP', 'CL.png', 1, NULL, NULL),
(44, 'China', '+86', 7, 14, 'CN', 'renminbi-yuan (inv.)', 'CNY', '¥', 'CN.png', 1, NULL, NULL),
(45, 'Taiwan, Province of China', '+886', 7, 14, 'TW', 'new Taiwan dollar', 'TWD', 'NT$', 'TW.png', 1, NULL, NULL),
(46, 'Christmas Island', '+61', 7, 14, 'CX', 'Australian dollar', 'AUD', '$', 'CX.png', 1, NULL, NULL),
(47, 'Cocos (Keeling) Islands', '+61', 7, 14, 'CC', 'Australian dollar', 'AUD', '$', 'CC.png', 1, NULL, NULL),
(48, 'Colombia', '+57', 7, 14, 'CO', 'Colombian peso', 'COP', '$', 'CO.png', 1, NULL, NULL),
(49, 'Comoros', '+269', 7, 14, 'KM', 'Comorian franc', 'KMF', 'KMF', 'KM.png', 1, NULL, NULL),
(50, 'Mayotte', '+262', 7, 14, 'YT', 'euro', 'EUR', '€', 'YT.png', 1, NULL, NULL),
(51, 'Congo', '+242', 7, 14, 'CG', 'CFA franc (BEAC)', 'XAF', 'FCF', 'CG.png', 1, NULL, NULL),
(52, 'Congo, the Democratic Republic of the Congo', '+243', 7, 14, 'CD', 'Congolese franc', 'CDF', 'CDF', 'CD.png', 1, NULL, NULL),
(53, 'Cook Islands', '+682', 7, 14, 'CK', 'New Zealand dollar', 'NZD', '$', 'CK.png', 1, NULL, NULL),
(54, 'Costa Rica', '+506', 7, 14, 'CR', 'Costa Rican colón (pl. colones)', 'CRC', '₡', 'CR.png', 1, NULL, NULL),
(55, 'Croatia', '+385', 7, 14, 'HR', 'kuna (inv.)', 'HRK', 'kn', 'HR.png', 1, NULL, NULL),
(56, 'Cuba', '+53', 7, 14, 'CU', 'Cuban peso', 'CUP', '₱', 'CU.png', 1, NULL, NULL),
(57, 'Cyprus', '+357', 7, 14, 'CY', 'euro', 'EUR', 'CYP', 'CY.png', 1, NULL, NULL),
(58, 'Czech Republic', '+420', 7, 14, 'CZ', 'Czech koruna (pl. koruny)', 'CZK', 'Kč', 'CZ.png', 1, NULL, NULL),
(59, 'Benin', '+229', 7, 14, 'BJ', 'CFA franc (BCEAO)', 'XOF', 'XOF', 'BJ.png', 1, NULL, NULL),
(60, 'Denmark', '+45', 7, 14, 'DK', 'Danish krone', 'DKK', 'kr', 'DK.png', 1, NULL, NULL),
(61, 'Dominica', '+1', 7, 14, 'DM', 'East Caribbean dollar', 'XCD', '$', 'DM.png', 1, NULL, NULL),
(62, 'Dominican Republic', '+1', 7, 14, 'DO', 'Dominican peso', 'DOP', 'RD$', 'DO.png', 1, NULL, NULL),
(63, 'Ecuador', '+593', 7, 14, 'EC', 'US dollar', 'USD', '$', 'EC.png', 1, NULL, NULL),
(64, 'El Salvador', '+503', 7, 14, 'SV', 'Salvadorian colón (pl. colones)', 'SVC', '$', 'SV.png', 1, NULL, NULL),
(65, 'Equatorial Guinea', '+240', 7, 14, 'GQ', 'CFA franc (BEAC)', 'XAF', 'FCF', 'GQ.png', 1, NULL, NULL),
(66, 'Ethiopia', '+251', 7, 14, 'ET', 'birr (inv.)', 'ETB', 'ETB', 'ET.png', 1, NULL, NULL),
(67, 'Eritrea', '+291', 7, 14, 'ER', 'nakfa', 'ERN', 'Nfk', 'ER.png', 1, NULL, NULL),
(68, 'Estonia', '+372', 7, 14, 'EE', 'euro', 'EUR', 'kr', 'EE.png', 1, NULL, NULL),
(69, 'Faroe Islands', '+298', 7, 14, 'FO', 'Danish krone', 'DKK', 'kr', 'FO.png', 1, NULL, NULL),
(70, 'Falkland Islands (Malvinas)', '+500', 7, 14, 'FK', 'Falkland Islands pound', 'FKP', '£', 'FK.png', 1, NULL, NULL),
(71, 'South Georgia and the South Sandwich Islands', '+44', 7, 14, 'GS', '', '', '£', 'GS.png', 1, NULL, NULL),
(72, 'Fiji', '+679', 7, 14, 'FJ', 'Fiji dollar', 'FJD', '$', 'FJ.png', 1, NULL, NULL),
(73, 'Finland', '+358', 7, 14, 'FI', 'euro', 'EUR', '€', 'FI.png', 1, NULL, NULL),
(74, 'France', '+33', 7, 14, 'FR', 'euro', 'EUR', '€', 'FR.png', 1, NULL, NULL),
(75, 'French Guiana', '+594', 7, 14, 'GF', 'euro', 'EUR', '€', 'GF.png', 1, NULL, NULL),
(76, 'French Polynesia', '+689', 7, 14, 'PF', 'CFP franc', 'XPF', 'XPF', 'PF.png', 1, NULL, NULL),
(77, 'French Southern Territories', '+33', 7, 14, 'TF', 'euro', 'EUR', '€', 'TF.png', 1, NULL, NULL),
(78, 'Djibouti', '+253', 7, 14, 'DJ', 'Djibouti franc', 'DJF', 'DJF', 'DJ.png', 1, NULL, NULL),
(79, 'Gabon', '+241', 7, 14, 'GA', 'CFA franc (BEAC)', 'XAF', 'FCF', 'GA.png', 1, NULL, NULL),
(80, 'Georgia', '+995', 7, 14, 'GE', 'lari', 'GEL', 'GEL', 'GE.png', 1, NULL, NULL),
(81, 'Gambia', '+220', 7, 14, 'GM', 'dalasi (inv.)', 'GMD', 'D', 'GM.png', 1, NULL, NULL),
(82, 'Palestinian Territory, Occupied', '+970', 7, 14, 'PS', NULL, NULL, '₪', 'PS.png', 1, NULL, NULL),
(83, 'Germany', '+49', 7, 14, 'DE', 'euro', 'EUR', '€', 'DE.png', 1, NULL, NULL),
(84, 'Ghana', '+233', 7, 14, 'GH', 'Ghana cedi', 'GHS', '¢', 'GH.png', 1, NULL, NULL),
(85, 'Gibraltar', '+350', 7, 14, 'GI', 'Gibraltar pound', 'GIP', '£', 'GI.png', 1, NULL, NULL),
(86, 'Kiribati', '+686', 7, 14, 'KI', 'Australian dollar', 'AUD', '$', 'KI.png', 1, NULL, NULL),
(87, 'Greece', '+30', 7, 14, 'GR', 'euro', 'EUR', '€', 'GR.png', 1, NULL, NULL),
(88, 'Greenland', '+299', 7, 14, 'GL', 'Danish krone', 'DKK', 'kr', 'GL.png', 1, NULL, NULL),
(89, 'Grenada', '+1', 7, 14, 'GD', 'East Caribbean dollar', 'XCD', '$', 'GD.png', 1, NULL, NULL),
(90, 'Guadeloupe', '+590', 7, 14, 'GP', 'euro', 'EUR ', '€', 'GP.png', 1, NULL, NULL),
(91, 'Guam', '+1', 7, 14, 'GU', 'US dollar', 'USD', '$', 'GU.png', 1, NULL, NULL),
(92, 'Guatemala', '+502', 7, 14, 'GT', 'quetzal (pl. quetzales)', 'GTQ', 'Q', 'GT.png', 1, NULL, NULL),
(93, 'Guinea', '+224', 7, 14, 'GN', 'Guinean franc', 'GNF', 'GNF', 'GN.png', 1, NULL, NULL),
(94, 'Guyana', '+592', 7, 14, 'GY', 'Guyana dollar', 'GYD', '$', 'GY.png', 1, NULL, NULL),
(95, 'Haiti', '+509', 7, 14, 'HT', 'gourde', 'HTG', 'G', 'HT.png', 1, NULL, NULL),
(96, 'Heard Island and McDonald Islands', '+61', 7, 14, 'HM', '', '', '$', 'HM.png', 1, NULL, NULL),
(97, 'Holy See (Vatican City State)', '+39', 7, 14, 'VA', 'euro', 'EUR', '€', 'VA.png', 1, NULL, NULL),
(98, 'Honduras', '+504', 7, 14, 'HN', 'lempira', 'HNL', 'L', 'HN.png', 1, NULL, NULL),
(99, 'Hong Kong', '+852', 7, 14, 'HK', 'Hong Kong dollar', 'HKD', '$', 'HK.png', 1, NULL, NULL),
(100, 'Hungary', '+36', 7, 14, 'HU', 'forint (inv.)', 'HUF', 'Ft', 'HU.png', 1, NULL, NULL),
(101, 'Iceland', '+354', 7, 14, 'IS', 'króna (pl. krónur)', 'ISK', 'kr', 'IS.png', 1, NULL, NULL),
(102, 'India', '+91', 7, 14, 'IN', 'Indian rupee', 'INR', '₹', 'IN.png', 1, NULL, NULL),
(103, 'Indonesia', '+62', 7, 14, 'ID', 'Indonesian rupiah (inv.)', 'IDR', 'Rp', 'ID.png', 1, NULL, NULL),
(104, 'Iran, Islamic Republic of', '+98', 7, 14, 'IR', 'Iranian rial', 'IRR', '﷼', 'IR.png', 1, NULL, NULL),
(105, 'Iraq', '+964', 7, 14, 'IQ', 'Iraqi dinar', 'IQD', 'IQD', 'IQ.png', 1, NULL, NULL),
(106, 'Ireland', '+353', 7, 14, 'IE', 'euro', 'EUR', '€', 'IE.png', 1, NULL, NULL),
(107, 'Israel', '+972', 7, 14, 'IL', 'shekel', 'ILS', '₪', 'IL.png', 1, NULL, NULL),
(108, 'Italy', '+39', 7, 14, 'IT', 'euro', 'EUR', '€', 'IT.png', 1, NULL, NULL),
(109, 'Côte d\'Ivoire', '+225', 7, 14, 'CI', 'CFA franc (BCEAO)', 'XOF', 'XOF', 'CI.png', 1, NULL, NULL),
(110, 'Jamaica', '+1', 7, 14, 'JM', 'Jamaica dollar', 'JMD', '$', 'JM.png', 1, NULL, NULL),
(111, 'Japan', '+81', 7, 14, 'JP', 'yen (inv.)', 'JPY', '¥', 'JP.png', 1, NULL, NULL),
(112, 'Kazakhstan', '+7', 7, 14, 'KZ', 'tenge (inv.)', 'KZT', 'лв', 'KZ.png', 1, NULL, NULL),
(113, 'Jordan', '+962', 7, 14, 'JO', 'Jordanian dinar', 'JOD', 'JOD', 'JO.png', 1, NULL, NULL),
(114, 'Kenya', '+254', 7, 14, 'KE', 'Kenyan shilling', 'KES', 'KES', 'KE.png', 1, NULL, NULL),
(115, 'Korea, Democratic People\'s Republic of', '+850', 7, 14, 'KP', 'North Korean won (inv.)', 'KPW', '₩', 'KP.png', 1, NULL, NULL),
(116, 'Korea, Republic of', '+82', 7, 14, 'KR', 'South Korean won (inv.)', 'KRW', '₩', 'KR.png', 1, NULL, NULL),
(117, 'Kuwait', '+965', 7, 14, 'KW', 'Kuwaiti dinar', 'KWD', 'KWD', 'KW.png', 1, NULL, NULL),
(118, 'Kyrgyzstan', '+996', 7, 14, 'KG', 'som', 'KGS', 'лв', 'KG.png', 1, NULL, NULL),
(119, 'Lao People\'s Democratic Republic', '+856', 7, 14, 'LA', 'kip (inv.)', 'LAK', '₭', 'LA.png', 1, NULL, NULL),
(120, 'Lebanon', '+961', 7, 14, 'LB', 'Lebanese pound', 'LBP', '£', 'LB.png', 1, NULL, NULL),
(121, 'Lesotho', '+266', 7, 14, 'LS', 'loti (pl. maloti)', 'LSL', 'L', 'LS.png', 1, NULL, NULL),
(122, 'Latvia', '+371', 7, 14, 'LV', 'euro', 'EUR', 'Ls', 'LV.png', 1, NULL, NULL),
(123, 'Liberia', '+231', 7, 14, 'LR', 'Liberian dollar', 'LRD', '$', 'LR.png', 1, NULL, NULL),
(124, 'Libya', '+218', 7, 14, 'LY', 'Libyan dinar', 'LYD', 'LYD', 'LY.png', 1, NULL, NULL),
(125, 'Liechtenstein', '+423', 7, 14, 'LI', 'Swiss franc', 'CHF', 'CHF', 'LI.png', 1, NULL, NULL),
(126, 'Lithuania', '+370', 7, 14, 'LT', 'euro', 'EUR', 'Lt', 'LT.png', 1, NULL, NULL),
(127, 'Luxembourg', '+352', 7, 14, 'LU', 'euro', 'EUR', '€', 'LU.png', 1, NULL, NULL),
(128, 'Macao', '+853', 7, 14, 'MO', 'pataca', 'MOP', 'MOP', 'MO.png', 1, NULL, NULL),
(129, 'Madagascar', '+261', 7, 14, 'MG', 'ariary', 'MGA', 'MGA', 'MG.png', 1, NULL, NULL),
(130, 'Malawi', '+265', 7, 14, 'MW', 'Malawian kwacha (inv.)', 'MWK', 'MK', 'MW.png', 1, NULL, NULL),
(131, 'Malaysia', '+60', 7, 14, 'MY', 'ringgit (inv.)', 'MYR', 'RM', 'MY.png', 1, NULL, NULL),
(132, 'Maldives', '+960', 7, 14, 'MV', 'rufiyaa', 'MVR', 'Rf', 'MV.png', 1, NULL, NULL),
(133, 'Mali', '+223', 7, 14, 'ML', 'CFA franc (BCEAO)', 'XOF', 'XOF', 'ML.png', 1, NULL, NULL),
(134, 'Malta', '+356', 7, 14, 'MT', 'euro', 'EUR', 'MTL', 'MT.png', 1, NULL, NULL),
(135, 'Martinique', '+596', 7, 14, 'MQ', 'euro', 'EUR', '€', 'MQ.png', 1, NULL, NULL),
(136, 'Mauritania', '+222', 7, 14, 'MR', 'ouguiya', 'MRO', 'UM', 'MR.png', 1, NULL, NULL),
(137, 'Mauritius', '+230', 7, 14, 'MU', 'Mauritian rupee', 'MUR', '₨', 'MU.png', 1, NULL, NULL),
(138, 'Mexico', '+52', 7, 14, 'MX', 'Mexican peso', 'MXN', '$', 'MX.png', 1, NULL, NULL),
(139, 'Monaco', '+377', 7, 14, 'MC', 'euro', 'EUR', '€', 'MC.png', 1, NULL, NULL),
(140, 'Mongolia', '+976', 7, 14, 'MN', 'tugrik', 'MNT', '₮', 'MN.png', 1, NULL, NULL),
(141, 'Moldova, Republic of', '+373', 7, 14, 'MD', 'Moldovan leu (pl. lei)', 'MDL', 'MDL', 'MD.png', 1, NULL, NULL),
(142, 'Montenegro', '+382', 7, 14, 'ME', 'euro', 'EUR', '€', 'ME.png', 1, NULL, NULL),
(143, 'Montserrat', '+1', 7, 14, 'MS', 'East Caribbean dollar', 'XCD', '$', 'MS.png', 1, NULL, NULL),
(144, 'Morocco', '+212', 7, 14, 'MA', 'Moroccan dirham', 'MAD', 'MAD', 'MA.png', 1, NULL, NULL),
(145, 'Mozambique', '+258', 7, 14, 'MZ', 'metical', 'MZN', 'MT', 'MZ.png', 1, NULL, NULL),
(146, 'Oman', '+968', 7, 14, 'OM', 'Omani rial', 'OMR', '﷼', 'OM.png', 1, NULL, NULL),
(147, 'Namibia', '+264', 7, 14, 'NA', 'Namibian dollar', 'NAD', '$', 'NA.png', 1, NULL, NULL),
(148, 'Nauru', '+674', 7, 14, 'NR', 'Australian dollar', 'AUD', '$', 'NR.png', 1, NULL, NULL),
(149, 'Nepal', '+977', 7, 14, 'NP', 'Nepalese rupee', 'NPR', '₨', 'NP.png', 1, NULL, NULL),
(150, 'Netherlands', '+31', 7, 14, 'NL', 'euro', 'EUR', '€', 'NL.png', 1, NULL, NULL),
(151, 'Curaçao', '+599', 7, 14, 'CW', 'Netherlands Antillean guilder (CW1)', 'ANG', NULL, NULL, 1, NULL, NULL),
(152, 'Aruba', '+297', 7, 14, 'AW', 'Aruban guilder', 'AWG', 'ƒ', 'AW.png', 1, NULL, NULL),
(153, 'New Caledonia', '+687', 7, 14, 'NC', 'CFP franc', 'XPF', 'XPF', 'NC.png', 1, NULL, NULL),
(154, 'Vanuatu', '+678', 7, 14, 'VU', 'vatu (inv.)', 'VUV', 'Vt', 'VU.png', 1, NULL, NULL),
(155, 'New Zealand', '+64', 7, 14, 'NZ', 'New Zealand dollar', 'NZD', '$', 'NZ.png', 1, NULL, NULL),
(156, 'Nicaragua', '+505', 7, 14, 'NI', 'córdoba oro', 'NIO', 'C$', 'NI.png', 1, NULL, NULL),
(157, 'Niger', '+227', 7, 14, 'NE', 'CFA franc (BCEAO)', 'XOF', 'XOF', 'NE.png', 1, NULL, NULL),
(158, 'Nigeria', '+234', 7, 14, 'NG', 'naira (inv.)', 'NGN', '₦', 'NG.png', 1, NULL, NULL),
(159, 'Niue', '+683', 7, 14, 'NU', 'New Zealand dollar', 'NZD', '$', 'NU.png', 1, NULL, NULL),
(160, 'Norfolk Island', '+672', 7, 14, 'NF', 'Australian dollar', 'AUD', '$', 'NF.png', 1, NULL, NULL),
(161, 'Norway', '+47', 7, 14, 'NO', 'Norwegian krone (pl. kroner)', 'NOK', 'kr', 'NO.png', 1, NULL, NULL),
(162, 'Northern Mariana Islands', '+1', 7, 14, 'MP', 'US dollar', 'USD', '$', 'MP.png', 1, NULL, NULL),
(163, 'United States Minor Outlying Islands', '+1', 7, 14, 'UM', 'US dollar', 'USD', '$', 'UM.png', 1, NULL, NULL),
(164, 'Micronesia, Federated States of Micronesia', '+691', 7, 14, 'FM', 'US dollar', 'USD', '$', 'FM.png', 1, NULL, NULL),
(165, 'Marshall Islands', '+692', 7, 14, 'MH', 'US dollar', 'USD', '$', 'MH.png', 1, NULL, NULL),
(166, 'Palau', '+680', 7, 14, 'PW', 'US dollar', 'USD', '$', 'PW.png', 1, NULL, NULL),
(167, 'Pakistan', '+92', 7, 14, 'PK', 'Pakistani rupee', 'PKR', '₨', 'PK.png', 1, NULL, NULL),
(168, 'Panama', '+507', 7, 14, 'PA', 'balboa', 'PAB', 'B/.', 'PA.png', 1, NULL, NULL),
(169, 'Papua New Guinea', '+675', 7, 14, 'PG', 'kina (inv.)', 'PGK', 'PGK', 'PG.png', 1, NULL, NULL),
(170, 'Paraguay', '+595', 7, 14, 'PY', 'guaraní', 'PYG', 'Gs', 'PY.png', 1, NULL, NULL),
(171, 'Peru', '+51', 7, 14, 'PE', 'new sol', 'PEN', 'S/.', 'PE.png', 1, NULL, NULL),
(172, 'Philippines', '+63', 7, 14, 'PH', 'Philippine peso', 'PHP', 'Php', 'PH.png', 1, NULL, NULL),
(173, 'Pitcairn', '+649', 7, 14, 'PN', 'New Zealand dollar', 'NZD', '$', 'PN.png', 1, NULL, NULL),
(174, 'Poland', '+48', 7, 14, 'PL', 'zloty', 'PLN', 'zł', 'PL.png', 1, NULL, NULL),
(175, 'Portugal', '+351', 7, 14, 'PT', 'euro', 'EUR', '€', 'PT.png', 1, NULL, NULL),
(176, 'Guinea-Bissau', '+245', 7, 14, 'GW', 'CFA franc (BCEAO)', 'XOF', 'XOF', 'GW.png', 1, NULL, NULL),
(177, 'Timor-Leste', '+670', 7, 14, 'TL', 'US dollar', 'USD', '$', 'TL.png', 1, NULL, NULL),
(178, 'Puerto Rico', '+1', 7, 14, 'PR', 'US dollar', 'USD', '$', 'PR.png', 1, NULL, NULL),
(179, 'Qatar', '+974', 7, 14, 'QA', 'Qatari riyal', 'QAR', '﷼', 'QA.png', 1, NULL, NULL),
(180, 'Reunion', '+262', 7, 14, 'RE', 'euro', 'EUR', '€', 'RE.png', 1, NULL, NULL),
(181, 'Romania', '+40', 7, 14, 'RO', 'Romanian leu (pl. lei)', 'RON', 'lei', 'RO.png', 1, NULL, NULL),
(182, 'Russian Federation', '+7', 7, 14, 'RU', 'Russian rouble', 'RUB', 'руб', 'RU.png', 1, NULL, NULL),
(183, 'Rwanda', '+250', 7, 14, 'RW', 'Rwandese franc', 'RWF', 'RWF', 'RW.png', 1, NULL, NULL),
(184, 'Saint Barthelemy', '+590', 7, 14, 'BL', 'euro', 'EUR', NULL, NULL, 1, NULL, NULL),
(185, 'Saint Helena, Ascension and Tristan da Cunha', '+290', 7, 14, 'SH', 'Saint Helena pound', 'SHP', '£', 'SH.png', 1, NULL, NULL),
(186, 'Saint Kitts and Nevis', '+1', 7, 14, 'KN', 'East Caribbean dollar', 'XCD', '$', 'KN.png', 1, NULL, NULL),
(187, 'Anguilla', '+1', 7, 14, 'AI', 'East Caribbean dollar', 'XCD', '$', 'AI.png', 1, NULL, NULL),
(188, 'Saint Lucia', '+1', 7, 14, 'LC', 'East Caribbean dollar', 'XCD', '$', 'LC.png', 1, NULL, NULL),
(189, 'Saint Martin (French part)', '+590', 7, 14, 'MF', 'euro', 'EUR', NULL, NULL, 1, NULL, NULL),
(190, 'Saint Pierre and Miquelon', '+508', 7, 14, 'PM', 'euro', 'EUR', '€', 'PM.png', 1, NULL, NULL),
(191, 'Saint Vincent and the Grenadines', '+1', 7, 14, 'VC', 'East Caribbean dollar', 'XCD', '$', 'VC.png', 1, NULL, NULL),
(192, 'San Marino', '+378', 7, 14, 'SM', 'euro', 'EUR ', '€', 'SM.png', 1, NULL, NULL),
(193, 'Sao Tome and Principe', '+239', 7, 14, 'ST', 'dobra', 'STD', 'Db', 'ST.png', 1, NULL, NULL),
(194, 'Saudi Arabia', '+966', 7, 14, 'SA', 'riyal', 'SAR', '﷼', 'SA.png', 1, NULL, NULL),
(195, 'Senegal', '+221', 7, 14, 'SN', 'CFA franc (BCEAO)', 'XOF', 'XOF', 'SN.png', 1, NULL, NULL),
(196, 'Serbia', '+381', 7, 14, 'RS', 'Serbian dinar', 'RSD', NULL, NULL, 1, NULL, NULL),
(197, 'Seychelles', '+248', 7, 14, 'SC', 'Seychelles rupee', 'SCR', '₨', 'SC.png', 1, NULL, NULL),
(198, 'Sierra Leone', '+232', 7, 14, 'SL', 'leone', 'SLL', 'Le', 'SL.png', 1, NULL, NULL),
(199, 'Singapore', '+65', 7, 14, 'SG', 'Singapore dollar', 'SGD', '$', 'SG.png', 1, NULL, NULL),
(200, 'Slovakia', '+421', 7, 14, 'SK', 'euro', 'EUR', 'Sk', 'SK.png', 1, NULL, NULL),
(201, 'VietNam', '+84', 7, 14, 'VN', 'dong', 'VND', '₫', 'VN.png', 1, NULL, NULL),
(202, 'Slovenia', '+386', 7, 14, 'SI', 'euro', 'EUR', '€', 'SI.png', 1, NULL, NULL),
(203, 'Somalia', '+252', 7, 14, 'SO', 'Somali shilling', 'SOS', 'S', 'SO.png', 1, NULL, NULL),
(204, 'South Africa', '+27', 7, 14, 'ZA', 'rand', 'ZAR', 'R', 'ZA.png', 1, NULL, NULL),
(205, 'Zimbabwe', '+263', 7, 14, 'ZW', 'Zimbabwe dollar (ZW1)', 'ZWL', 'Z$', 'ZW.png', 1, NULL, NULL),
(206, 'Spain', '+34', 7, 14, 'ES', 'euro', 'EUR', '€', 'ES.png', 1, NULL, NULL),
(207, 'South Sudan', '+211', 7, 14, 'SS', 'South Sudanese pound', 'SSP', NULL, 'SD.png', 1, NULL, NULL),
(208, 'Sudan', '+249', 7, 14, 'SD', 'Sudanese pound', 'SDG', NULL, 'SD.png', 1, NULL, NULL),
(209, 'Western Sahara', '+212', 7, 14, 'EH', 'Moroccan dirham', 'MAD', 'MAD', 'EH.png', 1, NULL, NULL),
(210, 'Suriname', '+597', 7, 14, 'SR', 'Surinamese dollar', 'SRD', '$', 'SR.png', 1, NULL, NULL),
(211, 'Svalbard and Jan Mayen', '+47', 7, 14, 'SJ', 'Norwegian krone (pl. kroner)', 'NOK', 'kr', 'SJ.png', 1, NULL, NULL),
(212, 'Swaziland', '+268', 7, 14, 'SZ', 'lilangeni', 'SZL', 'SZL', 'SZ.png', 1, NULL, NULL),
(213, 'Sweden', '+46', 7, 14, 'SE', 'krona (pl. kronor)', 'SEK', 'kr', 'SE.png', 1, NULL, NULL),
(214, 'Switzerland', '+41', 7, 14, 'CH', 'Swiss franc', 'CHF', 'CHF', 'CH.png', 1, NULL, NULL),
(215, 'Syrian Arab Republic', '+963', 7, 14, 'SY', 'Syrian pound', 'SYP', '£', 'SY.png', 1, NULL, NULL),
(216, 'Tajikistan', '+992', 7, 14, 'TJ', 'somoni', 'TJS', 'TJS', 'TJ.png', 1, NULL, NULL),
(217, 'Thailand', '+66', 7, 14, 'TH', 'baht (inv.)', 'THB', '฿', 'TH.png', 1, NULL, NULL),
(218, 'Togo', '+228', 7, 14, 'TG', 'CFA franc (BCEAO)', 'XOF', 'XOF', 'TG.png', 1, NULL, NULL),
(219, 'Tokelau', '+690', 7, 14, 'TK', 'New Zealand dollar', 'NZD', '$', 'TK.png', 1, NULL, NULL),
(220, 'Tonga', '+676', 7, 14, 'TO', 'pa’anga (inv.)', 'TOP', 'T$', 'TO.png', 1, NULL, NULL),
(221, 'Trinidad and Tobago', '+1', 7, 14, 'TT', 'Trinidad and Tobago dollar', 'TTD', 'TT$', 'TT.png', 1, NULL, NULL),
(222, 'United Arab Emirates', '+971', 7, 14, 'AE', 'UAE dirham', 'AED', 'AED', 'AE.png', 1, NULL, NULL),
(223, 'Tunisia', '+216', 7, 14, 'TN', 'Tunisian dinar', 'TND', 'TND', 'TN.png', 1, NULL, NULL),
(224, 'Turkey', '+90', 7, 14, 'TR', 'Turkish lira (inv.)', 'TRY', '₺', 'TR.png', 1, NULL, NULL),
(225, 'Turkmenistan', '+993', 7, 14, 'TM', 'Turkmen manat (inv.)', 'TMT', 'm', 'TM.png', 1, NULL, NULL),
(226, 'Turks and Caicos Islands', '+1', 7, 14, 'TC', 'US dollar', 'USD', '$', 'TC.png', 1, NULL, NULL),
(227, 'Tuvalu', '+688', 7, 14, 'TV', 'Australian dollar', 'AUD', '$', 'TV.png', 1, NULL, NULL),
(228, 'Uganda', '+256', 7, 14, 'UG', 'Uganda shilling', 'UGX', 'UGX', 'UG.png', 1, NULL, NULL),
(229, 'Ukraine', '+380', 7, 14, 'UA', 'hryvnia', 'UAH', '₴', 'UA.png', 1, NULL, NULL),
(230, 'Macedonia, the former Yugoslav Republic of', '+389', 7, 14, 'MK', 'denar (pl. denars)', 'MKD', 'ден', 'MK.png', 1, NULL, NULL),
(231, 'Egypt', '+20', 7, 14, 'EG', 'Egyptian pound', 'EGP', '£', 'EG.png', 1, NULL, NULL),
(232, 'United Kingdom', '+44', 7, 14, 'GB', 'pound sterling', 'GBP', '£', 'GB.png', 1, NULL, NULL),
(233, 'Guernsey', '+44', 7, 14, 'GG', 'Guernsey pound (GG2)', 'GGP (GG2)', NULL, NULL, 1, NULL, NULL),
(234, 'Jersey', '+44', 7, 14, 'JE', 'Jersey pound (JE2)', 'JEP (JE2)', NULL, NULL, 1, NULL, NULL),
(235, 'Isle of Man', '+44', 7, 14, 'IM', 'Manx pound (IM2)', 'IMP (IM2)', NULL, NULL, 1, NULL, NULL),
(236, 'Tanzania, United Republic of', '+255', 7, 14, 'TZ', 'Tanzanian shilling', 'TZS', 'TZS', 'TZ.png', 1, NULL, NULL),
(237, 'United States', '+1', 7, 14, 'US', 'US dollar', 'USD', '$', 'US.png', 1, NULL, NULL),
(238, 'Virgin Islands, U.S.', '+1', 7, 14, 'VI', 'US dollar', 'USD', '$', 'VI.png', 1, NULL, NULL),
(239, 'Burkina Faso', '+226', 7, 14, 'BF', 'CFA franc (BCEAO)', 'XOF', 'XOF', 'BF.png', 1, NULL, NULL),
(240, 'Uruguay', '+598', 7, 14, 'UY', 'Uruguayan peso', 'UYU', '$U', 'UY.png', 1, NULL, NULL),
(241, 'Uzbekistan', '+998', 7, 14, 'UZ', 'sum (inv.)', 'UZS', 'лв', 'UZ.png', 1, NULL, NULL),
(242, 'Venezuela, Bolivarian Republic of', '+58', 7, 14, 'VE', 'bolívar fuerte (pl. bolívares fuertes)', 'VEF', 'Bs', 'VE.png', 1, NULL, NULL),
(243, 'Wallis and Futuna', '+681', 7, 14, 'WF', 'CFP franc', 'XPF', 'XPF', 'WF.png', 1, NULL, NULL),
(244, 'Samoa', '+685', 7, 14, 'WS', 'tala (inv.)', 'WST', 'WS$', 'WS.png', 1, NULL, NULL),
(245, 'Yemen', '+967', 7, 14, 'YE', 'Yemeni rial', 'YER', '﷼', 'YE.png', 1, NULL, NULL),
(246, 'Zambia', '+260', 7, 14, 'ZM', 'Zambian kwacha (inv.)', 'ZMW', 'ZK', 'ZM.png', 1, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `developers`
--

CREATE TABLE `developers` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `first_name` varchar(191) NOT NULL,
  `last_name` varchar(191) DEFAULT NULL,
  `address` text DEFAULT NULL,
  `country` int(10) UNSIGNED NOT NULL,
  `state` varchar(50) DEFAULT NULL,
  `city` varchar(50) DEFAULT NULL,
  `pincode` int(11) NOT NULL,
  `email` varchar(150) NOT NULL,
  `mobile` varchar(14) NOT NULL,
  `team` enum('android','ios','designing','server','testing') NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `distance_matrixes`
--

CREATE TABLE `distance_matrixes` (
  `id` int(10) UNSIGNED NOT NULL,
  `origin_addresses` varchar(191) NOT NULL,
  `origin_lat` double(15,8) NOT NULL DEFAULT 0.00000000,
  `origin_lng` double(15,8) NOT NULL DEFAULT 0.00000000,
  `destination_addresses` varchar(191) NOT NULL,
  `destination_lat` double(15,8) NOT NULL DEFAULT 0.00000000,
  `destination_lng` double(15,8) NOT NULL DEFAULT 0.00000000,
  `distance` varchar(191) NOT NULL,
  `duration` varchar(191) NOT NULL,
  `json_result` text NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `distance_matrixes`
--

INSERT INTO `distance_matrixes` (`id`, `origin_addresses`, `origin_lat`, `origin_lng`, `destination_addresses`, `destination_lat`, `destination_lng`, `distance`, `duration`, `json_result`, `created_at`, `updated_at`) VALUES
(1, '2, छत्रपति शिवाजी अंतर्राष्ट्रीय हवाईअड्डा क्षेत्र, बांद्रा टर्मिनस, विलेपार्ले पूर्व, विले पार्ले, मुंबई, महाराष्ट्र 400099, India', 19.09727280, 72.87473330, 'L N Road, Matunga, Mumbai 400019, Mumbai Central, Mumbai, Maharashtra 400008, India', 18.96953900, 72.81932900, '13.5 mi', '55 mins', '{\"destination_addresses\":[\"L N Road, Matunga, Mumbai 400019, Mumbai Central, Mumbai, Maharashtra 400008, India\"],\"origin_addresses\":[\"2, \\u091b\\u0924\\u094d\\u0930\\u092a\\u0924\\u093f \\u0936\\u093f\\u0935\\u093e\\u091c\\u0940 \\u0905\\u0902\\u0924\\u0930\\u094d\\u0930\\u093e\\u0937\\u094d\\u091f\\u094d\\u0930\\u0940\\u092f \\u0939\\u0935\\u093e\\u0908\\u0905\\u0921\\u094d\\u0921\\u093e \\u0915\\u094d\\u0937\\u0947\\u0924\\u094d\\u0930, \\u092c\\u093e\\u0902\\u0926\\u094d\\u0930\\u093e \\u091f\\u0930\\u094d\\u092e\\u093f\\u0928\\u0938, \\u0935\\u093f\\u0932\\u0947\\u092a\\u093e\\u0930\\u094d\\u0932\\u0947 \\u092a\\u0942\\u0930\\u094d\\u0935, \\u0935\\u093f\\u0932\\u0947 \\u092a\\u093e\\u0930\\u094d\\u0932\\u0947, \\u092e\\u0941\\u0902\\u092c\\u0908, \\u092e\\u0939\\u093e\\u0930\\u093e\\u0937\\u094d\\u091f\\u094d\\u0930 400099, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"13.5 mi\",\"value\":21666},\"duration\":{\"text\":\"38 mins\",\"value\":2307},\"duration_in_traffic\":{\"text\":\"55 mins\",\"value\":3281},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2023-11-09 10:16:44', '2023-11-09 10:16:44'),
(2, 'J92M+P72, Kolkata Station Rd, Belgachia, Kolkata, West Bengal 700004, India', 22.60175210, 88.38313270, '173, VIP Rd, Ramkrishna Pally, Kaikhali, Kolkata, West Bengal 700052, India', 22.63247100, 88.43433200, '6.1 mi', '26 mins', '{\"destination_addresses\":[\"173, VIP Rd, Ramkrishna Pally, Kaikhali, Kolkata, West Bengal 700052, India\"],\"origin_addresses\":[\"J92M+P72, Kolkata Station Rd, Belgachia, Kolkata, West Bengal 700004, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"6.1 mi\",\"value\":9863},\"duration\":{\"text\":\"24 mins\",\"value\":1460},\"duration_in_traffic\":{\"text\":\"26 mins\",\"value\":1540},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2023-11-09 10:18:34', '2023-11-09 10:18:34'),
(3, '50/2A, Cossipore, Newland, College Square, Kolkata, West Bengal 700012, India', 22.57264500, 88.36389330, 'J92M+P72, Kolkata Station Rd, Belgachia, Kolkata, West Bengal 700004, India', 22.60175210, 88.38313270, '3.4 mi', '23 mins', '{\"destination_addresses\":[\"J92M+P72, Kolkata Station Rd, Belgachia, Kolkata, West Bengal 700004, India\"],\"origin_addresses\":[\"50\\/2A, Cossipore, Newland, College Square, Kolkata, West Bengal 700012, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"3.4 mi\",\"value\":5524},\"duration\":{\"text\":\"21 mins\",\"value\":1283},\"duration_in_traffic\":{\"text\":\"23 mins\",\"value\":1404},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2023-11-09 10:23:42', '2023-11-09 10:23:42'),
(4, '89C, Narkeldanga Main Rd, Kadapara, Phool Bagan, Kankurgachi, Kolkata, West Bengal 700054, India', 22.57156920, 88.40202280, '173, VIP Rd, Ramkrishna Pally, Kaikhali, Kolkata, West Bengal 700052, India', 22.63247100, 88.43433200, '6.1 mi', '26 mins', '{\"destination_addresses\":[\"173, VIP Rd, Ramkrishna Pally, Kaikhali, Kolkata, West Bengal 700052, India\"],\"origin_addresses\":[\"89C, Narkeldanga Main Rd, Kadapara, Phool Bagan, Kankurgachi, Kolkata, West Bengal 700054, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"6.1 mi\",\"value\":9808},\"duration\":{\"text\":\"20 mins\",\"value\":1212},\"duration_in_traffic\":{\"text\":\"26 mins\",\"value\":1588},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2023-11-09 10:24:54', '2023-11-09 10:24:54'),
(5, '89C, Narkeldanga Main Rd, Kadapara, Phool Bagan, Kankurgachi, Kolkata, West Bengal 700054, India', 22.57156920, 88.40202280, 'J92M+P72, Kolkata Station Rd, Belgachia, Kolkata, West Bengal 700004, India', 22.60175210, 88.38313270, '3.8 mi', '21 mins', '{\"destination_addresses\":[\"J92M+P72, Kolkata Station Rd, Belgachia, Kolkata, West Bengal 700004, India\"],\"origin_addresses\":[\"89C, Narkeldanga Main Rd, Kadapara, Phool Bagan, Kankurgachi, Kolkata, West Bengal 700054, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"3.8 mi\",\"value\":6132},\"duration\":{\"text\":\"19 mins\",\"value\":1157},\"duration_in_traffic\":{\"text\":\"21 mins\",\"value\":1245},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2023-11-09 10:34:31', '2023-11-09 10:34:31'),
(6, '89c, Narkeldanga Main Rd, Kadapara, Phool Bagan, Kankurgachi, Kolkata, West Bengal 700054, India', 22.57104860, 88.40112550, '7MJCG9V8+PC35, Ward Number 60, Kolkata, West Bengal 700014, India', 22.54421637, 88.36600363, '5.1 mi', '23 mins', '{\"destination_addresses\":[\"7MJCG9V8+PC35, Ward Number 60, Kolkata, West Bengal 700014, India\"],\"origin_addresses\":[\"89c, Narkeldanga Main Rd, Kadapara, Phool Bagan, Kankurgachi, Kolkata, West Bengal 700054, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"5.1 mi\",\"value\":8145},\"duration\":{\"text\":\"19 mins\",\"value\":1120},\"duration_in_traffic\":{\"text\":\"23 mins\",\"value\":1397},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-02-26 04:20:13', '2024-02-26 04:20:13'),
(7, '141, Collin Street Janbazar, Maidan, Dharmatala, B.B.D. Bagh, Kolkata, West Bengal 700016, India', 22.56460810, 88.34326450, 'H83P+M8X, Maidan, Fort William, Hastings, Kolkata, West Bengal 700021, India', 22.55424590, 88.33587440, '2.1 mi', '9 mins', '{\"destination_addresses\":[\"H83P+M8X, Maidan, Fort William, Hastings, Kolkata, West Bengal 700021, India\"],\"origin_addresses\":[\"141, Collin Street Janbazar, Maidan, Dharmatala, B.B.D. Bagh, Kolkata, West Bengal 700016, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"2.1 mi\",\"value\":3429},\"duration\":{\"text\":\"10 mins\",\"value\":616},\"duration_in_traffic\":{\"text\":\"9 mins\",\"value\":524},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-02-28 06:10:13', '2024-02-28 06:10:13'),
(8, '141, Collin Street Janbazar, Maidan, Dharmatala, B.B.D. Bagh, Kolkata, West Bengal 700016, India', 22.56460810, 88.34326450, 'Unnamed Road, Maidan, B.B.D. Bagh, Kolkata, West Bengal 700021, India', 22.56617220, 88.34160740, '0.3 mi', '2 mins', '{\"destination_addresses\":[\"Unnamed Road, Maidan, B.B.D. Bagh, Kolkata, West Bengal 700021, India\"],\"origin_addresses\":[\"141, Collin Street Janbazar, Maidan, Dharmatala, B.B.D. Bagh, Kolkata, West Bengal 700016, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"0.3 mi\",\"value\":505},\"duration\":{\"text\":\"2 mins\",\"value\":124},\"duration_in_traffic\":{\"text\":\"2 mins\",\"value\":124},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-02-28 06:18:51', '2024-02-28 06:18:51'),
(9, '141, Collin Street Janbazar, Maidan, Dharmatala, B.B.D. Bagh, Kolkata, West Bengal 700016, India', 22.56460810, 88.34326450, '508, Netaji Subhash Place, Shakurpur, New Delhi, Delhi, 110034, India', 28.69222240, 77.15067340, '973 mi', '1 day 3 hours', '{\"destination_addresses\":[\"508, Netaji Subhash Place, Shakurpur, New Delhi, Delhi, 110034, India\"],\"origin_addresses\":[\"141, Collin Street Janbazar, Maidan, Dharmatala, B.B.D. Bagh, Kolkata, West Bengal 700016, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"973 mi\",\"value\":1565202},\"duration\":{\"text\":\"1 day 3 hours\",\"value\":95726},\"duration_in_traffic\":{\"text\":\"1 day 3 hours\",\"value\":97948},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-02-28 06:44:25', '2024-02-28 06:44:25'),
(10, '141, Collin Street Janbazar, Maidan, Dharmatala, B.B.D. Bagh, Kolkata, West Bengal 700016, India', 22.56460810, 88.34326450, 'F9J5+833, Netaji Nagar, Kolkata, West Bengal 700040, India', 22.48077000, 88.35767860, '7.3 mi', '40 mins', '{\"destination_addresses\":[\"F9J5+833, Netaji Nagar, Kolkata, West Bengal 700040, India\"],\"origin_addresses\":[\"141, Collin Street Janbazar, Maidan, Dharmatala, B.B.D. Bagh, Kolkata, West Bengal 700016, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"7.3 mi\",\"value\":11790},\"duration\":{\"text\":\"38 mins\",\"value\":2292},\"duration_in_traffic\":{\"text\":\"40 mins\",\"value\":2406},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-02-28 06:45:24', '2024-02-28 06:45:24'),
(11, '141, Harin Bari 1st Ln, Tiretti, Kolkata, West Bengal 700073, India', 22.57575615, 88.35543841, 'H8MP+6W3, Howrah Railway Station, Howrah, West Bengal 711101, India', 22.58300020, 88.33729090, '2.0 mi', '17 mins', '{\"destination_addresses\":[\"H8MP+6W3, Howrah Railway Station, Howrah, West Bengal 711101, India\"],\"origin_addresses\":[\"141, Harin Bari 1st Ln, Tiretti, Kolkata, West Bengal 700073, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"2.0 mi\",\"value\":3271},\"duration\":{\"text\":\"15 mins\",\"value\":884},\"duration_in_traffic\":{\"text\":\"17 mins\",\"value\":1005},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-02-28 06:46:52', '2024-02-28 06:46:52'),
(12, 'H8MP+6W3, Howrah Railway Station, Howrah, West Bengal 711101, India', 22.58300020, 88.33729090, '141, Collin Street Janbazar, Maidan, Dharmatala, B.B.D. Bagh, Kolkata, West Bengal 700016, India', 22.56460810, 88.34326450, '3.1 mi', '21 mins', '{\"destination_addresses\":[\"141, Collin Street Janbazar, Maidan, Dharmatala, B.B.D. Bagh, Kolkata, West Bengal 700016, India\"],\"origin_addresses\":[\"H8MP+6W3, Howrah Railway Station, Howrah, West Bengal 711101, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"3.1 mi\",\"value\":5053},\"duration\":{\"text\":\"16 mins\",\"value\":948},\"duration_in_traffic\":{\"text\":\"21 mins\",\"value\":1288},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-02-28 07:01:24', '2024-02-28 07:01:24'),
(13, '141, Collin Street Janbazar, Maidan, Dharmatala, B.B.D. Bagh, Kolkata, West Bengal 700016, India', 22.56460810, 88.34326450, 'H8MP+6W3, Howrah Railway Station, Howrah, West Bengal 711101, India', 22.58300020, 88.33729090, '2.6 mi', '15 mins', '{\"destination_addresses\":[\"H8MP+6W3, Howrah Railway Station, Howrah, West Bengal 711101, India\"],\"origin_addresses\":[\"141, Collin Street Janbazar, Maidan, Dharmatala, B.B.D. Bagh, Kolkata, West Bengal 700016, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"2.6 mi\",\"value\":4198},\"duration\":{\"text\":\"11 mins\",\"value\":670},\"duration_in_traffic\":{\"text\":\"15 mins\",\"value\":886},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-02-28 07:06:59', '2024-02-28 07:06:59'),
(14, 'Prasad Rare Earth Tower-1, Prasad Rare Earth, Kadapara, Phool Bagan, Kankurgachi, Kolkata, West Bengal 700054, India', 22.57383175, 88.39840941, 'JCRH+PVJ ka Pari, Airport, Motilal Colony, Rajbari, Dum Dum, West Bengal 700079, India', 22.64182760, 88.42963530, '7.3 mi', '27 mins', '{\"destination_addresses\":[\"JCRH+PVJ ka Pari, Airport, Motilal Colony, Rajbari, Dum Dum, West Bengal 700079, India\"],\"origin_addresses\":[\"Prasad Rare Earth Tower-1, Prasad Rare Earth, Kadapara, Phool Bagan, Kankurgachi, Kolkata, West Bengal 700054, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"7.3 mi\",\"value\":11693},\"duration\":{\"text\":\"27 mins\",\"value\":1602},\"duration_in_traffic\":{\"text\":\"27 mins\",\"value\":1599},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-04-06 03:31:26', '2024-04-06 03:31:26'),
(15, '155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', 28.36727492, 77.29382839, 'Unnamed Road, Asola Wild Life Sanctuary, Asola, Haryana 121003, India', 28.46616334, 77.24895269, '11.6 mi', '41 mins', '{\"destination_addresses\":[\"Unnamed Road, Asola Wild Life Sanctuary, Asola, Haryana 121003, India\"],\"origin_addresses\":[\"155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"11.6 mi\",\"value\":18728},\"duration\":{\"text\":\"41 mins\",\"value\":2487},\"duration_in_traffic\":{\"text\":\"41 mins\",\"value\":2459},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-05-28 03:43:12', '2024-05-28 03:43:12'),
(16, '155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', 28.36726843, 77.29389343, '97XR+5P3, Main Bandh Rd, New Industrial Township 3G, Block G, New Industrial Twp 3, New Industrial Township, Faridabad, Haryana 121012, India', 28.39786841, 77.29181372, '3.1 mi', '15 mins', '{\"destination_addresses\":[\"97XR+5P3, Main Bandh Rd, New Industrial Township 3G, Block G, New Industrial Twp 3, New Industrial Township, Faridabad, Haryana 121012, India\"],\"origin_addresses\":[\"155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"3.1 mi\",\"value\":4958},\"duration\":{\"text\":\"14 mins\",\"value\":856},\"duration_in_traffic\":{\"text\":\"15 mins\",\"value\":880},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-05-28 03:44:37', '2024-05-28 03:44:37'),
(17, '2B-24, Block B, New Industrial Twp 2, New Industrial Township, Faridabad, Haryana 121001, India', 28.38247219, 77.29567677, '314, Kapra Colony, Sector 51, Faridabad, Haryana 121005, India', 28.36867359, 77.27646746, '2.3 mi', '14 mins', '{\"destination_addresses\":[\"314, Kapra Colony, Sector 51, Faridabad, Haryana 121005, India\"],\"origin_addresses\":[\"2B-24, Block B, New Industrial Twp 2, New Industrial Township, Faridabad, Haryana 121001, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"2.3 mi\",\"value\":3748},\"duration\":{\"text\":\"14 mins\",\"value\":814},\"duration_in_traffic\":{\"text\":\"14 mins\",\"value\":816},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-05-28 03:46:57', '2024-05-28 03:46:57'),
(18, '155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', 28.36729499, 77.29385991, '657, Badkhal Rd, Sector 21A, Faridabad, Haryana 121001, India', 28.42648378, 77.29575858, '6.2 mi', '19 mins', '{\"destination_addresses\":[\"657, Badkhal Rd, Sector 21A, Faridabad, Haryana 121001, India\"],\"origin_addresses\":[\"155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"6.2 mi\",\"value\":9971},\"duration\":{\"text\":\"18 mins\",\"value\":1092},\"duration_in_traffic\":{\"text\":\"19 mins\",\"value\":1146},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-05-28 03:55:31', '2024-05-28 03:55:31'),
(19, '155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', 28.36728466, 77.29385722, '1, Santosh Nagar, Sector 91, Faridabad, Haryana 121013, India', 28.45858764, 77.31647965, '8.9 mi', '25 mins', '{\"destination_addresses\":[\"1, Santosh Nagar, Sector 91, Faridabad, Haryana 121013, India\"],\"origin_addresses\":[\"155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"8.9 mi\",\"value\":14324},\"duration\":{\"text\":\"25 mins\",\"value\":1493},\"duration_in_traffic\":{\"text\":\"25 mins\",\"value\":1511},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-05-28 03:56:59', '2024-05-28 03:56:59'),
(20, '56 ASP, Air Force Station, Dabua Colony, N.I.T., Ghazipur, Sector 51, Faridabad, Haryana 121005, India', 28.36915918, 77.27531914, '2D-11 WH, NIT, Near Tikona Park Vaishno Devi Mandir, Block D, New Industrial Twp 2, New Industrial Township, Faridabad, Haryana 121001, India', 28.38352288, 77.29226835, '1.8 mi', '12 mins', '{\"destination_addresses\":[\"2D-11 WH, NIT, Near Tikona Park Vaishno Devi Mandir, Block D, New Industrial Twp 2, New Industrial Township, Faridabad, Haryana 121001, India\"],\"origin_addresses\":[\"56 ASP, Air Force Station, Dabua Colony, N.I.T., Ghazipur, Sector 51, Faridabad, Haryana 121005, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"1.8 mi\",\"value\":2955},\"duration\":{\"text\":\"12 mins\",\"value\":690},\"duration_in_traffic\":{\"text\":\"12 mins\",\"value\":710},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-05-28 03:58:22', '2024-05-28 03:58:22'),
(21, '155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', 28.36731652, 77.29386963, '220, Badkhal Village, Faridabad, Haryana 121001, India', 28.40833677, 77.27756314, '3.7 mi', '17 mins', '{\"destination_addresses\":[\"220, Badkhal Village, Faridabad, Haryana 121001, India\"],\"origin_addresses\":[\"155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"3.7 mi\",\"value\":5968},\"duration\":{\"text\":\"19 mins\",\"value\":1114},\"duration_in_traffic\":{\"text\":\"17 mins\",\"value\":1048},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-05-28 04:02:30', '2024-05-28 04:02:30'),
(22, '155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', 28.36724601, 77.29379185, '9888+X9J, YMCA University Campus St, Sector 6, Faridabad, Haryana 121006, India', 28.36750622, 77.31592208, '2.8 mi', '10 mins', '{\"destination_addresses\":[\"9888+X9J, YMCA University Campus St, Sector 6, Faridabad, Haryana 121006, India\"],\"origin_addresses\":[\"155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"2.8 mi\",\"value\":4501},\"duration\":{\"text\":\"11 mins\",\"value\":673},\"duration_in_traffic\":{\"text\":\"10 mins\",\"value\":622},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-06-18 01:54:38', '2024-06-18 01:54:38'),
(23, '119, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', 28.36730797, 77.29395747, '119, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', 28.36730797, 77.29395747, '1 ft', '1 min', '{\"destination_addresses\":[\"119, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India\"],\"origin_addresses\":[\"119, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"1 ft\",\"value\":0},\"duration\":{\"text\":\"1 min\",\"value\":0},\"duration_in_traffic\":{\"text\":\"1 min\",\"value\":0},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-06-18 02:28:24', '2024-06-18 02:28:24'),
(24, '155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', 28.36723008, 77.29382839, '155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', 28.36727492, 77.29387365, '16 ft', '1 min', '{\"destination_addresses\":[\"155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India\"],\"origin_addresses\":[\"155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"16 ft\",\"value\":5},\"duration\":{\"text\":\"1 min\",\"value\":1},\"duration_in_traffic\":{\"text\":\"1 min\",\"value\":0},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-06-18 03:00:44', '2024-06-18 03:00:44'),
(25, '37.4220936,-122.083922', 37.42209360, -122.08392200, '28.423627216855,77.309664487839', 28.42362722, 77.30966449, '0', '0', '{\"destination_addresses\":[\"28.423627216855,77.309664487839\"],\"origin_addresses\":[\"37.4220936,-122.083922\"],\"rows\":[{\"elements\":[{\"status\":\"ZERO_RESULTS\"}]}],\"status\":\"OK\"}', '2024-06-18 03:10:11', '2024-06-18 03:10:11'),
(26, '155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', 28.36729263, 77.29389343, 'Bata Chowk Metro Station, Faridabad, Haryana, India', 28.38579295, 77.31327608, '3.4 mi', '12 mins', '{\"destination_addresses\":[\"Bata Chowk Metro Station, Faridabad, Haryana, India\"],\"origin_addresses\":[\"155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"3.4 mi\",\"value\":5467},\"duration\":{\"text\":\"12 mins\",\"value\":732},\"duration_in_traffic\":{\"text\":\"12 mins\",\"value\":743},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-06-18 03:29:59', '2024-06-18 03:29:59'),
(27, '155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', 28.36727315, 77.29393970, 'Metro Road Block 3f, 48, New Industrial Township 2b, Block F, New Industrial Twp 3, New Industrial Township, Faridabad, Haryana 121001, India', 28.39429084, 77.28678860, '2.3 mi', '11 mins', '{\"destination_addresses\":[\"Metro Road Block 3f, 48, New Industrial Township 2b, Block F, New Industrial Twp 3, New Industrial Township, Faridabad, Haryana 121001, India\"],\"origin_addresses\":[\"155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"2.3 mi\",\"value\":3715},\"duration\":{\"text\":\"11 mins\",\"value\":680},\"duration_in_traffic\":{\"text\":\"11 mins\",\"value\":664},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-06-18 03:38:22', '2024-06-18 03:38:22'),
(28, '155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', 28.36727109, 77.29394440, '1088, Sector 16 Rd, Nirman Kunj, ADB PWD Colony, Sector 16A, Faridabad, Haryana 121002, India', 28.40692094, 77.31809534, '4.9 mi', '19 mins', '{\"destination_addresses\":[\"1088, Sector 16 Rd, Nirman Kunj, ADB PWD Colony, Sector 16A, Faridabad, Haryana 121002, India\"],\"origin_addresses\":[\"155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"4.9 mi\",\"value\":7956},\"duration\":{\"text\":\"18 mins\",\"value\":1090},\"duration_in_traffic\":{\"text\":\"19 mins\",\"value\":1139},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-06-18 03:47:03', '2024-06-18 03:47:03'),
(29, '155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', 28.36727109, 77.29394440, '1088, Sector 16 Rd, Nirman Kunj, ADB PWD Colony, Sector 16A, Faridabad, Haryana 121002, India', 28.40692094, 77.31809534, '4.9 mi', '18 mins', '{\"destination_addresses\":[\"1088, Sector 16 Rd, Nirman Kunj, ADB PWD Colony, Sector 16A, Faridabad, Haryana 121002, India\"],\"origin_addresses\":[\"155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"4.9 mi\",\"value\":7956},\"duration\":{\"text\":\"18 mins\",\"value\":1090},\"duration_in_traffic\":{\"text\":\"18 mins\",\"value\":1052},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-06-19 08:35:42', '2024-06-19 08:35:42'),
(30, 'R465+V99, Ratangarh, Madhya Pradesh 458226, India', 24.81226830, 75.10841478, '73, Schme No. 36 - B, Sai Nath Nagar, Neemuch, Madhya Pradesh 458441, India', 24.47376630, 74.87264970, '34.3 mi', '1 hour 19 mins', '{\"destination_addresses\":[\"73, Schme No. 36 - B, Sai Nath Nagar, Neemuch, Madhya Pradesh 458441, India\"],\"origin_addresses\":[\"R465+V99, Ratangarh, Madhya Pradesh 458226, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"34.3 mi\",\"value\":55209},\"duration\":{\"text\":\"1 hour 21 mins\",\"value\":4861},\"duration_in_traffic\":{\"text\":\"1 hour 19 mins\",\"value\":4716},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-06-26 07:27:30', '2024-06-26 07:27:30'),
(31, 'FC-7041/42, Bandra Kurla Complex Rd, G Block BKC, Bandra Kurla Complex, Bandra East, Mumbai, Maharashtra 400051, India', 19.06878926, 72.87026457, '10, Nausena Vihar, Vidya Vihar West, Kurla West, Mumbai, Maharashtra 400086, India', 19.08173293, 72.89085656, '2.9 mi', '16 mins', '{\"destination_addresses\":[\"10, Nausena Vihar, Vidya Vihar West, Kurla West, Mumbai, Maharashtra 400086, India\"],\"origin_addresses\":[\"FC-7041\\/42, Bandra Kurla Complex Rd, G Block BKC, Bandra Kurla Complex, Bandra East, Mumbai, Maharashtra 400051, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"2.9 mi\",\"value\":4646},\"duration\":{\"text\":\"14 mins\",\"value\":856},\"duration_in_traffic\":{\"text\":\"16 mins\",\"value\":931},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-08-30 14:18:07', '2024-08-30 14:18:07'),
(32, 'HWVP+Q4C, Kashmanah Sarq, Nasr, Aswan Governorate 1277233, Egypt', 24.59422211, 32.93488875, 'JW7W+3V، شارع ٩، Seyalah, Nasr, Aswan Governorate 1277435, Egypt', 24.61210479, 32.94689063, '2.5 mi', '9 mins', '{\"destination_addresses\":[\"JW7W+3V\\u060c \\u0634\\u0627\\u0631\\u0639 \\u0669\\u060c Seyalah, Nasr, Aswan Governorate 1277435, Egypt\"],\"origin_addresses\":[\"HWVP+Q4C, Kashmanah Sarq, Nasr, Aswan Governorate 1277233, Egypt\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"2.5 mi\",\"value\":4027},\"duration\":{\"text\":\"11 mins\",\"value\":665},\"duration_in_traffic\":{\"text\":\"9 mins\",\"value\":555},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-09-01 17:11:29', '2024-09-01 17:11:29'),
(33, '23QP+9VW, Bougtob, Algeria', 34.03848440, 0.08721050, '5329+7QF, El Kheither, Algeria', 34.15061210, 0.06949970, '7.9 mi', '13 mins', '{\"destination_addresses\":[\"5329+7QF, El Kheither, Algeria\"],\"origin_addresses\":[\"23QP+9VW, Bougtob, Algeria\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"7.9 mi\",\"value\":12740},\"duration\":{\"text\":\"13 mins\",\"value\":750},\"duration_in_traffic\":{\"text\":\"13 mins\",\"value\":809},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-09-07 14:54:57', '2024-09-07 14:54:57'),
(34, '16000, Alger Centre 16000, Algeria', 36.77122460, 3.06122440, '23QP+9VW, Bougtob, Algeria', 34.03848440, 0.08721050, '374 mi', '6 hours 43 mins', '{\"destination_addresses\":[\"23QP+9VW, Bougtob, Algeria\"],\"origin_addresses\":[\"16000, Alger Centre 16000, Algeria\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"374 mi\",\"value\":602493},\"duration\":{\"text\":\"6 hours 38 mins\",\"value\":23891},\"duration_in_traffic\":{\"text\":\"6 hours 43 mins\",\"value\":24166},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-09-07 14:59:51', '2024-09-07 14:59:51'),
(35, 'Mumbai Central railway station building, Mumbai Central Railway Station Building, Mumbai Central, Mumbai, Maharashtra 400008, India', 18.96953900, 72.81932900, '8/9, Thane West, Thane, Maharashtra 421302, India', 19.21833070, 72.97808970, '21.8 mi', '1 hour 2 mins', '{\"destination_addresses\":[\"8\\/9, Thane West, Thane, Maharashtra 421302, India\"],\"origin_addresses\":[\"Mumbai Central railway station building, Mumbai Central Railway Station Building, Mumbai Central, Mumbai, Maharashtra 400008, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"21.8 mi\",\"value\":35135},\"duration\":{\"text\":\"1 hour 1 min\",\"value\":3686},\"duration_in_traffic\":{\"text\":\"1 hour 2 mins\",\"value\":3721},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-10-03 02:46:21', '2024-10-03 02:46:21'),
(36, '44/75, Lower Parel, Friends Colony, Hallow Pul, Sector 17, Mumbai, Maharashtra 400705, India', 19.07598370, 72.87765590, '204, Mote Mangal Karyalay Rd, Bhavani Peth, Shobhapur, Kasba Peth, Pune, Maharashtra 411011, India', 18.52043030, 73.85674370, '91.9 mi', '2 hours 53 mins', '{\"destination_addresses\":[\"204, Mote Mangal Karyalay Rd, Bhavani Peth, Shobhapur, Kasba Peth, Pune, Maharashtra 411011, India\"],\"origin_addresses\":[\"44\\/75, Lower Parel, Friends Colony, Hallow Pul, Sector 17, Mumbai, Maharashtra 400705, India\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"91.9 mi\",\"value\":147883},\"duration\":{\"text\":\"2 hours 57 mins\",\"value\":10636},\"duration_in_traffic\":{\"text\":\"2 hours 53 mins\",\"value\":10358},\"status\":\"OK\"}]}],\"status\":\"OK\"}', '2024-10-03 02:57:20', '2024-10-03 02:57:20');

-- --------------------------------------------------------

--
-- Table structure for table `drivers`
--

CREATE TABLE `drivers` (
  `id` int(10) UNSIGNED NOT NULL,
  `uuid` char(36) DEFAULT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `owner_id` char(36) DEFAULT NULL,
  `service_location_id` char(36) NOT NULL,
  `name` varchar(191) NOT NULL,
  `mobile` varchar(191) NOT NULL,
  `email` varchar(150) NOT NULL,
  `address` varchar(500) DEFAULT NULL,
  `state` varchar(50) DEFAULT NULL,
  `city` varchar(50) DEFAULT NULL,
  `country` int(10) UNSIGNED DEFAULT NULL,
  `postal_code` varchar(191) DEFAULT NULL,
  `gender` enum('male','fe-male','others') NOT NULL,
  `vehicle_type` char(36) DEFAULT NULL,
  `route_coordinates` linestring DEFAULT NULL,
  `my_route_address` varchar(191) DEFAULT NULL,
  `my_route_lat` double(15,8) DEFAULT NULL,
  `my_route_lng` double(15,8) DEFAULT NULL,
  `enable_my_route_booking` tinyint(1) NOT NULL DEFAULT 0,
  `vehicle_year` int(11) DEFAULT NULL,
  `fleet_id` char(36) DEFAULT NULL,
  `transport_type` enum('taxi','delivery','both') DEFAULT NULL,
  `car_make` int(10) UNSIGNED DEFAULT NULL,
  `car_model` int(10) UNSIGNED DEFAULT NULL,
  `car_color` varchar(191) DEFAULT NULL,
  `car_number` varchar(191) DEFAULT NULL,
  `today_trip_count` int(11) NOT NULL DEFAULT 0,
  `total_accept` int(11) NOT NULL DEFAULT 0,
  `total_reject` int(11) NOT NULL DEFAULT 0,
  `acceptance_ratio` int(11) NOT NULL DEFAULT 0,
  `last_trip_date` timestamp NULL DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  `approve` tinyint(1) NOT NULL DEFAULT 0,
  `available` tinyint(1) NOT NULL DEFAULT 0,
  `reason` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `drivers`
--

INSERT INTO `drivers` (`id`, `uuid`, `user_id`, `owner_id`, `service_location_id`, `name`, `mobile`, `email`, `address`, `state`, `city`, `country`, `postal_code`, `gender`, `vehicle_type`, `route_coordinates`, `my_route_address`, `my_route_lat`, `my_route_lng`, `enable_my_route_booking`, `vehicle_year`, `fleet_id`, `transport_type`, `car_make`, `car_model`, `car_color`, `car_number`, `today_trip_count`, `total_accept`, `total_reject`, `acceptance_ratio`, `last_trip_date`, `active`, `approve`, `available`, `reason`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'Bt1uINzWxQ', 3, NULL, '63e81adf-18af-4aca-a644-26e3f23928a1', 'Driver Demo', '9876543211', 'driver@demo.com', NULL, NULL, NULL, NULL, NULL, 'male', NULL, 0x000000000102000000d70000000f289b728519564050df32a7cb923640de9387855a195640392861a6ed973640815b77f3541b564016fbcbeec99b3640f2ea1c03b21b5640f86bb2463da43640d3bce3141d1b5640569a94826ea736400d897b2c7d1656407429ae2afba63640a306d3307c1456402ba4fca4daa73640e2afc91af5125640910f7a36abae36407d224f92ae0f56405af0a2af20cd3640ff959526a50c5640fd82ddb06de93640c685032159085640f0164850fc083740b5c35f93350256401d3d7e6fd3273740c53d963e740156402a52616c21303740e09c11a5bdff5540df89592f8632374013d55b035bfb5540c824236761373740ba1457957df75540d7a3703d0a373740f0a7c64b37f555403b014d840d3f37403f575bb1bff455407845f0bf95443740c217265305f355400ef3e505d84737402332ace28dee5540a8a9656b7d5137400ea14acd1ee455402fc03e3a756537404694f6065fe05540cf4e0647c96b37406ccf2c0950dd55403db83b6bb77537408481e7dec3db55407715527e52753740e2e47e87a2d855405b94d920937c374037e0f3c308cf5540fad005f52d9337402d5beb8b84c6554093a9825149a53740d218ada3aac15540793bc269c1ab3740bd5296218ebf55407e74eaca67b13740fbe8d495cfb85540caa65ce15dbe3740088f368e58b755404165fcfb8cc33740bbf2599e07b5554087c43d963ec43740bc57ad4cf8b15540799274cde4c337400b630b410eae5540bb61dba2ccc637403a4030478fa955403f6f2a5261cc37408907944db99e55408e23d6e253d837405305a3923a955540e50aef7211df3740293fa9f6e98c55409ed2c1fa3fe737400dab7823f3885540fa9b508880eb3740b2632310af835540ac1c5a643bf73740bdfbe3bd6a7d5540bc9179e40f06384028f224e99a7755402861a6ed5f1138406f0d6c9560755540f0332e1c0811384008e6e8f17b735540a29c685721153840f758fad005715540b6a1629cbf193840252367614f6b5540d00f2384472338405114e81379625540f8aa9509bf343840e9b7af03e75c55409df4bef1b547384042b28009dc585540b4024356b75238407845f0bf9554554041f163cc5d5b38403b70ce88d2505540fdbca94885613840ab2688ba0f50554080828b153568384060b01bb62d4e5540c251f2ea1c6b3840cb9c2e8b894b55401d2098a3c76f38404209336dff465540637fd93d7978384001c11c3d7e35554066666666668e38408655bc91792a5540689604a8a99d3840c53d963e741f5540276bd44334b23840f623456458175540ae122c0e67be38400569c6a2e9165540ec866d8b32c33840265305a392145540825660c8eac63840815b77f354135540f5b9da8afdcd3840cf66d5e76a1155404f232d95b7d33840ea3e00a94d0e55401288d7f50bde38409c508880430c5540abecbb22f8e7384071e65773800855405dbf60376ceb384053910a630b035540077c7e1821ec38409014916115fd5440931804560ef53840af997cb3cdf554401b9e5e29cb003940a4aa09a2eef15440d99942e7350e3940006f8104c5e954403d9b559fab253940c824236761e554401405fa449e2c394065e42cec69e15440033e3f8c1036394082ad122c0ee154400b98c0adbb3939404b1fbaa0bee15440696ff085c94c39406e8b321b64e254406362f3716d583940f33cb83b6be354400e10ccd1e35f3940ddb5847cd0e35440e0be0e9c336a3940d5ec815660e454407ac2120f287b39409ca223b9fce35440a857ca32c4813940573ecbf3e0e45440a7b393c1518a39402254a9d903e754408b54185b08923940bfb7e9cf7ee654408f705af0a2973940ac5626fc52e55440b77a4e7adf98394020ef552b13e45440d122dbf97ea23940ed647094bce25440897b2c7de8b2394048a7ae7c96e35440573ecbf3e0ce3940eb8b84b69ce354404a0c022b87d639404777103b53e454403d27bd6f7cd53940e4f736fdd9e154402849d74cbed93940bb44f5d6c0de544062105839b4e039407cb8e4b853dc544039d1ae42cae73940008c67d0d0d95440b9fc87f4dbef3940c7d79e5912d854409ace4e0647f939403db83b6bb7d75440624a24d1cb003a4075e5b33c0fd65440d044d8f0f4023a406397a8de1ad25440124e0b5ef4053a408fe4f21fd2d154403f6f2a52610c3a40e0f3c308e1cf544044a852b307123a4075e5b33c0fce5440494be5ed08173a407a7077d66ecd5440815b77f3541f3a40378e588b4fcb54408cf337a110213a40f67af7c77bc95440753c66a0321e3a40de8e705af0c454402d211ff46c163a4027bd6f7cedbd54409bc937dbdc203a403cda38622db8544048bf7d1d38273a406f9eea909baf5440a228d027f2343a409eb5db2e34a754400664af777f3c3a40423ee8d9aca25440713d0ad7a3403a409ca73ae4669e5440aa9a20ea3e483a40d9cef753e397544038bef6cc92503a40541d7233dc945440efe6a90eb9513a4035d252793b925440569a94826e573a4086032159c08e5440c7f484251e603a403659a31ea28954405131cedf84623a406744696ff08554401afa27b858693a4020b58993fb8154402f17f19d986d3a406e693524ee7d54408faa2688ba773a4045f5d6c0567954406c26df6c737b3a400cb08f4e5d755440232d95b7237c3a40a12de7525c715440a8a9656b7d813a40ed815660c86e5440c7116bf129883a4053aef02e176b5440a73ffb91228a3a40af25e4839e675440dd41ec4ca18b3a40c9b08a3732655440cc28965b5a8d3a40ec17ec866d63544042959a3dd0923a4086c954c1a8605440c1e270e657933a40eb39e97de35b54408065a54929983a4012a0a696ad5954407ba01518b29a3a402a5778978b585440605969520aa23a4070b1a206d35454403cf71e2e39a63a40e10b93a982535440f9669b1bd3a33a40ac5626fc525154400ef3e505d8a73a409f71e140484e5440bb61dba2ccae3a40556af6402b4c54402367614f3bb43a40156f641ef94954402041f163ccb53a405a2a6f4738455440ace28dcc23bf3a405d33f9669b4554404ca60a4625c53a404eb9c2bb5c4454402c9ace4e06c73a40ac730cc85e415440b537f8c264ca3a405f5e807d74405440db8afd65f7cc3a40904e5df92c3f544055d97745f0c73a400074982f2f3c54403f52448655c43a4018ec866d8b3854403b70ce88d2c63a407ffb3a70ce3854402cf180b229cf3a40069e7b0f973454404cfdbca948d53a40e388b5f8142c5440d3bce3141dd93a40d66ebbd05c25544022a64412bddc3a40234a7b832f205440ac39403047e73a4044a852b307185440551344dd07e83a4002486de2e4085440551344dd07f03a401973d712f20354408d5da27a6bf03a409a999999990154407f4dd6a887e83a407120240b98fe53404b02d4d4b2e53a4029d027f224fb5340cf66d5e76ae33a40b537f8c264f8534096438b6ce7eb3a40fc8c0b0742f65340a796adf545f23a4030478fdfdbf4534057957d5704ff3a404d327216f6ee5340b806b64ab0083b40c993a46b26eb5340d122dbf97e123b40f302eca353e3534042b28009dc0a3b406ad95a5f24e05340e94317d4b7043b40320395f1efdd53405d33f9669b033b40780b24287edc534012f758fad0fd3a40b4b0a71dfed853400551f70148f53a409296cadb11d65340eeb1f4a10bea3a409161156f64ce5340c6a70018cfe83a40d690b8c7d2c95340ed2aa4fca4ea3a40545227a089c653407f87a2409ff03a40a453573ecbbf5340a4dfbe0e9cfb3a40bf7d1d3867be534053d0ed258d013b40d4484be5edbc5340a453573ecb033b40e5ed08a705b95340ee5f596952023b402ac6f99b50b653400a11700855fa3a40e2016553aeb25340feb7921d1bf93a40130a117008af5340b806b64ab0f83a40ee77280af4ab5340d7dd3cd521f73a40b5e0455f41a853400586ac6ef5fc3a4009336dffcaa253405f07ce1951023b409ab67f65a59d53408cf337a110093b4014b35e0ce5925340fca9f1d24d0a3b40a913d044d88e5340b6db2e34d7113b405396218e758b53405c2041f1631c3b40a72215c616885340d95f764f1e263b4033164d67278753409b5ab6d617293b40c4b12e6ea38753406a6ad95a5f2c3b40849ecdaacf875340ba1457957d373b40bed9e6c6f4845340174850fc18433b4021c84109338353400d71ac8bdb483b4087e123624a805340afeb17ec864d3b40b1a71dfe9a7a5340c66d3480b7503b40bccb457c27785340db334b02d4543b4041d47d0052755340465f419ab1603b40cedf844204725340118dee20766e3b40c47762d68b715340fa0ad28c45833b4000c63368e86f53403f912749d7943b4062a1d634ef6e5340ed647094bcaa3b407ced9925016e5340fc523f6f2aca3b40b1a206d3306e5340e388b5f814d83b40f7e461a1d66a53409b5ab6d617e13b404339d1ae42685340022b8716d9ee3b4085b1852007675340ec6987bf26fb3b407250c24cdb6553402575029a080b3c40cd1e680586645340de02098a1f133c402dec6987bf6453402384471b471c3c4018213cda38645340cb9c2e8b892d3c40d1cb28965b645340598638d6c53d3c4030bb270f0b635340af08feb792553c40fc1873d7126053406fd8b628b3713c40b554de8e705e53408ab0e1e995723c409d2e8b89cd575340d9ebdd1fef853c40c2dd59bbed525340dc68006f81943c40c9022670eb505340166a4df38e933c4080b74082e24f53402bf697dd938f3c40bc74931804505340e99ac937db8c3c40, 'Nehru Place, New Delhi, Delhi, India', 28.55033140, 77.25018930, 0, NULL, NULL, 'taxi', 1, 3, 'red', '8596', 0, 0, 0, 0, NULL, 1, 1, 1, 'profile-info-updated', '2023-11-08 03:57:42', '2024-08-30 14:18:58', NULL),
(2, 'nfyvcyhrcu', 10, '979e8129-cf54-4bed-8dac-acb8af2c0898', 'fe9bfb11-ab9e-46b1-9771-8cc4c43447e2', 'Fleet', '1234567898', 'fleet@demo.com', NULL, NULL, NULL, NULL, NULL, 'male', 'b83fd7f3-a4ac-45a0-9772-d58dcc385a44', NULL, NULL, NULL, NULL, 0, NULL, '245070a7-f999-4c50-b9e0-4c8b60f1172d', 'taxi', 17, 311, 'Black', 'PU 98 NM 7865', 0, 0, 0, 0, NULL, 0, 1, 0, NULL, '2024-03-31 07:40:13', '2024-10-03 02:54:09', NULL),
(3, '8Fz16IPBpE', 15, NULL, '63e81adf-18af-4aca-a644-26e3f23928a1', 'driver test', '8287093441', 'driver6@demo.com', NULL, NULL, NULL, 102, NULL, 'male', NULL, NULL, '155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', 28.36726843, 77.29391690, 0, 2024, NULL, 'taxi', 12, 225, 'red', 'ab1234', 0, 0, 0, 0, NULL, 1, 1, 1, NULL, '2024-05-28 03:40:34', '2024-06-19 08:36:33', NULL),
(4, 'u7zzNwuy1c', 17, NULL, '63e81adf-18af-4aca-a644-26e3f23928a1', 'neha', '7019981944', 'nehaaccn123@gmail.com', NULL, NULL, NULL, 102, NULL, 'male', NULL, NULL, NULL, NULL, NULL, 0, 2016, NULL, 'taxi', 28, 509, 'blue', 'KA16F2016', 0, 0, 0, 0, NULL, 0, 0, 0, NULL, '2024-06-22 05:36:17', '2024-06-22 05:36:17', NULL),
(5, 'zJq3LRpr9b', 18, NULL, '63e81adf-18af-4aca-a644-26e3f23928a1', 'Dr. Benjamin Scott', '1234567895', 'user33@demo.com', NULL, NULL, NULL, NULL, NULL, 'male', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, 'taxi', 2, 16, 'red', '124563', 0, 0, 0, 0, NULL, 0, 1, 0, NULL, '2024-10-03 02:34:37', '2024-10-03 02:35:40', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `driver_availabilities`
--

CREATE TABLE `driver_availabilities` (
  `id` int(10) UNSIGNED NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `is_online` tinyint(1) NOT NULL,
  `online_at` timestamp NULL DEFAULT NULL,
  `offline_at` timestamp NULL DEFAULT NULL,
  `duration` double(8,2) NOT NULL DEFAULT 0.00,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `driver_availabilities`
--

INSERT INTO `driver_availabilities` (`id`, `driver_id`, `is_online`, `online_at`, `offline_at`, `duration`, `created_at`, `updated_at`) VALUES
(1, 1, 0, '2023-11-09 10:12:01', '2023-11-09 10:21:08', 9.00, '2023-11-09 10:12:01', '2023-11-09 10:21:08'),
(2, 1, 0, '2023-11-09 10:21:08', '2023-11-09 10:21:10', 0.00, '2023-11-09 10:21:08', '2023-11-09 10:21:10'),
(3, 1, 0, '2023-11-09 10:21:14', '2023-11-09 10:25:47', 4.00, '2023-11-09 10:21:14', '2023-11-09 10:25:47'),
(4, 1, 1, '2023-11-09 10:25:49', '2023-11-09 10:55:49', 30.00, '2023-11-09 10:25:49', '2024-02-28 06:41:46'),
(5, 1, 0, '2024-02-28 06:11:46', '2024-02-28 05:41:46', 29.00, '2024-02-28 06:41:46', '2024-02-28 06:41:46'),
(6, 1, 1, '2024-02-28 06:41:56', '2024-02-28 07:11:56', 30.00, '2024-02-28 06:41:56', '2024-06-25 11:40:26'),
(7, 3, 1, '2024-05-28 03:42:47', NULL, 0.00, '2024-05-28 03:42:47', '2024-05-28 03:42:47'),
(8, 1, 0, '2024-06-25 11:10:26', '2024-06-25 10:40:26', 29.00, '2024-06-25 11:40:26', '2024-06-25 11:40:26'),
(9, 1, 1, '2024-08-30 14:17:56', NULL, 0.00, '2024-08-30 14:17:56', '2024-08-30 14:17:56');

-- --------------------------------------------------------

--
-- Table structure for table `driver_details`
--

CREATE TABLE `driver_details` (
  `id` char(36) NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `latitude` double(15,8) DEFAULT NULL,
  `longitude` double(15,8) DEFAULT NULL,
  `bearing` double(15,2) DEFAULT NULL,
  `is_socket_connected` tinyint(1) NOT NULL DEFAULT 0,
  `current_zone` char(36) DEFAULT NULL,
  `rating` double(10,2) NOT NULL DEFAULT 0.00,
  `rated_by` int(11) NOT NULL DEFAULT 0,
  `is_company_driver` tinyint(1) NOT NULL DEFAULT 0,
  `company` char(36) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `driver_details`
--

INSERT INTO `driver_details` (`id`, `driver_id`, `latitude`, `longitude`, `bearing`, `is_socket_connected`, `current_zone`, `rating`, `rated_by`, `is_company_driver`, `company`, `created_at`, `updated_at`, `deleted_at`) VALUES
('5c938693-3de3-4f9f-853f-a142ceb0a888', 1, NULL, NULL, NULL, 0, NULL, 0.00, 0, 0, NULL, '2023-11-08 03:57:42', '2023-11-08 03:57:42', NULL),
('a0474914-cfb4-4bf7-b890-0d98f8f8af46', 5, NULL, NULL, NULL, 0, NULL, 0.00, 0, 0, NULL, '2024-10-03 02:34:37', '2024-10-03 02:34:37', NULL),
('b258300c-8c1a-46d6-b376-8cacad258b23', 3, NULL, NULL, NULL, 0, NULL, 0.00, 0, 0, NULL, '2024-05-28 03:40:34', '2024-05-28 03:40:34', NULL),
('b83f4b5b-6ba8-4f0c-a842-adbe4b54a0ec', 2, NULL, NULL, NULL, 0, NULL, 0.00, 0, 0, NULL, '2024-03-31 07:40:13', '2024-03-31 07:40:13', NULL),
('bc519f46-dd45-4dcf-94dd-fdbc3ec7deb8', 4, NULL, NULL, NULL, 0, NULL, 0.00, 0, 0, NULL, '2024-06-22 05:36:18', '2024-06-22 05:36:18', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `driver_documents`
--

CREATE TABLE `driver_documents` (
  `id` char(36) NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `document_id` int(10) UNSIGNED NOT NULL,
  `image` varchar(191) NOT NULL,
  `identify_number` varchar(191) DEFAULT NULL,
  `expiry_date` timestamp NULL DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `document_status` int(11) NOT NULL DEFAULT 2,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `driver_documents`
--

INSERT INTO `driver_documents` (`id`, `driver_id`, `document_id`, `image`, `identify_number`, `expiry_date`, `comment`, `document_status`, `created_at`, `updated_at`, `deleted_at`) VALUES
('274b9e63-eb89-40a8-9c0c-e4f865f36fd9', 2, 1, 'eutFeRAVYBhD93F930shj7bvDWAP2oK4N3yAIr4Y.jpg', NULL, '2024-05-22 22:00:00', NULL, 1, '2024-03-31 07:41:04', '2024-03-31 07:41:16', NULL),
('27ee95d8-74aa-4262-82e1-8d852d8b2d13', 3, 1, 'zm539RG5vc1e0gAsVFqWo9DbLFB2PEJZfXS8wijC.jpg', NULL, '2024-05-27 22:00:00', NULL, 1, '2024-05-28 03:41:22', '2024-05-28 03:42:35', NULL),
('472ff71d-7216-4b8b-a982-22d5b80b2417', 5, 2, '9zFmzvcbLshEl3LaCvKC5s91NE2Jah0nKNxB0aQg.jpg', '1234568526', '2024-10-24 22:00:00', NULL, 1, '2024-10-03 02:35:33', '2024-10-03 02:35:40', NULL),
('73e6d960-3c0d-4683-86b3-5dd4974a7555', 1, 1, '9yPj4ExhRewMkey49iBbsOTIC3GDDchFJadpVrVx.jpg', NULL, '2023-11-08 23:00:00', NULL, 1, '2023-11-09 10:11:54', '2024-04-06 03:31:03', NULL),
('cb702941-646a-47ca-a8b9-dc51418dbf2c', 5, 1, 'wg0ApmulKbvObfxnBiWwOBBAxRHM7iEAFtF9nsMV.jpg', NULL, '2024-11-21 23:00:00', NULL, 1, '2024-10-03 02:35:06', '2024-10-03 02:35:40', NULL),
('d525a0a5-7ef4-4be4-a56b-c762c84a119d', 4, 1, 'FsLmwHSKO98JCCb6MFKxMxWWlzrbEeoXSpwLsKPF.jpg', NULL, '2028-08-16 22:00:00', NULL, 4, '2024-06-22 05:37:21', '2024-06-22 05:39:31', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `driver_enabled_routes`
--

CREATE TABLE `driver_enabled_routes` (
  `id` int(10) UNSIGNED NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `current_lat` double DEFAULT NULL,
  `current_lng` double DEFAULT NULL,
  `current_address` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `driver_enabled_routes`
--

INSERT INTO `driver_enabled_routes` (`id`, `driver_id`, `current_lat`, `current_lng`, `current_address`, `created_at`, `updated_at`) VALUES
(1, 1, 28.499125, 77.23822, NULL, '2024-02-28 06:06:51', '2024-02-28 06:06:51'),
(2, 1, 22.5734406, 88.3987752, NULL, '2024-06-19 13:11:04', '2024-06-19 13:11:04');

-- --------------------------------------------------------

--
-- Table structure for table `driver_needed_documents`
--

CREATE TABLE `driver_needed_documents` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `doc_type` varchar(191) NOT NULL DEFAULT 'image',
  `has_identify_number` tinyint(1) NOT NULL DEFAULT 0,
  `identify_number_locale_key` varchar(191) DEFAULT NULL,
  `account_type` enum('individual','fleet_driver','both') DEFAULT NULL,
  `has_expiry_date` tinyint(1) NOT NULL DEFAULT 0,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `driver_needed_documents`
--

INSERT INTO `driver_needed_documents` (`id`, `name`, `doc_type`, `has_identify_number`, `identify_number_locale_key`, `account_type`, `has_expiry_date`, `active`, `created_at`, `updated_at`) VALUES
(1, 'Driver License', 'image', 0, NULL, 'both', 1, 1, '2023-11-09 10:11:18', '2023-11-09 10:11:18'),
(2, 'Aadhar', 'image', 1, '123456', 'individual', 1, 1, '2024-10-03 02:25:17', '2024-10-03 02:25:17');

-- --------------------------------------------------------

--
-- Table structure for table `driver_privileged_vehicles`
--

CREATE TABLE `driver_privileged_vehicles` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `owner_id` char(36) NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `fleet_id` char(36) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `driver_rejected_requests`
--

CREATE TABLE `driver_rejected_requests` (
  `id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `is_after_accept` tinyint(1) NOT NULL DEFAULT 0,
  `reason` char(36) DEFAULT NULL,
  `custom_reason` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `driver_rejected_requests`
--

INSERT INTO `driver_rejected_requests` (`id`, `request_id`, `driver_id`, `is_after_accept`, `reason`, `custom_reason`, `created_at`, `updated_at`) VALUES
(1, '23728187-48a2-4e1e-8366-6eb06907c098', 1, 0, NULL, NULL, '2024-02-26 04:21:03', '2024-02-26 04:21:03'),
(2, 'ddcce24b-2656-4243-9ba9-5d1893ae4f75', 1, 0, NULL, NULL, '2024-02-28 06:48:31', '2024-02-28 06:48:31'),
(3, '75026baf-9757-4725-82dd-c63d466fc76b', 1, 0, NULL, NULL, '2024-02-28 07:07:09', '2024-02-28 07:07:09'),
(4, 'c608c572-c1cc-4832-936d-a1945d7d5a14', 3, 1, NULL, 'User Too Late', '2024-05-28 03:47:21', '2024-05-28 03:47:21');

-- --------------------------------------------------------

--
-- Table structure for table `driver_subscriptions`
--

CREATE TABLE `driver_subscriptions` (
  `id` char(36) NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `transaction_id` varchar(191) NOT NULL,
  `subscription_type` enum('monthly','yearly') NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `paid_amount` double NOT NULL,
  `expired_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `driver_vehicle_types`
--

CREATE TABLE `driver_vehicle_types` (
  `id` int(10) UNSIGNED NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `vehicle_type` char(36) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `driver_vehicle_types`
--

INSERT INTO `driver_vehicle_types` (`id`, `driver_id`, `vehicle_type`, `created_at`, `updated_at`) VALUES
(6, 3, '55261fd7-b06b-4e64-aaf4-8bff56d00ec2', '2024-05-28 03:40:34', '2024-05-28 03:40:34'),
(7, 1, '55261fd7-b06b-4e64-aaf4-8bff56d00ec2', '2024-06-18 03:25:53', '2024-06-18 03:25:53'),
(8, 1, '9cd9db3b-74c3-41ca-850b-9b4566093ce5', '2024-06-18 03:25:53', '2024-06-18 03:25:53'),
(9, 4, '55261fd7-b06b-4e64-aaf4-8bff56d00ec2', '2024-06-22 05:36:17', '2024-06-22 05:36:17'),
(10, 5, '9cd9db3b-74c3-41ca-850b-9b4566093ce5', '2024-10-03 02:34:37', '2024-10-03 02:34:37');

-- --------------------------------------------------------

--
-- Table structure for table `driver_wallet`
--

CREATE TABLE `driver_wallet` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `amount_added` double(10,2) NOT NULL DEFAULT 0.00,
  `amount_balance` double(10,2) NOT NULL DEFAULT 0.00,
  `amount_spent` double(10,2) NOT NULL DEFAULT 0.00,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `driver_wallet`
--

INSERT INTO `driver_wallet` (`id`, `user_id`, `amount_added`, `amount_balance`, `amount_spent`, `created_at`, `updated_at`) VALUES
('2666b32f-6cd4-4366-9ea9-7bd432511541', 5, 0.00, 0.00, 0.00, '2024-10-03 02:34:37', '2024-10-03 02:34:37'),
('569e764d-a289-4989-b597-6da47bd94707', 4, 0.00, 0.00, 0.00, '2024-06-22 05:36:18', '2024-06-22 05:36:18'),
('656f52af-d395-43dc-8cbb-2cf526137cc0', 1, 0.00, -1244.93, 1244.93, '2023-11-08 03:57:42', '2024-08-30 14:18:58'),
('a4305118-6245-476e-b60e-5e468274a36f', 3, 0.00, -14.00, 14.00, '2024-05-28 03:40:34', '2024-06-18 03:44:09'),
('b7a7ad46-8151-4200-88e6-07b8949d7fad', 2, 0.00, 0.00, 0.00, '2024-03-31 07:40:13', '2024-03-31 07:40:13');

-- --------------------------------------------------------

--
-- Table structure for table `driver_wallet_history`
--

CREATE TABLE `driver_wallet_history` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `card_id` char(36) DEFAULT NULL,
  `request_id` char(36) DEFAULT NULL,
  `refferal_code` varchar(191) DEFAULT NULL,
  `transaction_id` varchar(191) DEFAULT NULL,
  `amount` double(10,2) NOT NULL DEFAULT 0.00,
  `conversion` varchar(191) DEFAULT NULL,
  `merchant` varchar(191) DEFAULT NULL,
  `remarks` varchar(191) DEFAULT NULL,
  `is_credit` tinyint(1) NOT NULL DEFAULT 0,
  `admin_id` char(36) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `driver_wallet_history`
--

INSERT INTO `driver_wallet_history` (`id`, `user_id`, `card_id`, `request_id`, `refferal_code`, `transaction_id`, `amount`, `conversion`, `merchant`, `remarks`, `is_credit`, `admin_id`, `created_at`, `updated_at`) VALUES
('03774030-d269-4249-a909-4fe628843294', 3, NULL, NULL, NULL, '5iIuxZ', 3.00, NULL, NULL, 'Admin Commission For Trip', 0, NULL, '2024-05-28 03:46:09', '2024-05-28 03:46:09'),
('062f891b-86fd-470b-b0a5-09d377f2c044', 1, NULL, NULL, NULL, 'WDUzGO', 1.20, NULL, NULL, 'Admin Commission For Trip', 0, NULL, '2024-02-28 06:57:23', '2024-02-28 06:57:23'),
('089d8e6c-4787-489d-b28e-b256896529da', 1, NULL, NULL, NULL, 'x0wydn', 3.00, NULL, NULL, 'Admin Commission For Trip', 0, NULL, '2024-08-30 14:18:58', '2024-08-30 14:18:58'),
('0bada4cf-a8d2-476e-8737-201fdaa2c789', 1, NULL, NULL, NULL, 'hxT6c5', 1.20, NULL, NULL, 'Admin Commission For Trip', 0, NULL, '2024-04-06 03:32:48', '2024-04-06 03:32:48'),
('3ef3846e-301a-44c6-b513-e7d420d91aeb', 1, NULL, NULL, NULL, 'mAIJf9', 3.58, NULL, NULL, 'Admin Commission For Trip', 0, NULL, '2024-02-28 07:02:00', '2024-02-28 07:02:00'),
('4f8987cc-f03a-4be5-8280-26537f27f9ee', 1, NULL, NULL, NULL, 'G3a3oS', 1.20, NULL, NULL, 'Admin Commission For Trip', 0, NULL, '2023-11-09 10:28:05', '2023-11-09 10:28:05'),
('6b18bd67-1d73-4dd5-b5ad-f6a4294e60c5', 1, NULL, NULL, NULL, '2OjQEx', 1.20, NULL, NULL, 'Admin Commission For Trip', 0, NULL, '2024-02-26 04:23:37', '2024-02-26 04:23:37'),
('9f74902a-6e29-423a-804f-97c3e0b80aec', 1, NULL, NULL, NULL, '03GEIk', 1.20, NULL, NULL, 'Admin Commission For Trip', 0, NULL, '2023-11-09 10:35:19', '2023-11-09 10:35:19'),
('a572ccef-b3c9-4bac-84f6-105c9b45b981', 1, NULL, NULL, NULL, 'FGjdNv', 1229.95, NULL, NULL, 'Admin Commission For Trip', 0, NULL, '2024-02-28 07:08:46', '2024-02-28 07:08:46'),
('aad3681a-8732-45e9-9d03-f3390aa5f6da', 3, NULL, NULL, NULL, 'ErR1UB', 3.00, NULL, NULL, 'Admin Commission For Trip', 0, NULL, '2024-06-18 03:30:44', '2024-06-18 03:30:44'),
('adf15e62-bd31-47ca-9697-c568f3fe6750', 3, NULL, NULL, NULL, 'L8tj7Y', 3.00, NULL, NULL, 'Admin Commission For Trip', 0, NULL, '2024-06-18 03:44:09', '2024-06-18 03:44:09'),
('b916ec51-c23f-4931-a1de-4de6c37262c4', 1, NULL, NULL, NULL, 'JMfwv3', 1.20, NULL, NULL, 'Admin Commission For Trip', 0, NULL, '2023-11-09 10:28:05', '2023-11-09 10:28:05'),
('e4d6c4da-bf5b-4cef-8676-758d794e57fb', 3, NULL, 'c608c572-c1cc-4832-936d-a1945d7d5a14', NULL, 'c608c572-c1cc-4832-936d-a1945d7d5a14', 5.00, NULL, NULL, 'Cancellation Fee', 0, NULL, '2024-05-28 03:47:21', '2024-05-28 03:47:21'),
('fdd671c8-4e71-45d2-bc7a-95bcc2ee7606', 1, NULL, NULL, NULL, 'GV0Bk1', 1.20, NULL, NULL, 'Admin Commission For Trip', 0, NULL, '2024-02-28 06:19:50', '2024-02-28 06:19:50');

-- --------------------------------------------------------

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

CREATE TABLE `failed_jobs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `connection` text NOT NULL,
  `queue` text NOT NULL,
  `payload` longtext NOT NULL,
  `exception` longtext NOT NULL,
  `failed_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

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

CREATE TABLE `faqs` (
  `id` char(36) NOT NULL,
  `company_key` varchar(191) DEFAULT NULL,
  `service_location_id` char(36) NOT NULL,
  `question` longtext NOT NULL,
  `answer` longtext NOT NULL,
  `user_type` enum('user','driver','owner','all') NOT NULL,
  `active` tinyint(1) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `faqs` (`id`, `company_key`, `service_location_id`, `question`, `answer`, `user_type`, `active`, `created_at`, `updated_at`, `deleted_at`) VALUES
('2e765417-7f54-451d-ade8-828059c8abf0', NULL, '63e81adf-18af-4aca-a644-26e3f23928a1', 'Do you offer discounts for group bookings?', 'Yes', 'user', 1, '2024-10-03 02:43:10', '2024-10-03 02:43:10', NULL),
('b40e26f7-aeff-4ced-8a58-1b3d7c50e04c', NULL, '4319c7c1-d9f9-4379-b589-b62493a24cc6', 'test', 'test', 'all', 1, '2024-03-19 05:45:14', '2024-03-19 05:45:14', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `favorite_places`
--

CREATE TABLE `favorite_places` (
  `id` int(10) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `title` varchar(191) DEFAULT NULL,
  `place_id` varchar(191) DEFAULT NULL,
  `address` varchar(191) DEFAULT NULL,
  `latitude` double(15,8) DEFAULT NULL,
  `longitude` double(15,8) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `favourite_locations`
--

CREATE TABLE `favourite_locations` (
  `id` int(10) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `pick_lat` double(15,8) DEFAULT NULL,
  `pick_lng` double(15,8) DEFAULT NULL,
  `drop_lat` double(15,8) DEFAULT NULL,
  `drop_lng` double(15,8) DEFAULT NULL,
  `pick_address` varchar(191) DEFAULT NULL,
  `drop_address` varchar(191) DEFAULT NULL,
  `address_name` varchar(191) DEFAULT NULL,
  `landmark` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `fleets`
--

CREATE TABLE `fleets` (
  `id` char(36) NOT NULL,
  `driver_id` int(10) UNSIGNED DEFAULT NULL,
  `fleet_id` text NOT NULL,
  `qr_image` text DEFAULT NULL,
  `owner_id` int(10) UNSIGNED NOT NULL,
  `brand` int(10) UNSIGNED NOT NULL,
  `model` int(10) UNSIGNED NOT NULL,
  `license_number` varchar(191) NOT NULL,
  `permission_number` varchar(191) NOT NULL,
  `vehicle_type` char(36) NOT NULL,
  `car_color` varchar(191) DEFAULT NULL,
  `class_one` tinyint(1) NOT NULL DEFAULT 0,
  `class_two` tinyint(1) NOT NULL DEFAULT 0,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `approve` tinyint(1) NOT NULL DEFAULT 0,
  `reason` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `fleets`
--

INSERT INTO `fleets` (`id`, `driver_id`, `fleet_id`, `qr_image`, `owner_id`, `brand`, `model`, `license_number`, `permission_number`, `vehicle_type`, `car_color`, `class_one`, `class_two`, `active`, `approve`, `reason`, `created_at`, `updated_at`, `deleted_at`) VALUES
('11131a19-1df5-44bf-9a19-b46ca53b2fe7', NULL, '', NULL, 9, 2, 15, 'sdfs646', '', '55261fd7-b06b-4e64-aaf4-8bff56d00ec2', NULL, 0, 0, 1, 0, NULL, '2024-09-07 15:01:12', '2024-09-07 15:01:12', NULL),
('245070a7-f999-4c50-b9e0-4c8b60f1172d', NULL, '', NULL, 9, 2, 15, '12345625', '', 'b83fd7f3-a4ac-45a0-9772-d58dcc385a44', NULL, 0, 0, 1, 0, NULL, '2024-10-03 02:53:20', '2024-10-03 02:53:20', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `fleet_documents`
--

CREATE TABLE `fleet_documents` (
  `id` char(36) NOT NULL,
  `fleet_id` char(36) NOT NULL,
  `name` varchar(191) NOT NULL,
  `image` varchar(191) NOT NULL,
  `expiry_date` timestamp NULL DEFAULT NULL,
  `identify_number` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `document_id` int(10) UNSIGNED NOT NULL,
  `document_status` int(11) NOT NULL DEFAULT 2,
  `comment` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `fleet_documents`
--

INSERT INTO `fleet_documents` (`id`, `fleet_id`, `name`, `image`, `expiry_date`, `identify_number`, `created_at`, `updated_at`, `deleted_at`, `document_id`, `document_status`, `comment`) VALUES
('95015439-0bc9-4c15-8d13-43e479eb4bb6', '245070a7-f999-4c50-b9e0-4c8b60f1172d', '', '0aN5a3zlSdRHmGqmNPwm55oZLEgrVlifg9Nfe8Tt.jpg', '2024-10-30 23:00:00', NULL, '2024-10-03 02:53:49', '2024-10-03 02:53:55', NULL, 1, 1, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `fleet_needed_documents`
--

CREATE TABLE `fleet_needed_documents` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `doc_type` varchar(191) NOT NULL DEFAULT 'image',
  `has_identify_number` tinyint(1) NOT NULL DEFAULT 0,
  `identify_number_locale_key` varchar(191) DEFAULT NULL,
  `has_expiry_date` tinyint(1) NOT NULL DEFAULT 0,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `fleet_needed_documents`
--

INSERT INTO `fleet_needed_documents` (`id`, `name`, `doc_type`, `has_identify_number`, `identify_number_locale_key`, `has_expiry_date`, `active`, `created_at`, `updated_at`) VALUES
(1, 'Proof Of ID', 'image', 1, '1234', 1, 1, '2024-03-18 11:06:39', '2024-03-18 11:06:39'),
(2, 'Aadhar', 'image', 0, NULL, 1, 1, '2024-10-03 02:25:54', '2024-10-03 02:25:54');

-- --------------------------------------------------------

--
-- Table structure for table `goods_types`
--

CREATE TABLE `goods_types` (
  `id` int(10) UNSIGNED NOT NULL,
  `goods_type_name` varchar(191) NOT NULL,
  `goods_types_for` enum('truck','motor_bike') DEFAULT NULL,
  `company_key` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `goods_types`
--

INSERT INTO `goods_types` (`id`, `goods_type_name`, `goods_types_for`, `company_key`, `active`, `created_at`, `updated_at`) VALUES
(1, 'Timber/Plywood/Laminate', NULL, NULL, 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(2, 'Electrical/Electronics/Home Appliances', NULL, NULL, 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(3, 'Building/Construction', NULL, NULL, 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(4, 'Catering/Restaurant/Event Management', NULL, NULL, 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(5, 'Machines/Equipments/Spare Parts/Metals', NULL, NULL, 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(6, 'Textile/Garments/Fashion Accessories', NULL, NULL, 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(7, 'Furniture/Home Furnishing', NULL, NULL, 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(8, 'House Shifting', NULL, NULL, 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(9, 'Ceramics/Sanitaryware/HardWare', NULL, NULL, 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(10, 'Paper/Packaging/Printed Material', NULL, NULL, 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(11, 'Chemicals/Paints', NULL, NULL, 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(12, 'Logistics service provider/Packers and Movers', NULL, NULL, 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(13, 'Perishable Food Items', NULL, NULL, 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(14, 'Pharmacy/Medical?Healthcare/Fitness Equipment', NULL, NULL, 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(15, 'FMCG/Food Products', NULL, NULL, 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(16, 'Plastic/Rubber', NULL, NULL, 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(17, 'Books/Stationery/Toys/Gifts', NULL, NULL, 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(18, 'Electronics', 'truck', NULL, 0, '2024-10-03 02:26:18', '2024-10-03 02:26:26');

-- --------------------------------------------------------

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

CREATE TABLE `jobs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `queue` varchar(191) NOT NULL,
  `payload` longtext NOT NULL,
  `attempts` tinyint(3) UNSIGNED NOT NULL,
  `reserved_at` int(10) UNSIGNED DEFAULT NULL,
  `available_at` int(10) UNSIGNED NOT NULL,
  `created_at` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `landingpagecms`
--

CREATE TABLE `landingpagecms` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL,
  `tabfaviconfile` text NOT NULL,
  `faviconfile` text NOT NULL,
  `bannerimage` text NOT NULL,
  `description` text NOT NULL,
  `playstoreicon1` text NOT NULL,
  `playstoreicon2` text NOT NULL,
  `firstrowimage1` text NOT NULL,
  `firstrowheadtext1` text NOT NULL,
  `firstrowsubtext1` text NOT NULL,
  `firstrowimage2` text NOT NULL,
  `firstrowheadtext2` text NOT NULL,
  `firstrowsubtext2` text NOT NULL,
  `firstrowimage3` text NOT NULL,
  `firstrowheadtext3` text NOT NULL,
  `firstrowsubtext3` text NOT NULL,
  `secondrowimage1` text NOT NULL,
  `secondrowheadtext1` text NOT NULL,
  `secondrowimage2` text NOT NULL,
  `secondrowheadtext2` text NOT NULL,
  `secondrowimage3` text NOT NULL,
  `secondrowheadtext3` text NOT NULL,
  `footertextsub` text NOT NULL,
  `footercopytextsub` text NOT NULL,
  `footerlogo` text NOT NULL,
  `footerinstagramlink` text NOT NULL,
  `footerfacebooklink` text NOT NULL,
  `safety` text NOT NULL,
  `safetytext` longtext NOT NULL,
  `serviceheadtext` text NOT NULL,
  `servicesubtext` text NOT NULL,
  `serviceimage` longtext NOT NULL,
  `privacy` longtext NOT NULL,
  `dmv` longtext NOT NULL,
  `complaince` longtext NOT NULL,
  `terms` longtext NOT NULL,
  `frimage` text NOT NULL,
  `frtext` longtext NOT NULL,
  `srimage` text NOT NULL,
  `srtext` longtext NOT NULL,
  `trimage` text NOT NULL,
  `trtext` longtext NOT NULL,
  `afrimage` text NOT NULL,
  `afrhtext` text NOT NULL,
  `afrstext` text NOT NULL,
  `asrtext` text NOT NULL,
  `asrimage1` text NOT NULL,
  `asrhtext1` text NOT NULL,
  `asrstext1` text NOT NULL,
  `asrimage2` text NOT NULL,
  `asrhtext2` text NOT NULL,
  `asrstext2` text NOT NULL,
  `asrimage3` text NOT NULL,
  `asrhtext3` text NOT NULL,
  `asrstext3` text NOT NULL,
  `atrhtext` text NOT NULL,
  `atrthtext1` text NOT NULL,
  `atrtimage1` text NOT NULL,
  `atrtstext1` text NOT NULL,
  `atrthtext2` text NOT NULL,
  `atrtimage2` text NOT NULL,
  `atrtstext2` text NOT NULL,
  `atrthtext3` text NOT NULL,
  `atrtimage3` text NOT NULL,
  `atrtstext3` text NOT NULL,
  `afrbimage` text NOT NULL,
  `afrlimage` text NOT NULL,
  `afrheadtext` text NOT NULL,
  `afrstext1` text NOT NULL,
  `afrstext2` text NOT NULL,
  `afrstext3` text NOT NULL,
  `afrstext4` text NOT NULL,
  `howbannerimage` text NOT NULL,
  `hfrht1` text NOT NULL,
  `hfrcimage1` text NOT NULL,
  `hfrht2` text NOT NULL,
  `hsrht1` text NOT NULL,
  `hsrcimage1` text NOT NULL,
  `hsrht2` text NOT NULL,
  `htrht1` text NOT NULL,
  `htrcimage1` text NOT NULL,
  `htrht2` text NOT NULL,
  `hforht1` text NOT NULL,
  `hforcimage1` text NOT NULL,
  `hforht2` text NOT NULL,
  `hfirht1` text NOT NULL,
  `hfircimage1` text NOT NULL,
  `hfirht2` text NOT NULL,
  `hsirht1` text NOT NULL,
  `hsircimage1` text NOT NULL,
  `hsirht2` text NOT NULL,
  `hserht1` text NOT NULL,
  `hsercimage1` text NOT NULL,
  `hserht2` text NOT NULL,
  `created_at` date NOT NULL,
  `updated_at` date NOT NULL,
  `contactbanner` text NOT NULL,
  `contacttext` longtext NOT NULL,
  `contactmap` longtext NOT NULL,
  `driverioslink` text NOT NULL,
  `driverandroidlink` text NOT NULL,
  `userioslink` text NOT NULL,
  `userandroidlink` text NOT NULL,
  `menucolor` text NOT NULL,
  `menutextcolor` text NOT NULL,
  `menutexthover` text NOT NULL,
  `firstrowbgcolor` text NOT NULL,
  `hdriverdownloadcolor` text NOT NULL,
  `hownumberbgcolor` text NOT NULL,
  `footerbgcolor` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `landingpagecms`
--

INSERT INTO `landingpagecms` (`id`, `userid`, `tabfaviconfile`, `faviconfile`, `bannerimage`, `description`, `playstoreicon1`, `playstoreicon2`, `firstrowimage1`, `firstrowheadtext1`, `firstrowsubtext1`, `firstrowimage2`, `firstrowheadtext2`, `firstrowsubtext2`, `firstrowimage3`, `firstrowheadtext3`, `firstrowsubtext3`, `secondrowimage1`, `secondrowheadtext1`, `secondrowimage2`, `secondrowheadtext2`, `secondrowimage3`, `secondrowheadtext3`, `footertextsub`, `footercopytextsub`, `footerlogo`, `footerinstagramlink`, `footerfacebooklink`, `safety`, `safetytext`, `serviceheadtext`, `servicesubtext`, `serviceimage`, `privacy`, `dmv`, `complaince`, `terms`, `frimage`, `frtext`, `srimage`, `srtext`, `trimage`, `trtext`, `afrimage`, `afrhtext`, `afrstext`, `asrtext`, `asrimage1`, `asrhtext1`, `asrstext1`, `asrimage2`, `asrhtext2`, `asrstext2`, `asrimage3`, `asrhtext3`, `asrstext3`, `atrhtext`, `atrthtext1`, `atrtimage1`, `atrtstext1`, `atrthtext2`, `atrtimage2`, `atrtstext2`, `atrthtext3`, `atrtimage3`, `atrtstext3`, `afrbimage`, `afrlimage`, `afrheadtext`, `afrstext1`, `afrstext2`, `afrstext3`, `afrstext4`, `howbannerimage`, `hfrht1`, `hfrcimage1`, `hfrht2`, `hsrht1`, `hsrcimage1`, `hsrht2`, `htrht1`, `htrcimage1`, `htrht2`, `hforht1`, `hforcimage1`, `hforht2`, `hfirht1`, `hfircimage1`, `hfirht2`, `hsirht1`, `hsircimage1`, `hsirht2`, `hserht1`, `hsercimage1`, `hserht2`, `created_at`, `updated_at`, `contactbanner`, `contacttext`, `contactmap`, `driverioslink`, `driverandroidlink`, `userioslink`, `userandroidlink`, `menucolor`, `menutextcolor`, `menutexthover`, `firstrowbgcolor`, `hdriverdownloadcolor`, `hownumberbgcolor`, `footerbgcolor`) VALUES
(19, 1, 'MoKsrPDkoe6ras1gcX2ak9iRYCEleS0sFFPJh28r.png', 'B4hYi3nkZR9NW5zKrhnlfQ9sJyz4FJhyEnlPmVia.png', 'jq6LMoJVGQNeJowh8u8uP0nzScKernSNYiBeOVv4.png', '<h2><strong>It&rsquo;s time to change your ride and delivery experience!<br />\r\nDownload the MXGrab&nbsp;app Today</strong></h2>', 'i14BWjhLnQmRNSBixfIUq0dFlvNUxjC5WDZmbkp7.svg', 'cng3OM9Dptnrrjc2JOhy7Qsx2RYSU6L4FIVAtVSW.svg', 'cCVFQcKk313yOT8y0tkjG4uM0k2GHJPQxEIXHzeK.png', '<h3><strong>Tap a button,<br />\r\nget a ride</strong></h3>', '<p>Choose your ride and set your location. You&#39;ll see your driver&#39;s picture and vehicle details, and can track their arrival on the map.</p>', '9lReQfEJS5HGbApTyyJPIwSujRzBNj8iHwxCbH85.png', '<h3><strong>Always on,<br />\r\nalways available</strong></h3>', '<p>No phone calls to make, no pick-ups to schedule. With 24/7 availability, request a ride any time of day, any day of the year for your perfect ride.</p>', 'fbqCL9hdhzpgD9BtaSasSIZGaivKYqPQVU9tteg5.png', '<h3><strong>You rate,<br />\r\nwe listen</strong></h3>', '<p>Rate your driver and provide anonymous feedback about your trip. Your input helps us make every ride a 5-star experience.</p>', 'Kkk2hUMTBfzzhJKSFoKqzgAy3VzLHKto684wie9x.jpg', '<p><strong>On-demand rides cater specifically to the transportation needs of individuals who are in high demand.</strong></p>', '6ONOuxBnaUO7YHhKgL2W23SNpezkMCYWn3UCVuQc.jpg', '<p><strong>Make your work commute or business trip more environmentally friendly and cost effective.</strong></p>', 'C1SWBNAeHBWth8o1xcHkK33XxuOXUZdz2ACl547N.jpg', '<p><strong>Safe and easy rides through out North Carolina any many more places, book your ride now.</strong></p>', '<p>MXGrab is a rideshare platform facilitating peer to peer ridesharing by means of connecting passengers who are in need of rides from drivers with available cars to get from point A to point B with the press of a button.</p>', '<p>&copy; 2024&nbsp;MXGrab, LLC All rights reserved.</p>', 'hxnKZeAp23I9dhQr2aUoxVbKyHtFnYDAfTmx4vKR.png', 'footerinstalink', 'footerfblink', 'jIjFIDLtztvv6qaNXLo6NXP2NCQJra17K2xJQi3B.jpg', '<p>Due to the COVID-19 pandemic, tyt has updated health safety guidelines to help keep drivers and passengers safe. Under the new guidelines, drivers and passengers must stay home if they have COVID-19 or related symptoms, wear a face covering, keep the front seat empty, and roll windows down when possible. Drivers or passengers who repeatedly violate these new guidelines will be suspended. If a driver ever has a health safety concern, like someone not wearing a face covering, they can cancel the ride without incurring a fee.</p>', '<h2><strong>Our Service Locations</strong></h2>', '<p>We cover all major cities and surrounding areas in North Carolina. For every destination in life, we will connect you to a reliable driver in minutes. Let us take you there</p>', 'Fx14Mzje1kkGVzXnwC4H4XAnAnKQt8Ns0Lnya7DT.png,YI2xAmJ2WRpa89avWmoKJ3d5919c32oZia7aDnL5.png,8vYKhSvAcYQXiqFrEpUsqwJioFGad762yNZEYxgY.png,DGM0bkjr5HSFQnM7qalYTeGCFcE9J8hEf7LgfDbn.png,tT7PE5NqpaQSa2wrOZm8lq70xuvOkONJ1S2pBUqT.png', '<h1>Privacy Policy</h1>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>I. Introduction&nbsp;</p>\r\n\r\n<p>When you use MXGrab, you trust us with your personal data. We&rsquo;re committed to keeping that trust. That starts with helping you understand our privacy practices.&nbsp;</p>\r\n\r\n<p>This notice describes the personal data we collect, how it&rsquo;s used and shared, and your choices regarding this data. &nbsp;</p>\r\n\r\n<p>Last modified: April 1, 2023&nbsp;</p>\r\n\r\n<p>Effective date: April 1, 2023&nbsp;</p>\r\n\r\n<p>II. Overview&nbsp;</p>\r\n\r\n<p>A. Scope&nbsp;</p>\r\n\r\n<p>This notice applies to users of MXGrab&rsquo;s services anywhere in the world, including users of MXGrab&rsquo;s apps, websites, features, or other services.&nbsp;</p>\r\n\r\n<p>This notice describes how MXGrab collect and use personal data. This notice applies to all users of our apps, websites, features or other services anywhere in the world, unless covered by a separate privacy notice. This notice specifically applies to:&nbsp;</p>\r\n\r\n<p>Riders: individuals who request or receive transportation, including those who receive transportation requested by another individual&nbsp;</p>\r\n\r\n<p>Drivers: individuals who provide transportation to Riders individually or through partner transportation companies&nbsp;</p>\r\n\r\n<p>Delivery recipients: individuals who request or receive food, or other products and services&nbsp;</p>\r\n\r\n<p>Delivery persons: individuals who provide delivery or other services &nbsp;</p>\r\n\r\n<p>This notice also governs MXGrab&rsquo;s other collections of personal data in connection with MXGrab&rsquo;s services. For example, we may collect the contact information of individuals who use accounts owned by MXGrab for Business customers or of owners or employees of MXGrab Eats restaurant partners. We may also collect the personal data of those who start but do not complete applications to be drivers or delivery persons, those who rent bicycles, scooters or other light electrical devices offered by other companies through an MXGrab app, or in connection with our mapping technology and features.&nbsp;</p>\r\n\r\n<p>All those subject to this notice are referred to as &lsquo;users&rsquo; in this notice.&nbsp;</p>\r\n\r\n<p>In addition, please note the following: &nbsp;</p>\r\n\r\n<p>For users in Argentina: The Public Information Access agency, in its role of Regulating Body of Law 25.326, is responsible for receiving complaints and reports presented by any data subjects who believe their rights have been impacted by a violation of the local data protection regulation.&nbsp;</p>\r\n\r\n<p>For users in Brazil: Please see here for information regarding MXGrab&rsquo;s privacy practices required under Brazil&rsquo;s General Data Protection Law (Lei Geral de Prote&ccedil;&atilde;o de Dados - LGPD).&nbsp;</p>\r\n\r\n<p>For California users: Information regarding MXGrab&rsquo;s privacy practices related to the California Consumer Privacy Act (CCPA) is available here.&nbsp;</p>\r\n\r\n<p>For users in Mexico: Please see here for information regarding MXGrab&rsquo;s privacy practices required under Mexico&rsquo;s Mexican Personal Data Protection Law (Ley Federal de Protecci&oacute;n de Datos Personales en Posesi&oacute;n de los Particulares).&nbsp;</p>\r\n\r\n<p>For users in Nigeria: MXGrab does not process the personal data of users in Nigeria for purposes of the &lsquo;legitimate interests of MXGrab or other parties described in Section F below. MXGrab instead processes such data on the other grounds described in that section.&nbsp;</p>\r\n\r\n<p>For users in South Korea: Please see here for information about MXGrab affiliate UT LLC&#39;s privacy practices.&nbsp;</p>\r\n\r\n<p>For guest users: The personal data of those who order or receive trips or deliveries via partner websites or apps (such as when ordering from a restaurant or grocery store), or arranged by other account owners (collectively &lsquo;Guest Users&rsquo;) is used solely to provide such trips, deliveries or other services requested through a third party, and for purposes of safety and security, customer support, research and development, enabling communication between users, and in connection with legal proceedings and requirements, each as described in &lsquo;How we use personal data&rsquo; below. Guest User data may be shared with third parties for these purposes. Such data may be associated with, and accessible by, the owner of that account. This specifically includes Guest Users who receive rides/deliveries ordered by owners of MXGrab Health, MXGrab Central, MXGrab Direct or MXGrab for Business accounts, or who receive rides or deliveries ordered by friends, family members or others. &nbsp;</p>\r\n\r\n<p>Our data practices are subject to applicable laws in the places in which we operate. This means that we engage in the practices described in this notice in a particular country or region only if permitted under the laws of those places. Please contact us here or through the addresses below with any questions regarding our practices in a particular country or region.&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>B. Data controller and transfer&nbsp;</p>\r\n\r\n<p>MXGrab is the data controller for the personal data collected in connection with use of MXGrab&rsquo;s services anywhere.&nbsp;</p>\r\n\r\n<p>MXGrab is the data controller for the personal data collected in connection with use of MXGrab&rsquo;s services anywhere. &nbsp;</p>\r\n\r\n<p>MXGrab operates, and processes data, globally. We may also transfer data to countries other than the one where our users live or use MXGrab&rsquo;s services. We do so in order to fulfill our agreements with users, such as our Terms of Use, or based on users&rsquo; prior consent, adequacy decisions for the relevant countries, or other transfer mechanisms as may be available under applicable law, such as the Standard Contractual Clauses.&nbsp;</p>\r\n\r\n<p>III. Data collections and uses&nbsp;</p>\r\n\r\n<p>A. The data we collect&nbsp;</p>\r\n\r\n<p>MXGrab collects:&nbsp;</p>\r\n\r\n<p>Data provided by users to MXGrab, such as during account creation&nbsp;</p>\r\n\r\n<p>Data created during use of our services, such as location, app usage, and device data&nbsp;</p>\r\n\r\n<p>Data from other sources, such as MXGrab partners and third parties that use MXGrab APIs&nbsp;</p>\r\n\r\n<p>The following data is collected by or on behalf of MXGrab:&nbsp;</p>\r\n\r\n<p>1- Data provided by users. This includes:&nbsp;</p>\r\n\r\n<p>User profile: We collect data when users create or update their MXGrab accounts. This may include their name, email, phone number, login name and password, address, profile picture, payment or banking information (including related payment verification information), driver&rsquo;s license and other government identification documents (which may indicate document numbers as well as birth date, gender, and photo). This also includes vehicle or insurance information of drivers and delivery persons, emergency contact information, user settings, and evidence of health or fitness to provide services using MXGrab apps. &nbsp;<br />\r\nThis also includes gender and/or occupation (when required for certain MXGrab services or programs, such as MXGrab Cash or Women Rider Preferred).&nbsp;<br />\r\nWe may use the photos submitted by users to verify their identities, such as through facial recognition technologies. For more information, please see the section titled &ldquo;How we use personal data.&rdquo;&nbsp;</p>\r\n\r\n<p>Background check and identity verification: We collect background check and identity verification information for drivers and delivery persons. This may include information such as driver history or criminal record (where permitted by law), and right to work. This information may be collected by an authorized vendor on MXGrab&rsquo;s behalf. &nbsp;</p>\r\n\r\n<p>Demographic data: We may collect demographic data about users, including through user surveys. In some countries, we may also receive demographic data about users from third parties.&nbsp;</p>\r\n\r\n<p>User content: We collect the information users submit when they contact MXGrab customer support, provide ratings or compliments for other users or restaurant partners, or otherwise contact MXGrab. This may include feedback, photographs or other recordings collected by users.&nbsp;</p>\r\n\r\n<p>2- Data created during use of our services. This includes: &nbsp;</p>\r\n\r\n<p>Location data (driver and delivery person): MXGrab collects this data when the MXGrab app is running in the foreground (app open and on-screen) or background (app open but not on-screen) of their mobile device.&nbsp;</p>\r\n\r\n<p>Location data (riders and delivery recipients). We collect precise or approximate location data from riders&rsquo; and delivery recipients&rsquo; mobile devices if they enable us to do so. MXGrab collects this data from the time a ride or delivery is requested until it is finished, and any time the app is running in the foreground of their mobile device. We use this data to enhance your use of our apps, including to improve pick-up locations, enable safety features, and prevent and detect fraud. &nbsp;<br />\r\nMXGrab collects driver location data, and links location data collected during a trip with their rider&rsquo;s account, even if the rider has not enabled us to collect location data from their device. This enables us to offer services to the rider like receipt generation and customer support. &nbsp;</p>\r\n\r\n<p>Transaction information: We collect transaction information related to the use of our services, including the type of services requested or provided, order details, delivery information, date and time the service was provided, amount charged, distance travelled, and payment method. Additionally, if someone uses your promotion code, we may associate your name with that person.&nbsp;</p>\r\n\r\n<p>Usage data: We collect data about how users interact with our services. This includes data such as access dates and times, app features or pages viewed, app crashes and other system activity, type of browser, and third-party sites or services used before interacting with our services. In some cases, we collect this data through cookies, pixels, tags, and similar tracking technologies that create and maintain unique identifiers. &nbsp;</p>\r\n\r\n<p>Device data: We may collect data about the devices used to access our services, including the hardware models, device IP address, operating systems and versions, software, preferred languages, unique device identifiers, advertising identifiers, serial numbers, device motion data, and mobile network data.&nbsp;</p>\r\n\r\n<p>Communications data: We enable users to communicate with each other and MXGrab through MXGrab&rsquo;s mobile apps and websites. For example, we enable drivers and riders, and restaurants or delivery persons and delivery recipients, to call, text, or send other files to each other (generally without disclosing their telephone numbers to each other). To provide this service, MXGrab receives some data regarding the calls, texts, or other communications, including the date and time of the communications and the content of the communications. MXGrab may also use this data for customer support services (including to resolve disputes between users), for safety and security purposes, to improve our products and services, and for analytics.&nbsp;</p>\r\n\r\n<p>Rental devices data: We collect data generated by rental devices, such as bicycles, scooters, or other light electric vehicles or devices, when they&rsquo;re in use. This includes the date and time of use, and the location, route, and distance travelled. To the extent permitted by law, the location data collected from the rental device during the trip will be linked to the renter&rsquo;s account, even if they have not enabled MXGrab to collect location data from their mobile device.&nbsp;</p>\r\n\r\n<p>Audio recordings: In certain jurisdictions, and where permitted by law, users can record the audio of their trips through an in-app feature. Recordings are encrypted and stored on users&rsquo; devices, and are only shared with MXGrab if submitted to customer support by the users in connection with safety incidents.&nbsp;</p>\r\n\r\n<p>3- Data from other sources. This includes:&nbsp;</p>\r\n\r\n<p>User feedback, such as ratings, feedback, or compliments.&nbsp;</p>\r\n\r\n<p>Users participating in our referral programs. For example, when a user refers another person, we receive the referred person&rsquo;s personal data from that user.&nbsp;</p>\r\n\r\n<p>MXGrab account owners who request services for or on behalf of other users, or who enable such users to request or receive services through their accounts. This includes owners of MXGrab for Business accounts.&nbsp;</p>\r\n\r\n<p>Users or others providing information in connection with claims or disputes.&nbsp;</p>\r\n\r\n<p>MXGrab business partners through which users create or access their MXGrab account, such as payment providers, social media services, or apps or websites that use MXGrab&rsquo;s APIs or whose APIs MXGrab uses. &nbsp;</p>\r\n\r\n<p>MXGrab business partners in connection with the MXGrab Visa Card to the extent disclosed in the terms and conditions for the card.&nbsp;</p>\r\n\r\n<p>Vendors who help us verify users&rsquo; identity, background information, and eligibility to work, for regulatory, safety, and security purposes. &nbsp;</p>\r\n\r\n<p>Insurance, vehicle, or financial services providers for drivers and/or delivery persons.&nbsp;</p>\r\n\r\n<p>Partner transportation companies (for drivers or delivery persons who use our services through an account associated with such a company).&nbsp;</p>\r\n\r\n<p>Publicly available sources. &nbsp;</p>\r\n\r\n<p>Marketing service providers.&nbsp;</p>\r\n\r\n<p>MXGrab may combine the data collected from these sources with other data in its possession.&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>B. How we use personal data&nbsp;</p>\r\n\r\n<p>MXGrab collects and uses data to enable reliable and convenient transportation, delivery, and other products and services. We also use the data we collect:&nbsp;</p>\r\n\r\n<p>To enhance the safety and security of our users and services&nbsp;</p>\r\n\r\n<p>For customer support &nbsp;</p>\r\n\r\n<p>For research and development &nbsp;</p>\r\n\r\n<p>To enable communications between users &nbsp;</p>\r\n\r\n<p>To send marketing and non-marketing communications to users&nbsp;</p>\r\n\r\n<p>In connection with legal proceedings&nbsp;</p>\r\n\r\n<p>MXGrab does not sell or share user personal data with third parties for their direct marketing, except with users&rsquo; consent.&nbsp;</p>\r\n\r\n<p>MXGrab uses the data it collects for purposes including: &nbsp;</p>\r\n\r\n<p>1- Providing services and features. MXGrab uses the data we collect to provide, personalize, maintain, and improve our products and services.&nbsp;<br />\r\n&nbsp;<br />\r\nThis includes using the data to:&nbsp;</p>\r\n\r\n<p>Create and update users&rsquo; accounts.&nbsp;</p>\r\n\r\n<p>Verify drivers&rsquo; and delivery persons&rsquo; identity, background history, and eligibility to work.&nbsp;</p>\r\n\r\n<p>Enable transportation, deliveries, and other services.&nbsp;</p>\r\n\r\n<p>Offer, process, or facilitate payments for our services.&nbsp;</p>\r\n\r\n<p>Offer, obtain, provide, or facilitate insurance, vehicle, invoicing, or financing solutions in connection with our services.&nbsp;</p>\r\n\r\n<p>Track and share the progress of rides or deliveries. &nbsp;</p>\r\n\r\n<p>Enable features that allow users to share information with other people, such as when riders submit a compliment about a driver, when delivery recipients provide feedback for a restaurant or delivery person, refer a friend to MXGrab, split fares, or share ETA and location with their contacts.&nbsp;</p>\r\n\r\n<p>Enable features to personalize users&rsquo; MXGrab accounts, such as creating bookmarks for favourite places, and to enable quick access to previous destinations. &nbsp;</p>\r\n\r\n<p>Enable Accessibility features that make it easier for users with disabilities to use our services, such as those that enable deaf or hard-of-hearing drivers to alert their riders of their disabilities, allow only text messages from riders, and enable receipt of flashing trip request notifications instead of sound notifications on their mobile device.&nbsp;</p>\r\n\r\n<p>Perform internal operations necessary to provide our services, including to troubleshoot software bugs and operational problems; to conduct data analysis, testing, and research; and to monitor and analyze usage and activity trends.&nbsp;</p>\r\n\r\n<p>2- Safety and security. We use personal data to help maintain the safety, security, and integrity of our services and users. This includes:&nbsp;</p>\r\n\r\n<p>Screening riders, drivers, and delivery persons before enabling their use of our services and at subsequent intervals, including through reviews of background checks, where permitted by law, to help prevent use of our services by unsafe drivers and/or riders.&nbsp;</p>\r\n\r\n<p>Using data from drivers&rsquo; or delivery persons&rsquo; devices to help identify unsafe driving behavior such as speeding or harsh braking and acceleration, and to inform them of safer driving practices. We also use data from delivery persons&rsquo; devices to verify the type of vehicles they used to provide deliveries.&nbsp;</p>\r\n\r\n<p>In certain regions, using information derived from driver&rsquo;s license photos, and other photos submitted to MXGrab, for safety and security purposes. This includes MXGrab&rsquo;s Real-Time ID Check feature, which prompts drivers and delivery persons to share a selfie before going online to help ensure that the driver or delivery persons using the app matches the MXGrab account we have on file. This also includes comparing photographs that we have on file against photographs (i) of other users to prevent identity-borrowing, and (ii) from public databases to verify user identity.&nbsp;</p>\r\n\r\n<p>Using device, location, profile, usage, and other data to prevent, detect, and combat fraud or unsafe activities. &nbsp;</p>\r\n\r\n<p>Using user ratings and feedback to encourage compliance with our Community Guidelines and as grounds for deactivating drivers and delivery persons with low ratings or who otherwise violated such guidelines in certain countries.&nbsp;</p>\r\n\r\n<p>3- Customer support. MXGrab uses the information we collect (including recordings of customer support calls with notice to and the consent of the user) to provide customer support, including to: &nbsp;</p>\r\n\r\n<p>Direct questions to the appropriate customer support person &nbsp;</p>\r\n\r\n<p>Investigate and address user concerns&nbsp;</p>\r\n\r\n<p>Monitor and improve our customer support responses and processes&nbsp;</p>\r\n\r\n<p>4- Research and development. We may use the data we collect for testing, research, analysis, product development, and machine learning to improve the user experience. This helps us to improve and enhance the safety and security of our services, improve our ability to prevent the use of our services for illegal or improper purposes, develop new features and products, and facilitate insurance and finance solutions in connection with our services.&nbsp;</p>\r\n\r\n<p>5- Enabling communications between users. For example, a driver may message or call a rider to confirm a pickup location, a rider may contact a driver to retrieve a lost item, or a restaurant or delivery persons may call a delivery recipient with information about their order.&nbsp;</p>\r\n\r\n<p>6- Marketing. MXGrab may use the data we collect to market our services to our users. This includes sending users communications about MXGrab services, features, promotions, sweepstakes, studies, surveys, news, updates, and events. &nbsp;</p>\r\n\r\n<p>We may also send communications to our users about products and services offered by MXGrab partners. For example, if a user has placed an MXGrab Eats order, we may provide recommendations, promotions, or ads about similar food offered by other MXGrab partners. Although we may send users communications about MXGrab partners&rsquo; products and services, we do not sell users&rsquo; personal data to, or share it with, such partners or others for purposes of their own direct marketing or advertising, except with users&rsquo; consent.&nbsp;</p>\r\n\r\n<p>We may use the data we collect to personalize the marketing communications (including advertisements) that we send, including based on user location, past use of MXGrab&rsquo;s services, and user preferences and settings.&nbsp;</p>\r\n\r\n<p>We may also send users communications regarding elections, ballots, referenda, and other political and notice processes that relate to our services. For example, MXGrab has notified some users by email of ballot measures or pending legislation relating to the availability of MXGrab&rsquo;s services in those users&rsquo; areas.&nbsp;</p>\r\n\r\n<p>7- Non-marketing communications. MXGrab may use the data we collect to generate and provide users with receipts; inform them of changes to our terms, services, or policies; or send other communications that aren&rsquo;t for the purpose of marketing the services or products of MXGrab or its partners. &nbsp;</p>\r\n\r\n<p>8- Legal proceedings and requirements. We may use the personal data we collect to investigate or address claims or disputes relating to use of MXGrab&rsquo;s services, or as otherwise allowed by applicable law, or as requested by regulators, government entities, and official inquiries.&nbsp;</p>\r\n\r\n<p>9- Automated decision-making&nbsp;</p>\r\n\r\n<p>We use personal data to make automated decisions relating to use of our services. This includes:&nbsp;</p>\r\n\r\n<p>Enabling dynamic pricing, in which the price of a ride, or the delivery fee for MXGrab Eats orders, is determined based on constantly varying factors such as the estimated time and distance, the predicted route, estimated traffic, and the number of riders and drivers using MXGrab at a given moment.&nbsp;</p>\r\n\r\n<p>Matching available drivers and delivery persons to users requesting services. Users can be matched based on availability, proximity, and other factors. &nbsp;</p>\r\n\r\n<p>Determining driver and delivery person ratings, and deactivating drivers, riders, and delivery persons with low ratings. &nbsp;</p>\r\n\r\n<p>Deactivating users who are identified as having engaged in fraud or activities that may otherwise harm MXGrab, its users, and others. In some cases, such as when a user is determined to be abusing MXGrab&rsquo;s referral program, such behavior may result in automatic deactivation.&nbsp;</p>\r\n\r\n<p>Using driver location information, and communications between riders and drivers, to identify cancellation fees earned or induced through fraud. For example, if we determine by using such information that a driver is delaying a rider pickup in order to induce a cancellation, we will not charge the rider a cancellation fee and will adjust the amounts paid to the driver to omit such a fee. To object to such adjustment, please contact MXGrab customer support.&nbsp;</p>\r\n\r\n<p>Click the links in this section for more information about these processes. To object to a deactivation resulting from these processes, please contact MXGrab customer support.&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>C. Cookies and third-party technologies&nbsp;</p>\r\n\r\n<p>MXGrab and its partners use cookies and other identification technologies on our apps, websites, emails, and online ads for purposes described in this notice.&nbsp;</p>\r\n\r\n<p>Cookies are small text files that are stored on browsers or devices by websites, apps, online media, and advertisements. MXGrab uses cookies and similar technologies for purposes such as:&nbsp;</p>\r\n\r\n<p>Authenticating users&nbsp;</p>\r\n\r\n<p>Remembering user preferences and settings&nbsp;</p>\r\n\r\n<p>Determining the popularity of content&nbsp;</p>\r\n\r\n<p>Delivering and measuring the effectiveness of advertising campaigns&nbsp;</p>\r\n\r\n<p>Analyzing site traffic and trends, and generally understanding the online behaviors and interests of people who interact with our services&nbsp;</p>\r\n\r\n<p>We may also allow others to provide audience measurement and analytics services for us, to serve advertisements on our behalf across the Internet, and to track and report on the performance of those advertisements. These entities may use cookies, web beacons, SDKs, and other technologies to identify the devices used by visitors to our websites, as well as when they visit other online sites and services. &nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>D. Data sharing and disclosure&nbsp;</p>\r\n\r\n<p>Some of MXGrab&rsquo;s products, services, and features require that we share data with other users or at a user&rsquo;s request. We may also share data with our affiliates, subsidiaries, and partners, for legal reasons or in connection with claims or disputes.&nbsp;</p>\r\n\r\n<p>MXGrab may share the data we collect:&nbsp;</p>\r\n\r\n<p>1- With other users&nbsp;</p>\r\n\r\n<p>This includes sharing: &nbsp;</p>\r\n\r\n<p>Riders&rsquo; first name, rating, and pickup and/or dropoff locations with drivers.&nbsp;</p>\r\n\r\n<p>Riders&rsquo; first name with other riders in a carpool trip. Riders in carpool trips may also see the dropoff location of the other riders.&nbsp;</p>\r\n\r\n<p>Delivery recipients&rsquo; first name, delivery address, and order information with their delivery person and restaurant. We may also share ratings and feedback, or other information to the extent required by law, with the restaurant partner and delivery person.&nbsp;</p>\r\n\r\n<p>For drivers and delivery persons, we may share data with the rider(s), delivery recipient(s) and restaurant partner(s), including name and photo; vehicle make, model, color, license plate, and vehicle photo; location (before and during trip); average rating provided by users; total number of trips; length of use of the MXGrab app; contact information (depending upon applicable laws); and driver or delivery person profile, including compliments and other feedback submitted by past users. &nbsp;<br />\r\n&nbsp;<br />\r\nWe also provide riders and delivery recipients with receipts containing information such as a breakdown of amounts charged, driver or delivery person first name, photo, route map, and such other information required on invoices in the country or region where the driver or delivery person operates.&nbsp;</p>\r\n\r\n<p>For those who participate in MXGrab&rsquo;s referral program, we share certain personal data of referred users, such as trip count, with the user who referred them, to the extent relevant to determining the referral bonus.&nbsp;</p>\r\n\r\n<p>2- At the user&rsquo;s request&nbsp;</p>\r\n\r\n<p>This includes sharing data with:&nbsp;</p>\r\n\r\n<p>Other people at the user&rsquo;s request. For example, we share a user&rsquo;s ETA and location with a friend when requested by that user, or a user&rsquo;s trip information when they split a fare with a friend.&nbsp;</p>\r\n\r\n<p>MXGrab business partners. For example, if a user requests a service through a partnership or promotional offering made by a third party, MXGrab may share certain data with those third parties. This may include, for example, other services, platforms, apps, or websites that integrate with our APIs; vehicle suppliers or services; those with an API or service with which we integrate; or restaurant partners or other MXGrab business partners and their users in connection with promotions, contests, or specialized services.&nbsp;</p>\r\n\r\n<p>3- With the general public &nbsp;</p>\r\n\r\n<p>Questions or comments from users submitted through public forums such as MXGrab blogs and MXGrab social media pages may be viewable by the public, including any personal data included in the questions or comments submitted by a user. &nbsp;</p>\r\n\r\n<p>4- With the MXGrab account owner&nbsp;</p>\r\n\r\n<p>If a user requests transportation or places an order using an account owned by another party, we may share their order or trip information, including real-time location data, with the owner of that account. This occurs, for example, when:&nbsp;</p>\r\n\r\n<p>A rider uses their employer&rsquo;s MXGrab for Business profile, such as when they take trips arranged through MXGrab&nbsp;</p>\r\n\r\n<p>A driver or delivery person uses an account owned by or associated with an MXGrab partner transportation company or restaurant&nbsp;</p>\r\n\r\n<p>A rider takes a trip arranged by a friend or under a Family Profile&nbsp;</p>\r\n\r\n<p>A delivery person acts as a substitute&nbsp;</p>\r\n\r\n<p>5- With MXGrab subsidiaries and affiliates&nbsp;</p>\r\n\r\n<p>We share data with our subsidiaries and affiliates to help us provide our services or conduct data processing on our behalf. For example, MXGrab processes and stores data in the United States on behalf of its international subsidiaries and affiliates. &nbsp;</p>\r\n\r\n<p>6- With MXGrab service providers and business partners&nbsp;</p>\r\n\r\n<p>MXGrab provides data to vendors, consultants, marketing partners, research firms, and other service providers or business partners. These include:&nbsp;</p>\r\n\r\n<p>Payment processors and facilitators&nbsp;</p>\r\n\r\n<p>Background check and identity verification providers (drivers, delivery persons and cash riders only)&nbsp;</p>\r\n\r\n<p>Cloud storage providers&nbsp;</p>\r\n\r\n<p>Google, in connection with the use of Google Maps in MXGrab&rsquo;s apps (see Google&rsquo;s privacy policy for information on their collection and use of data)&nbsp;</p>\r\n\r\n<p>Facebook, in connection with the use of the Facebook Business Tools in MXGrab&rsquo;s apps and websites (see Facebook&rsquo;s privacy policy for information on their collection and use of data)&nbsp;</p>\r\n\r\n<p>Marketing partners and marketing platform providers, including social media advertising services&nbsp;</p>\r\n\r\n<p>Data analytics providers&nbsp;</p>\r\n\r\n<p>Research partners, including those performing surveys or research projects in partnership with MXGrab or on MXGrab&rsquo;s behalf&nbsp;</p>\r\n\r\n<p>Vendors that assist MXGrab to enhance the safety and security of its apps&nbsp;</p>\r\n\r\n<p>Consultants, lawyers, accountants, and other professional service providers&nbsp;</p>\r\n\r\n<p>Fleet partners&nbsp;</p>\r\n\r\n<p>Insurance and financing partners&nbsp;</p>\r\n\r\n<p>Airports&nbsp;</p>\r\n\r\n<p>Lime and other local providers&nbsp;</p>\r\n\r\n<p>Restaurant partners and/or their point of sale providers&nbsp;</p>\r\n\r\n<p>Vehicle solution vendors or third-party vehicle suppliers &nbsp;</p>\r\n\r\n<p>7- For legal reasons or in the event of a dispute&nbsp;</p>\r\n\r\n<p>MXGrab may share users&rsquo; personal data if we believe it&rsquo;s required by applicable law, regulation, operating license or agreement, legal process or governmental request, or where the disclosure is otherwise appropriate due to safety or similar concerns. &nbsp;</p>\r\n\r\n<p>This includes sharing personal data with law enforcement officials, public health officials, other government authorities, airports (if required by the airport authorities as a condition of operating on airport property), or other third parties as necessary to enforce our Terms of Service, user agreements, or other policies; to protect MXGrab&rsquo;s rights or property or the rights, safety, or property of others; or in the event of a claim or dispute relating to the use of our services. If you use another person&rsquo;s credit card, we may be required by law to share your personal data, including trip or order information, with the owner of that credit card.&nbsp;</p>\r\n\r\n<p>This also includes sharing personal data with others in connection with, or during negotiations of, any merger, sale of company assets, consolidation or restructuring, financing, or acquisition of all or a portion of our business by or into another company.&nbsp;</p>\r\n\r\n<p>8- With consent&nbsp;</p>\r\n\r\n<p>MXGrab may share a user&rsquo;s personal data other than as described in this notice if we notify the user and they consent to the sharing.&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>E. Data retention and deletion&nbsp;</p>\r\n\r\n<p>MXGrab retains user data for as long as necessary for the purposes described above.&nbsp;</p>\r\n\r\n<p>Users may request deletion of their accounts at any time. MXGrab may retain user data after a deletion request due to legal or regulatory requirements or for the reasons stated in this policy.&nbsp;</p>\r\n\r\n<p>MXGrab retains user data for as long as necessary for the purposes described above. This means that we retain different categories of data for different periods of time depending on the category of user to whom the data relates, the type of data, and the purposes for which we collected the data. &nbsp;</p>\r\n\r\n<p>Users may request deletion of their account at any time through the Settings &gt; Privacy menus in the MXGrab app, or through MXGrab&rsquo;s website.&nbsp;</p>\r\n\r\n<p>Following an account deletion request, MXGrab deletes the user&rsquo;s account and data, unless they must be retained due to legal or regulatory requirements, for purposes of safety, security, and fraud prevention, or because of an issue relating to the user&rsquo;s account such as an outstanding credit or an unresolved claim or dispute. Because we are subject to legal and regulatory requirements relating to drivers and delivery persons, this generally means that we retain their account and data for a minimum of 7 years after a deletion request. For riders and delivery recipients, their data is generally deleted within 90 days of a deletion request, except where retention is necessary for the above reasons.&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>F. Grounds for processing&nbsp;</p>\r\n\r\n<p>We only collect and use personal data where we have lawful grounds to do so. These include processing user personal data to provide requested services and features, for purposes of MXGrab&rsquo;s legitimate interests or those of other parties, to fulfill our legal obligations, or based on consent.&nbsp;</p>\r\n\r\n<p>We collect and use personal data only where we have one or more lawful grounds for doing so. Such grounds may vary depending on where our users are located, but generally include processing personal data: &nbsp;</p>\r\n\r\n<p>A- To provide requested services and features&nbsp;</p>\r\n\r\n<p>In order to provide our services, we must collect and use certain personal data. This includes: &nbsp;</p>\r\n\r\n<p>User profile data, which we use to establish and maintain user accounts; verify user identity; communicate with users about their trips, orders, and accounts; and enable users to make payments or receive earnings &nbsp;</p>\r\n\r\n<p>Background trip information, which is used to verify an applicant&rsquo;s eligibility to be a driver or delivery person&nbsp;</p>\r\n\r\n<p>Driver and delivery person location data, which we use to track trips and assist with navigation&nbsp;</p>\r\n\r\n<p>Usage data, which is necessary to maintain, optimize, and enhance MXGrab&rsquo;s services, including to determine incentives, connect riders and drivers, and calculate costs of trips and driver earnings&nbsp;</p>\r\n\r\n<p>Transaction information&nbsp;</p>\r\n\r\n<p>Information relating to customer support &nbsp;</p>\r\n\r\n<p>B- For purposes of the legitimate interests of MXGrab or other parties&nbsp;</p>\r\n\r\n<p>This includes using personal data to maintain and enhance our users&rsquo; safety and security. For example, we use personal data to prevent use of our services by users who have engaged in inappropriate or dangerous behavior, such as by retaining data of banned users to prevent their use of MXGrab&rsquo;s apps. We also use usage data to prevent matching of riders and drivers for whom there is higher risk of conflict (for instance, because they have been the subject of prior complaints from other users). &nbsp;</p>\r\n\r\n<p>This also includes purposes such as combating fraud; improving our services, direct marketing, research, and development; and enforcing MXGrab&rsquo;s Terms of Service.&nbsp;<br />\r\n&nbsp;<br />\r\nIn addition, it includes using personal data to the extent necessary for the interests of other people or the general public, such as in connection with legal or insurance claims, and to protect the rights and safety of others.&nbsp;</p>\r\n\r\n<p>C- To fulfill MXGrab&rsquo;s legal obligations &nbsp;</p>\r\n\r\n<p>For example, MXGrab is subject to laws and regulations in many cities and countries that require it to collect and retain data about our users&rsquo; trips and deliveries, and to provide copies of such data to the government or other authorities. We collect and use personal data to comply with such laws. &nbsp;</p>\r\n\r\n<p>MXGrab may also share data with law enforcement regarding criminal acts or threats to public safety, or requests by third parties pursuant to legal processes. MXGrab may also share information with public health authorities where required or permitted by law. For more information about such sharing, please see MXGrab&rsquo;s Guidelines for Law Enforcement Authorities - United States, Guidelines for Law Enforcement Authorities - Outside the US, and Guidelines for Third Party Data Requests and Service of Legal Documents.&nbsp;</p>\r\n\r\n<p>D- With consent &nbsp;</p>\r\n\r\n<p>MXGrab may collect and use personal data based on the user&rsquo;s consent. For example, we may collect personal data through voluntary surveys. Responses to such surveys are collected on the basis of consent and will be deleted once no longer necessary for the purposes collected. &nbsp;<br />\r\n&nbsp;<br />\r\nA user who has provided consent to a collection or use of their personal data can revoke it at any time. However, the user will not be able to use any service or feature that requires collection or use of that personal data.&nbsp;</p>\r\n\r\n<p>IV. Choice and transparency&nbsp;</p>\r\n\r\n<p>MXGrab enables users to access and control the data that MXGrab collects, including through: &nbsp;</p>\r\n\r\n<p>In-app settings&nbsp;</p>\r\n\r\n<p>Device permissions&nbsp;</p>\r\n\r\n<p>In-app ratings pages&nbsp;</p>\r\n\r\n<p>Marketing opt-outs &nbsp;</p>\r\n\r\n<p>MXGrab also enables users to request access to or copies of their data, changes or updates to their accounts, deletion of their accounts, or that MXGrab restrict its processing of user personal data. &nbsp;</p>\r\n\r\n<p>A- Privacy settings&nbsp;</p>\r\n\r\n<p>Settings menus in the MXGrab app for riders give them the ability to set or update their location-sharing preferences and their preferences for receiving mobile notifications from MXGrab. Information about these settings, how to set or change these settings, and the effect of turning off these settings is described below. &nbsp;</p>\r\n\r\n<p>Location data&nbsp;</p>\r\n\r\n<p>MXGrab uses riders&rsquo; device location services to make it easier to get a ride whenever they need one. Location data helps improve our services, including pickups, navigation, and customer support. &nbsp;</p>\r\n\r\n<p>Riders may enable or disallow MXGrab to collect location data from their mobile devices through the Settings &gt; Privacy menus in the MXGrab app. Riders and delivery recipients can enable or disallow such collections through the settings on their mobile device. &nbsp;</p>\r\n\r\n<p>Share Live Location (riders)&nbsp;</p>\r\n\r\n<p>Riders who have enabled MXGrab to collect location data from their mobile device may also enable MXGrab to share their location with their driver from the time the ride is requested to the start of the trip. This can help improve pickups for both drivers and riders, particularly in crowded areas.&nbsp;</p>\r\n\r\n<p>Riders may enable or disable this feature through the Settings &gt; Privacy menus in the MXGrab app.&nbsp;</p>\r\n\r\n<p>Emergency Data Sharing (riders) &nbsp;</p>\r\n\r\n<p>Riders who have enabled MXGrab to collect location data from their mobile device may also enable the Emergency Data Sharing feature that shares data with emergency police, fire, and ambulance services. Such data includes approximate location at the time the emergency call was placed; the car&rsquo;s make, model, color, and license plate information; the rider&rsquo;s name and phone number; pickup and dropoff locations; and the driver&rsquo;s name.&nbsp;<br />\r\n&nbsp;<br />\r\nRiders may enable or disable this feature through the Settings &gt; Privacy menus or the Safety Center in the MXGrab app.&nbsp;</p>\r\n\r\n<p>Notifications: account and trip updates&nbsp;</p>\r\n\r\n<p>MXGrab provides users with trip status notifications and updates related to activity on their account. These notifications are a necessary part of using the MXGrab app and cannot be disabled. However, users may choose the method by which they receive these notifications through the Settings &gt; Privacy menus in the MXGrab app.&nbsp;</p>\r\n\r\n<p>Notifications: discounts and news&nbsp;</p>\r\n\r\n<p>Users may enable MXGrab to send push notifications about discounts and news from MXGrab. Push notifications may be enabled or disabled through the Settings &gt; Privacy menus in the MXGrab app.&nbsp;</p>\r\n\r\n<p>Communications from restaurant partners &nbsp;</p>\r\n\r\n<p>Delivery recipients who have opted in to communications from restaurant partners may stop sharing their data with each restaurant partner in their MXGrab Eats account settings. &nbsp;</p>\r\n\r\n<p>B- Device permissions&nbsp;</p>\r\n\r\n<p>Most mobile device platforms (iOS, Android, etc.) have defined certain types of device data that apps cannot access without the device owner&rsquo;s permission, and these platforms have different methods for how that permission can be obtained. iOS devices notify users the first time the MXGrab app requests permission to access certain types of data and gives users the option to grant or refuse permission. Android devices notify users of the permissions that the MXGrab app seeks before their first use of the app, and use of the app constitutes a grant of such permission.&nbsp;</p>\r\n\r\n<p>C- Ratings look-up&nbsp;</p>\r\n\r\n<p>After every trip, drivers and riders are able to rate each other on a scale from 1 to 5. An average of those ratings is associated with a user&rsquo;s account and is displayed to other users for whom they provide or receive services. For example, rider ratings are available to drivers from whom they request transportation, and driver ratings are available to their riders. &nbsp;</p>\r\n\r\n<p>This 2-way system holds everyone accountable for their behavior. Accountability helps create a respectful, safe environment for drivers and riders. &nbsp;</p>\r\n\r\n<p>Riders can see their average rating in the main menu of the MXGrab app. &nbsp;</p>\r\n\r\n<p>Drivers can see their average rating after tapping their profile photo in the MXGrab Driver app.&nbsp;</p>\r\n\r\n<p>Delivery persons are also rated by delivery recipients and restaurant partners. Click here for more information.&nbsp;</p>\r\n\r\n<p>D- Marketing opt-outs&nbsp;</p>\r\n\r\n<p>Users may opt out of receiving promotional emails from MXGrab. Users may also opt out of receiving emails and other messages from MXGrab by following the unsubscribe instructions in those messages. We may still send users who have opted out non-promotional communications, such as receipts for rides or information about their account.&nbsp;</p>\r\n\r\n<p>E- User data requests &nbsp;</p>\r\n\r\n<p>MXGrab provides users with a variety of ways to learn about, control, and submit questions and comments about MXGrab&rsquo;s handling of their data. &nbsp;</p>\r\n\r\n<p>Accessing data: Users can ask for an explanation of the data we collect from them and how we use it.  &nbsp;</p>\r\n\r\n<p>Receiving data: Users can ask for a copy of data that MXGrab collects from them with their consent or as necessary to provide our services.&nbsp;</p>\r\n\r\n<p>Changing or updating data: Users can edit the name, phone number, email address, payment method, and photo associated with their account through the Settings menu in MXGrab&rsquo;s apps or driver portal. They may also ask that MXGrab change or update their data, including if they believe such data is inaccurate or incomplete. &nbsp;</p>\r\n\r\n<p>Deleting data: Users may request deletion of their account at any time through the Settings &gt; Privacy menus in the MXGrab app, or through MXGrab&rsquo;s website.&nbsp;</p>\r\n\r\n<p>Objections, restrictions, and complaints: Users may request that we stop using all or some of their personal data, or that we limit our use of their data. MXGrab may continue to process data after such objection or request to the extent required or permitted by law. &nbsp;<br />\r\n&nbsp;<br />\r\nIn addition, depending on their location, users may have the right to file a complaint relating to MXGrab&rsquo;s handling of their personal data with the data protection authority in their country. For example, users in the European Union and South America may submit such requests to the data protection authorities in the country in which they live. &nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Image Collection&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>MXGrab collects images from both the web and the app for the purpose of enhancing user experience and providing services effectively. These images may include profile pictures, uploaded images, or any visuals shared within the platform. The collection of such images is aimed at personalizing user experiences, facilitating communication between users and service providers, and ensuring the functionality of the platform.&nbsp;</p>\r\n\r\n<p>It&#39;s important to note that MXGrab respects user privacy and handles collected images in accordance with its privacy policy. The collected images are securely stored and utilized solely for the intended purposes within the platform. MXGrab does not share these images with any third parties without explicit user consent, except as required by law or legal process.&nbsp;</p>\r\n\r\n<p>Users retain ownership of their images and have the right to manage and delete their uploaded content as per the platform&#39;s provided functionalities. MXGrab employs industry-standard security measures to safeguard the collected images against unauthorized access, disclosure, or alteration.&nbsp;</p>\r\n\r\n<p>By using MXGrab&#39;s services, users acknowledge and consent to the collection and processing of images as described in the privacy policy. Users are encouraged to review the privacy policy regularly for any updates or changes regarding the handling of their personal information, including images.&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>User Data &nbsp;</p>\r\n\r\n<p>About the User Data Policy&nbsp;</p>\r\n\r\n<p> &nbsp;</p>\r\n\r\n<p>We are committed to transparency in how we handle your data. This includes information collected from or about you, including device information. Here is how we manage your data:&nbsp;</p>\r\n\r\n<p> &nbsp;</p>\r\n\r\n<p>1. Access and Collection:&nbsp;</p>\r\n\r\n<p> &nbsp;</p>\r\n\r\n<p>&emsp;&emsp;&bull;&emsp;&emsp;We collect personal data that you provide directly when using our services, such as when you create or modify your account, request on-demand services, contact customer support, or otherwise communicate with us.&nbsp;</p>\r\n\r\n<p>&emsp;&emsp;&bull;&emsp;&emsp;We also collect data about your usage of our services, such as access dates and times, app features or pages viewed, app crashes, and other system activity.&nbsp;</p>\r\n\r\n<p> &nbsp;</p>\r\n\r\n<p>2. Use of Data:&nbsp;</p>\r\n\r\n<p> &nbsp;</p>\r\n\r\n<p>&emsp;&emsp;&bull;&emsp;&emsp;The data we collect is used to provide, maintain, and improve our services. This includes using data to:&nbsp;</p>\r\n\r\n<p>&emsp;&emsp;&bull;&emsp;&emsp;Facilitate transactions and payments.&nbsp;</p>\r\n\r\n<p>&emsp;&emsp;&bull;&emsp;&emsp;Send receipts, provide customer support, and inform you about changes to our terms, services, or policies.&nbsp;</p>\r\n\r\n<p>&emsp;&emsp;&bull;&emsp;&emsp;Personalize and improve the services, including to provide or recommend features, content, social connections, referrals, and advertisements.&nbsp;</p>\r\n\r\n<p> &nbsp;</p>\r\n\r\n<p>3. Handling and Sharing of Data:&nbsp;</p>\r\n\r\n<p> &nbsp;</p>\r\n\r\n<p>&emsp;&emsp;&bull;&emsp;&emsp;We handle your data with the utmost care and take appropriate security measures to protect it from unauthorized access, disclosure, alteration, or destruction.&nbsp;</p>\r\n\r\n<p>&emsp;&emsp;&bull;&emsp;&emsp;We may share your data with:&nbsp;</p>\r\n\r\n<p>&emsp;&emsp;&bull;&emsp;&emsp;Service providers: We work with third-party service providers to perform services on our behalf, such as payment processing, data analysis, email delivery, hosting services, customer service, and marketing assistance.&nbsp;</p>\r\n\r\n<p>&emsp;&emsp;&bull;&emsp;&emsp;Business transfers: We may share or transfer your information in connection with, or during negotiations of, any merger, sale of company assets, financing, or acquisition of all or a portion of our business by another company.&nbsp;</p>\r\n\r\n<p>&emsp;&emsp;&bull;&emsp;&emsp;Legal purposes: We may disclose your information if required to do so by law or in the good faith belief that such action is necessary to comply with applicable laws, respond to valid legal processes, or protect the rights, property, or safety of our users, us, or the public.&nbsp;</p>\r\n\r\n<p> &nbsp;</p>\r\n\r\n<p>4. Limiting Use:&nbsp;</p>\r\n\r\n<p> &nbsp;</p>\r\n\r\n<p>&emsp;&emsp;&bull;&emsp;&emsp;We limit the use of your data to the purposes that are compliant with our policy and have been disclosed to you. We do not use your data for any other purposes without obtaining your explicit consent.&nbsp;</p>\r\n\r\n<p> &nbsp;</p>\r\n\r\n<p>5. Your Choices:&nbsp;</p>\r\n\r\n<p> &nbsp;</p>\r\n\r\n<p>&emsp;&emsp;&bull;&emsp;&emsp;You have choices regarding your data. You can:&nbsp;</p>\r\n\r\n<p>&emsp;&emsp;&bull;&emsp;&emsp;Access and update your account information.&nbsp;</p>\r\n\r\n<p>&emsp;&emsp;&bull;&emsp;&emsp;Request the deletion of your account.&nbsp;</p>\r\n\r\n<p>&emsp;&emsp;&bull;&emsp;&emsp;Opt out of receiving promotional communications from us.&nbsp;</p>\r\n\r\n<p>&emsp;&emsp;&bull;&emsp;&emsp;Control the use of cookies and tracking technologies.&nbsp;</p>\r\n\r\n<p> &nbsp;</p>\r\n\r\n<p>6. Updates to the Policy:&nbsp;</p>\r\n\r\n<p> &nbsp;</p>\r\n\r\n<p>&emsp;&emsp;&bull;&emsp;&emsp;We may update this User Data Policy from time to time. We will notify you of any changes by posting the new policy on our website and updating the &ldquo;Last modified&rdquo; date. Your continued use of our services after the posting of any changes constitutes your acceptance of those changes.&nbsp;</p>\r\n\r\n<p>&nbsp;</p>', '<h2><strong>DMV check &amp; background check consent</strong></h2>\n\n<p>&nbsp;</p>\n\n<p>Consent to Request Driving Record</p>\n\n<p>I understand that tyt, LLC. (&lsquo;Company&rsquo;) will use Checkr., (&lsquo;Checkr, Inc.&rsquo;) to obtain a motor vehicle record as part of the application process to be a driver on the tyt Platform (a &lsquo;Driver&rsquo;). I also understand that if accepted as a Driver, to the extent permitted by law, Company may obtain further Reports from Checkr Inc. so as to update, renew or extend my status as a Driver. I hereby give permission to tyt to obtain my state driving record (also known as my motor vehicle record or MVR) in accordance with the Federal Driver&rsquo;s Privacy Protection Act (&lsquo;DPPA&rsquo;) and applicable state law. I acknowledge and understand that my driving record is a consumer report that contains public record information. I authorize, without reservation any party or agency contacted by Company or Checkr Inc. to furnish Company a copy of my state driving record. This authorization shall remain on file by Company for the duration of my time as a Driver, and will serve as ongoing authorization for Company to procure my state driving record at any time while I am a Driver.</p>\n\n<p>Consent to Request Consumer Report or Investigative Consumer Report Information</p>\n\n<p>I understand that tyt, LLC. (&lsquo;Company&rsquo;) will use Checkr Inc.,</p>\n\n<p>1 Montgomery St, Ste 2000, San Francisco, CA 94104</p>\n\n<p>to obtain a consumer report or investigative consumer report as part of the application process to be a driver on the tyt Platform (a &lsquo;Driver&rsquo;). I also understand that if accepted as a Driver, to the extent permitted by law, Company may obtain further Reports from Checkr so as to update, renew or extend my status as a Driver.</p>\n\n<p>I understand Checkr, Inc&rsquo;s (&ldquo;Checkr&rdquo;) investigation may include obtaining information regarding my criminal record, subject to any limitations imposed by applicable federal and state law. I understand such information may be obtained through direct or indirect contact with public agencies or other persons who may have such knowledge.</p>\n\n<p>The nature and scope of the investigation sought will include a Criminal Background check and SSN Trace.</p>\n\n<p>I acknowledge receipt of the attached summary of my rights under the Fair Credit Reporting Act and, as required by law, any related state summary of rights (collectively &ldquo;Summaries of Rights&rdquo;).</p>\n\n<p>This consent will not affect my ability to question or dispute the accuracy of any information contained in a Report. I understand if Company makes a conditional decision to disqualify me based all or in part on my Report, I will be provided with a copy of the Report and another copy of the Summaries of Rights, and if I disagree with the accuracy of the purported disqualifying information in the Report, I must notify Company within five business days of my receipt of the Report that I am challenging the accuracy of such information with Checkr.</p>\n\n<p>I hereby consent to this investigation and authorize Company to procure a Report on my background.</p>\n\n<p>In order to verify my identity for the purposes of Report preparation, I am voluntarily releasing my date of birth, social security number and the other information and fully understand that all decisions are based on legitimate non-discriminatory reasons.</p>\n\n<p>The name, address and telephone number of the nearest unit of the consumer reporting agency designated to handle inquiries regarding the investigative consumer report is:</p>\n\n<p><strong>Checkr, Inc.<br />\n1 Montgomery St, Ste 2000, San Francisco, CA 94104<br />\n844-824-3257 </strong><br />\n<br />\n<strong>California, Maine, Massachusetts, Minnesota, New Jersey &amp; Oklahoma Applicants Only:</strong> I have the right to request a copy of any Report obtained by Company from Checkr by checking the box. (Check only if you wish to receive a copy)</p>\n\n<p>New York Applicants Only</p>\n\n<p>I also acknowledge that I have received the attached copy of Article 23A of New York&rsquo;s Correction Law. I further understand that I may request a copy of any investigative consumer report by contacting Checkr. I further understand that I will be advised if any further checks are requested and provided the name and address of the consumer reporting agency.</p>\n\n<p>California Applicants and Residents</p>\n\n<p>If I am applying in California or reside in California, I understand I have the right to visually inspect the files concerning me maintained by an investigative consumer reporting agency during normal business hours and upon reasonable notice. The inspection can be done in person, and, if I appear in person and furnish proper identification; I am entitled to a copy of the file for a fee not to exceed the actual costs of duplication. I am entitled to be accompanied by one person of my choosing, who shall furnish reasonable identification. The inspection can also be done via certified mail if I make a written request, with proper identification, for copies to be sent to a specified addressee. I can also request a summary of the information to be provided by telephone if I make a written request, with proper identification for telephone disclosure, and the toll charge, if any, for the telephone call is prepaid by or directly charged to me. I further understand that the investigative consumer reporting agency shall provide trained personnel to explain to me any of the information furnished to me; I shall receive from the investigative consumer reporting agency a written explanation of any coded information contained in files maintained on me. &ldquo;Proper identification&rdquo; as used in this paragraph means information generally deemed sufficient to identify a person, including documents such as a valid driver&rsquo;s license, social security account number, military identification card and credit cards. I understand that I can access the following website checkr.com privacy to view Checkr&rsquo;s privacy practices, including information with respect to Checkr&rsquo;s preparation and processing of investigative consumer reports and guidance as to whether my personal information will be sent outside the United States or its territories.</p>\n\n<p>A Summary of Your Rights Under the Fair Credit Reporting Act</p>\n\n<p>The federal Fair Credit Reporting Act (FCRA) promotes the accuracy, fairness, and privacy of information in the files of consumer reporting agencies. There are many types of consumer reporting agencies, including credit bureaus and specialty agencies (such as agencies that sell information about check writing histories, medical records, and rental history records). Here is a summary of your major rights under the FCRA. <strong>For more information, including information about additional rights, go to www.consumerfinance.gov/learnmore or write to:</strong></p>\n\n<p>Consumer Financial Protection Bureau<br />\n1700 G Street NW, Washington, DC 20552</p>\n\n<p>&nbsp;</p>\n\n<ul>\n<li>You must be told if information in your file has been used against you. Anyone who uses a credit report or another type of consumer report to deny your application for credit, insurance, or employment &ndash; or to take another adverse action against you &ndash; must tell you, and must give you the name, address, and phone number of the agency that provided the information.</li>\n<li>You have the right to know what is in your file. You may request and obtain all the information about you in the files of a consumer reporting agency (your &ldquo;file disclosure&rdquo;). You will be required to provide proper identification, which may include your Social Security number. In many cases, the disclosure will be free. You are entitled to a free file disclosure if:\n<ol>\n<li>a person has taken adverse action against you because of information in your credit report;</li>\n<li>you are the victim of identity theft and place a fraud alert in your file;</li>\n<li>your file contains inaccurate information as a result of fraud;</li>\n<li>you are on public assistance;</li>\n<li>you are unemployed but expect to apply for employment within 60 days.</li>\n</ol>\nIn addition, all consumers are entitled to one free disclosure every 12 months upon request from each nationwide credit bureau and from nationwide specialty consumer reporting agencies. See www.consumerfinance.gov/learnmore for additional information.</li>\n<li>You have the right to ask for a credit score. Credit scores are numerical summaries of your credit-worthiness based on information from credit bureaus. You may request a credit score from consumer reporting agencies that create scores or distribute scores used in residential real property loans, but you will have to pay for it. In some mortgage transactions, you will receive credit score information for free from the mortgage lender.</li>\n<li>You have the right to dispute incomplete or inaccurate information. If you identify information in your file that is incomplete or inaccurate, and report it to the consumer reporting agency, the agency must investigate unless your dispute is frivolous. See www.consumerfinance.gov/learnmore for an explanation of dispute procedures.</li>\n<li>Consumer reporting agencies must correct or delete inaccurate, incomplete, or unverifiable information. Inaccurate, incomplete or unverifiable information must be removed or corrected, usually within 30 days. However, a consumer reporting agency may continue to report information it has verified as accurate.</li>\n<li>Consumer reporting agencies may not report outdated negative information. In most cases, a consumer reporting agency may not report negative information that is more than seven years old, or bankruptcies that are more than 10 years old.</li>\n<li>Access to your file is limited. A consumer reporting agency may provide information about you only to people with a valid need &ndash; usually to consider an application with a creditor, insurer, employer, landlord, or other business. The FCRA specifies those with a valid need for access.</li>\n<li>You must give your consent for reports to be provided to employers. A consumer reporting agency may not give out information about you to your employer, or a potential employer, without your written consent given to the employer. Written consent generally is not required in the trucking industry. For more information, go to www.consumerfinance.gov/learnmore</li>\n<li>You may limit &ldquo;prescreened&rdquo; offers of credit and insurance you get based on information in your credit report. Unsolicited &ldquo;prescreened&rdquo; offers for credit and insurance must include a toll-free phone number you can call if you choose to remove your name and address from the lists these offers are based on. You may opt-out with the nationwide credit bureaus at 1-888-567-8688.</li>\n<li>You may seek damages from violators. If a consumer reporting agency, or, in some cases, a user of consumer reports or a furnisher of information to a consumer reporting agency violates the FCRA, you may be able to sue in state or federal court.</li>\n<li>Identity theft victims and active duty military personnel have additional rights. For more information, visit www.consumerfinance.gov/learnmore.</li>\n</ul>\n\n<p>States may enforce the FCRA, and many states have their own consumer reporting laws. In some cases, you may have more rights under state law. For more information, contact your state or local consumer protection agency or your state Attorney General. For information about your federal rights, contact:</p>\n\n<p>&nbsp;</p>\n\n<table>\n<thead>\n<tr>\n<th>\n<p>Type of business</p>\n</th>\n<th>\n<p>Contact</p>\n</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1.a. Banks, savings associations, and credit unions with total assets of over $10 billion and their affiliates.</td>\n<td>a. Consumer Financial Protection Bureau 1700 G Street NW, Washington, DC 20552</td>\n</tr>\n<tr>\n<td>1.b. Such affiliates that are not banks, savings associations, or credit unions also should list, in addition to the CFPB:</td>\n<td>b. Federal Trade Commission: Consumer Response Center &ndash; FCRA Washington, DC 20580 877-382-4357</td>\n</tr>\n</tbody>\n<tbody>\n<tr>\n<td colspan=\"2\">\n<p>To the extent not included in item 1 above</p>\n</td>\n</tr>\n</tbody>\n<tbody>\n<tr>\n<td>2.a. National banks, federal savings associations, and federal branches and federal agencies of foreign banks</td>\n<td>a. Office of the Comptroller of the Currency Customer Assistance Group 1301 McKinney Street Suite 3450, Houston, TX 77010-9050</td>\n</tr>\n<tr>\n<td>2.b. State member banks, branches and agencies of foreign banks (other than federal branches, federal agencies, and Insured State Branches of Foreign Banks), commercial lending companies owned or controlled by foreign banks, and organizations operating under section 25 or 25A of the Federal Reserve Act</td>\n<td>b. Federal Reserve Consumer Help Center P.O. Box 1200 Minneapolis, MN 55480</td>\n</tr>\n<tr>\n<td>2.c. Nonmember Insured Banks, Insured State Branches of Foreign Banks, and insured state savings associations</td>\n<td>c. FDIC Consumer Response Center 1100 Walnut Street Box #11, Kansas City, MO 64106</td>\n</tr>\n<tr>\n<td>2.d. Federal Credit Unions</td>\n<td>d. National Credit Union Administration Office of Consumer Protection (OCP), Division of Consumer Compliance and Outreach (DCCO) 1775 Duke Street, Alexandria, VA 22314</td>\n</tr>\n</tbody>\n<tbody>\n<tr>\n<td>3. Air carriers</td>\n<td>Asst. General Counsel for Aviation Enforcement &amp; Proceedings Aviation Consumer Protection Division Department of Transportation 1200 New Jersey Avenue SE, Washington, DC 20590</td>\n</tr>\n</tbody>\n<tbody>\n<tr>\n<td>4. Creditors Subject to Surface Transportation Board</td>\n<td>Office of Proceedings, Surface Transportation Board, Department of Transportation 395 E Street SW, Washington, DC 20423</td>\n</tr>\n</tbody>\n<tbody>\n<tr>\n<td>5. Creditors Subject to Packers and Stockyards Act, 1921</td>\n<td>Nearest Packers and Stockyards Administration area supervisor</td>\n</tr>\n</tbody>\n<tbody>\n<tr>\n<td>6. Small Business Investment Companies</td>\n<td>Associate Deputy Administrator for Capital Access, United States Small Business Administration 409 Third Street SW 8th Floor, Washington, DC 20416</td>\n</tr>\n</tbody>\n<tbody>\n<tr>\n<td>7. Brokers and Dealers</td>\n<td>Securities and Exchange Commission 100 F St NE, Washington, DC 20549</td>\n</tr>\n</tbody>\n<tbody>\n<tr>\n<td>8. Federal Land Banks, Federal Land Bank Associations, Federal Intermediate Credit Banks, and Production Credit Associations</td>\n<td>Farm Credit Administration, 1501 Farm Credit Drive, McLean, VA 22102-5090</td>\n</tr>\n</tbody>\n<tbody>\n<tr>\n<td>9. Retailers, Finance Companies, and All Other Creditors Not Listed Above</td>\n<td>FTC Regional Office for region in which the creditor operates or Federal Trade Commission: Consumer Response Center &ndash; FCRA Washington, DC 20580 877-382-4357</td>\n</tr>\n</tbody>\n</table>', '<p><strong>Equal Employment Opportunity and Non-Discrimination Policy</strong></p>\r\n\r\n<p>I. OVERVIEW &amp; SCOPE</p>\r\n\r\n<p>MXGrab, LLC of 6255 TownCenter Drive Ste 819, Clemmons, North Carolina 27012, has established a Non-Discrimination and Equal Employment Opportunity Policy (&quot;EEO&quot;). This EEO policy applies to all aspects of the relationship between MXGrab, LLC and its employees, including, but not limited to, employment, recruitment, advertisements for employment, hiring and firing, compensation, assignment, classification of employees, termination, upgrading, promotions, transfer, training, working conditions, wages and salary administration, and employee benefits and application of policies. These policies apply to independent contractors, temporary employees, all personnel working on the premises, and any other persons or firms doing business for or with MXGrab, LLC. Any user found to have violated this prohibition will lose access to the MXGrab, LLC platform. Applicable laws in certain jurisdictions may require and/or allow the provision of services by and for the benefit of a specific category of persons. In such jurisdictions, services provided in compliance with these laws and the relevant applicable terms are permissible under this policy.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>II. POLICIES</p>\r\n\r\n<p>1. DISCRIMINATION.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>MXGrab, LLC shall not tolerate, under any circumstances, without exception, any form of discrimination based on race, creed, religion, color, age, disability, pregnancy, marital status, parental status, sexual orientation, gender expression, gender identity, veteran status, military status, domestic violence victim status, national origin, political affiliation, sex, predisposing genetic characteristics, or geographic location and any other status protected by the law. This list is not exhaustive. For qualified people with disabilities, MXGrab, LLC will make every effort to provide reasonable workplace accommodations that comply with applicable laws.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Discrimination in providing transportation services is strictly prohibited</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Associated drivers and employees are required to know the non-discrimination prohibitions. MXGrab, LLC will not tolerate as to public accommodations, which includes taxicab services unlawful discriminatory practice to deny, directly or indirectly, any person the full and equal enjoyment of the goods, services, facilities, privileges, advantages, and accommodations of any place of public accommodations (including taxicab services) wholly or partially for a discriminatory reason based on place of residence or business.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Prohibited Discriminatory Conduct:</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>MXGrab, LLC recognizes that associated drivers should never discriminate against certain customers by not picking them up, not taking them where they wish to go or by treating them with less respect based on the protected characteristics or traits listed above. Specific examples of discriminatory conduct, include the following:</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Not picking up a passenger on the basis of any protected characteristic or trait, including not picking up a passenger with a service animal&middot; Requesting that a passenger get out of a taxicab on the basis of a protected characteristic or trait &middot; Using derogatory or harassing language on the basis of a protected characteristic or trait &middot; Refusing a pickup in a specific geographic area.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Geographic Discrimination:</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>MXGrab, LLC does not tolerate geographic discrimination and recognizes how important it is to take the customer to the requested destination without discriminating against that customer based on where he or she wishes to go. All associated drivers, employees, managers, stakeholders, and agents at MXGrab, LLC will comply with these anti-discrimination policies. In some cases, local laws and regulations may provide greater protections than those described in this policy.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>2. HARASSMENT</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>MXGrab, LLC is committed to providing a work environment that is free from harassment. Any behavior that is unwanted and offensive to the recipient, which creates an intimidating, hostile, or humiliating work environment for that person violates MXGrab, LLC&#39;s policy. Harassment can occur between members of the opposite sex or the same sex. Harassment, verbal or non-verbal, explicit or implicit, based on an individual&#39;s sex, race, ethnicity, national origin, age, religion or any other legally protected characteristics will not be tolerated. All employees, including supervisors, other management personnel, and independent contractors, are required to abide by this policy. No person will be adversely affected in employment with MXGrab, LLC as a result of bringing complaints of harassment.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>3. SEXUAL HARASSMENT</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Unwelcome sexual advances, requests for sexual favors, and other verbal or physical conduct of a sexual nature constitute harassment when (1) submission to such conduct is made either explicitly or implicitly a term or condition of employment; (2) submission to or rejection of such conduct by an individual is used as a basis for employment decisions, promotion, transfer, selection for training, performance evaluations, benefits, or other terms and conditions of employment; or (3) such conduct has the purpose or effect of creating an intimidating, hostile, or offensive work environment or substantially interferes with an employee&#39;s work performance . MXGrab, LLC prohibits inappropriate conduct that is sexual in nature at work, on Company business, or at Company-sponsored events including the following: comments, jokes, degrading language, sexually suggestive objects, books, or any form of media electronic or in print form. Sexual harassment is prohibited whether it is between members of the opposite sex or members of the same sex.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>4. STATEMENT ON AFFIRMATIVE ACTION</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>An affirmative action program has been developed where MXGrab, LLC seeks to increase the representation and participation of minorities</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>5. REPORTING DISCRIMINATION &amp; HARASSMENT</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>If an employee feels that he or she has been harassed as described in this policy, they should immediately file grievance with: Grievance Department, 6255 TownCenter Drive, Ste 819, Clemmons NC 27012, or by email at compliance@MXGrab.us. Once the matter has been reported it will be promptly investigated and any corrective action will be taken when deemed appropriate. All complaints or unlawful harassment under this policy or otherwise will be handled in as confidential a manner as possible. Timely reporting is encouraged to prevent the re-occurrence of, or otherwise address, the behavior that violates this policy or law. Delays in reporting a complaint can limit the type of effectiveness of a response by MXGrab, LLC. The procedure for reporting incidents of discriminatory or harassing behavior is not intended to prevent the right of any employee to seek a remedy under available state or federal law by immediately reporting the matter to the appropriate state or federal agency.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>6. RETALIATION</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Retaliation against any person associated with MXGrab, LLC who reports instances of harassment - whether he or she is directly or indirectly involved - is in violation of MXGrab, LLC&#39;s policies. All reported incidents are assumed to be made in good faith. Any allegations that are proven false will be treated as a serious matter.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>7. DISCIPLINARY MEASURES FOR HARASSMENT</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Any employee engaging in behavior that violates this policy will be subject to disciplinary action, including the possible termination of employment, whether or not an actual law has been violated.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>8. REMEDIES</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Remedies for any instances of verified employment discrimination, whether caused intentionally or by actions that have a discriminatory effect, may include back pay, hiring, promotion, reinstatement, front pay, reasonable accommodation, or other actions deemed appropriate by MXGrab, LLC. Remedies can also include payment of attorney&#39;s fees, expert witness fees, court costs and other applicable legal fees.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>9. POLICY IMPLEMENTATION</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>MXGrab&rsquo;s CEO, Lynn Graham, fully supports the implementation of this Policy effective as of April 19, 2021.</p>', '<h1>Terms and Conditions</h1>\r\n\r\n<p>END USER LICENSE AGREEMENT</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Last updated FEB&nbsp;16, 2024</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>MXGrab ,LLC is licensed to You (End-User) by MXGrab , LLC, located at 6255 Towncenter Drive Ste 819, Clemmons, North Carolina 27012, United States (hereinafter: Licensor), for use only under the terms of this License Agreement.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>By downloading the Application from the Apple AppStore and Google Play, and any update thereto (as permitted by this License Agreement), You indicate that You agree to be bound by all of the terms and conditions of this License Agreement, and that You accept this License Agreement.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>The parties of this License Agreement acknowledge that Apple and/or Google Play is not a Party to this License Agreement and is not bound by any provisions or obligations with regard to the Application, such as warranty, liability, maintenance and support thereof. MXGrab , LLC, not Apple or Google Play, is solely responsible for the licensed Application and the content thereof.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>This License Agreement may not provide for usage rules for the Application that are in conflict with the latest App Store Terms of Service. MXGrab , LLC acknowledges that it had the opportunity to review said terms and this License Agreement is not conflicting with them.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>All rights not expressly granted to You are reserved.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>1. THE APPLICATION</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>MXGrab (hereinafter: Application) is a piece of software is a Rideshare platform - and customized for Apple and Android mobile devices. It is used to Connecting riders to drivers to get to point A to B by a push of a button.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>The Application is not tailored to comply with industry-specific regulations (Health Insurance Portability and Accountability Act (HIPAA), Federal Information Security Management Act (FISMA), etc.), so if your interactions would be subjected to such laws, you may not use this Application. You may not use the Application in a way that would violate the Gramm-Leach-Bliley Act (GLBA).</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>2. SCOPE OF LICENSE</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>2.1 You are given a non-transferable, non-exclusive, non-sublicensable license to install and use the Licensed Application on any Apple-branded or Google Products that You (End-User) own or control and as permitted by the Usage Rules set forth in this section and the App Store Terms of Service, with the exception that such licensed Application may be accessed and used by other accounts associated with You (End-User, The Purchaser) via Family Sharing or volume purchasing.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>2.2 This license will also govern any updates of the Application provided by Licensor that replace, repair, and/or supplement the first Application, unless a separate license is provided for such update in which case the terms of that new license will govern.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>2.3 You may not share or make the Application available to third parties (unless to the degree allowed by the Apple Terms and Conditions, and with MXGrab , LLC&#39;s prior written consent), sell, rent, lend, lease or otherwise redistribute the Application.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>2.4 You may not reverse engineer, translate, disassemble, integrate, decompile, integrate, remove, modify, combine, create derivative works or updates of, adapt, or attempt to derive the source code of the Application, or any part thereof (except with MXGrab , LLC&#39;s prior written consent).</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>2.5 You may not copy (excluding when expressly authorized by this license and the Usage Rules) or alter the Application or portions thereof. You may create and store copies only on devices that You own or control for backup keeping under the terms of this license, the App Store Terms of Service, and any other terms and conditions that apply to the device or software used. You may not remove any intellectual property notices. You acknowledge that no unauthorized third parties may gain access to these copies at any time.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>2.6 Violations of the obligations mentioned above, as well as the attempt of such infringement, may be subject to prosecution and damages.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>2.7 Licensor reserves the right to modify the terms and conditions of licensing.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>2.8 Nothing in this license should be interpreted to restrict third-party terms. When using the Application, You must ensure that You comply with applicable third-party terms and conditions.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>3. TECHNICAL REQUIREMENTS</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>3.1 Licensor attempts to keep the Application updated so that it complies with modified/new versions of the firmware and new hardware. You are not granted rights to claim such an update.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>3.2 You acknowledge that it is Your responsibility to confirm and determine that the app end-user device on which You intend to use the Application satisfies the technical specifications mentioned above.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>3.3 Licensor reserves the right to modify the technical specifications as it sees appropriate at any time.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>4. MAINTENANCE AND SUPPORT</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>4.1 The Licensor is solely responsible for providing any maintenance and support services for this licensed Application. You can reach the Licensor at the email address listed in the App Store or Google Play Overview for this licensed Application.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>4.2 MXGrab , LLC and the End-User acknowledge that Apple and or Google Play has no obligation whatsoever to furnish any maintenance and support services with respect to the licensed Application.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>5. USE OF DATA</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>You acknowledge that Licensor will be able to access and adjust Your downloaded licensed Application content and Your personal information, and that Licensor&#39;s use of such material and information is subject to Your legal agreements with Licensor and Licensor&#39;s privacy policy: http://www.MXGrab.us/privacy.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>6. USER GENERATED CONTRIBUTIONS</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>The Application may invite you to chat, contribute to, or participate in blogs, message boards, online forums, and other functionality, and may provide you with the opportunity to create, submit, post, display, transmit, perform, publish, distribute, or broadcast content and materials to us or in the Application, including but not limited to text, writings, video, audio, photographs, graphics, comments, suggestions, or personal information or other material (collectively, &quot;Contributions&quot;). Contributions may be viewable by other users of the Application and through third-party websites or applications. As such, any Contributions you transmit may be treated as non-confidential and non-proprietary. When you create or make available any Contributions, you thereby represent and warrant that:</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>1. The creation, distribution, transmission, public display, or performance, and the accessing, downloading, or copying of your Contributions do not and will not infringe the proprietary rights, including but not limited to the copyright, patent, trademark, trade secret, or moral rights of any third party.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>2. You are the creator and owner of or have the necessary licenses, rights, consents, releases, and permissions to use and to authorize us, the Application, and other users of the Application to use your Contributions in any manner contemplated by the Application and these Terms of Use.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>3. You have the written consent, release, and/or permission of each and every identifiable individual person in your Contributions to use the name or likeness or each and every such identifiable individual person to enable inclusion and use of your Contributions in any manner contemplated by the Application and these Terms of Use.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>4. Your Contributions are not false, inaccurate, or misleading.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>5. Your Contributions are not unsolicited or unauthorized advertising, promotional materials, pyramid schemes, chain letters, spam, mass mailings, or other forms of solicitation.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>6. Your Contributions are not obscene, lewd, lascivious, filthy, violent, harassing, libelous, slanderous, or otherwise objectionable (as determined by us).</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>7. Your Contributions do not ridicule, mock, disparage, intimidate, or abuse anyone.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>8. Your Contributions are not used to harass or threaten (in the legal sense of those terms) any other person and to promote violence against a specific person or class of people.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>9. Your Contributions do not violate any applicable law, regulation, or rule.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>10. Your Contributions do not violate the privacy or publicity rights of any third party.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>11. Your Contributions do not contain any material that solicits personal information from anyone under the age of 18 or exploits people under the age of 18 in a sexual or violent manner.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>12. Your Contributions do not violate any applicable law concerning child pornography, or otherwise intended to protect the health or well-being of minors.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>13. Your Contributions do not include any offensive comments that are connected to race, national origin, gender, sexual preference, or physical handicap.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>14. Your Contributions do not otherwise violate, or link to material that violates, any provision of these Terms of Use, or any applicable law or regulation.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Any use of the Application in violation of the foregoing violates these Terms of Use and may result in, among other things, termination or suspension of your rights to use the Application.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>7. CONTRIBUTION LICENSE</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>By posting your Contributions to any part of the Application or making Contributions accessible to the Application by linking your account from the Application to any of your social networking accounts, you automatically grant, and you represent and warrant that you have the right to grant, to us an unrestricted, unlimited, irrevocable, perpetual, non-exclusive, transferable, royalty-free, fully-paid, worldwide right, and license to host, use copy, reproduce, disclose, sell, resell, publish, broad cast, retitle, archive, store, cache, publicly display, reformat, translate, transmit, excerpt (in whole or in part), and distribute such Contributions (including, without limitation, your image and voice) for any purpose, commercial advertising, or otherwise, and to prepare derivative works of, or incorporate in other works, such as Contributions, and grant and authorize sublicenses of the foregoing. The use and distribution may occur in any media formats and through any media channels.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>This license will apply to any form, media, or technology now known or hereafter developed, and includes our use of your name, company name, and franchise name, as applicable, and any of the trademarks, service marks, trade names, logos, and personal and commercial images you provide. You waive all moral rights in your Contributions, and you warrant that moral rights have not otherwise been asserted in your Contributions.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>We do not assert any ownership over your Contributions. You retain full ownership of all of your Contributions and any intellectual property rights or other proprietary rights associated with your Contributions. We are not liable for any statements or representations in your Contributions provided by you in any area in the Application. You are solely responsible for your Contributions to the Application and you expressly agree to exonerate us from any and all responsibility and to refrain from any legal action against us regarding your Contributions.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>We have the right, in our sole and absolute discretion, (1) to edit, redact, or otherwise change any Contributions; (2) to re-categorize any Contributions to place them in more appropriate locations in the Application; and (3) to pre-screen or delete any Contributions at any time and for any reason, without notice. We have no obligation to monitor your Contributions.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>8. LIABILITY</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>8.1 Licensor&#39;s responsibility in the case of violation of obligations and tort shall be limited to intent and gross negligence. Only in case of a breach of essential contractual duties (cardinal obligations), Licensor shall also be liable in case of slight negligence. In any case, liability shall be limited to the foreseeable, contractually typical damages. The limitation mentioned above does not apply to injuries to life, limb, or health.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>8.2 Licensor takes no accountability or responsibility for any damages caused due to a breach of duties according to Section 2 of this Agreement. To avoid data loss, You are required to make use of backup functions of the Application to the extent allowed by applicable third-party terms and conditions of use. You are aware that in case of alterations or manipulations of the Application, You will not have access to licensed Application.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>9. WARRANTY</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>9.1 Licensor warrants that the Application is free of spyware, trojan horses, viruses, or any other malware at the time of Your download. Licensor warrants that the Application works as described in the user documentation.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>9.2 No warranty is provided for the Application that is not executable on the device, that has been unauthorizedly modified, handled inappropriately or culpably, combined or installed with inappropriate hardware or software, used with inappropriate accessories, regardless if by Yourself or by third parties, or if there are any other reasons outside of MXGrab , LLC&#39;s sphere of influence that affect the executability of the Application.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>9.3 You are required to inspect the Application immediately after installing it and notify MXGrab , LLC about issues discovered without delay by e-mail provided in Product Claims. The defect report will be taken into consideration and further investigated if it has been mailed within a period of ninety (90) days after discovery.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>9.4 If we confirm that the Application is defective, MXGrab , LLC reserves a choice to remedy the situation either by means of solving the defect or substitute delivery.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>9.5 In the event of any failure of the Application to conform to any applicable warranty, You may notify the App-Store-Operator, and Your Application purchase price will be refunded to You. To the maximum extent permitted by applicable law, the App-Store-Operator will have no other warranty obligation whatsoever with respect to the App, and any other losses, claims, damages, liabilities, expenses and costs attributable to any negligence to adhere to any warranty.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>9.6 If the user is an entrepreneur, any claim based on faults expires after a statutory period of limitation amounting to twelve (12) months after the Application was made available to the user. The statutory periods of limitation given by law apply for users who are consumers.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>10. PRODUCT CLAIMS</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>MXGrab , LLC and the End-User acknowledge that MXGrab , LLC, and not Apple, is responsible for addressing any claims of the End-User or any third party relating to the licensed Application or the End-User&rsquo;s possession and/or use of that licensed Application, including, but not limited to:</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>(i) product liability claims;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>(ii) any claim that the licensed Application fails to conform to any applicable legal or regulatory requirement; and</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>(iii) claims arising under consumer protection, privacy, or similar legislation, including in connection with Your Licensed Application&rsquo;s use.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>11. LEGAL COMPLIANCE</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>You represent and warrant that You are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a &quot;terrorist supporting&quot; country; and that You are not listed on any U.S. Government list of prohibited or restricted parties.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>12. CONTACT INFORMATION</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>For general inquiries, complaints, questions or claims concerning the licensed Application, please contact:</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Global</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>13. TERMINATION</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>The license is valid until terminated by MXGrab , LLC or by You. Your rights under this license will terminate automatically and without notice from MXGrab , LLC if You fail to adhere to any term(s) of this license. Upon License termination, You shall stop all use of the Application, and destroy all copies, full or partial, of the Application.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>14. THIRD-PARTY TERMS OF AGREEMENTS AND BENEFICIARY</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>MXGrab , LLC represents and warrants that MXGrab , LLC will comply with applicable third-party terms of agreement when using licensed Application.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>In Accordance with Section 9 of the &quot;Instructions for Minimum Terms of Developer&#39;s End-User License Agreement,&quot; Apple and Apple&#39;s subsidiaries shall be third-party beneficiaries of this End User License Agreement and - upon Your acceptance of the terms and conditions of this license agreement, Apple will have the right (and will be deemed to have accepted the right) to enforce this End User License Agreement against You as a third-party beneficiary thereof.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>15. INTELLECTUAL PROPERTY RIGHTS</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>MXGrab , LLC and the End-User acknowledge that, in the event of any third-party claim that the licensed Application or the End-User&#39;s possession and use of that licensed Application infringes on the third party&#39;s intellectual property rights, MXGrab , LLC, and not Apple, will be solely responsible for the investigation, defense, settlement and discharge or any such intellectual property infringement claims.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>16. APPLICABLE LAW</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>This license agreement is governed by the laws of the State of North Carolina excluding its conflicts of law rules.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>17. MISCELLANEOUS</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>17.1 If any of the terms of this agreement should be or become invalid, the validity of the remaining provisions shall not be affected. Invalid terms will be replaced by valid ones formulated in a way that will achieve the primary purpose.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>17.2 Collateral agreements, changes and amendments are only valid if laid down in writing. The preceding clause can only be waived in writing.</p>', 'xo6KnllBLUnJgI5fmRUxls8XepKjgA42fAXnbsdx.jpg', '<h2>What you will need to apply with us</h2>\n\n<ul>\n<li>You must have a valid driver&rsquo;s license - Temporary or out-of-state licenses are also acceptable.</li>\n<li>You must be 25 years or older to drive.</li>\n<li>You must have a clean driving record with auto insurance.</li>\n<li>You consent to our driver screening and background check.</li>\n<li>You must own an iPhone or Android smartphone that can download and run the tyt Driver app.</li>\n</ul>', 'jVaKZ7cmFBp1uAuvjgn5sjxpeOEgSmMw8zduGTaf.jpg', '<h2>Vehicle Requirements</h2>\n\n<ul>\n<li>2008 or newer**</li>\n<li>4 doors</li>\n<li>5-8 seats, including the driver&rsquo;s</li>\n<li>North Carolina plates</li>\n<li><strong>**Car year may vary by region </strong></li>\n</ul>', '1RexFkyPOi1BErCFKU8uYwMm9mL5VzuysTWRaxaJ.jpg', '<h3>Document requirements</h3>\n\n<ul>\n<li>Driver profile photo</li>\n<li>Vehicle registration</li>\n<li>Personal vehicle insurance</li>\n<li>North Carolina vehicle inspection</li>\n</ul>', 'IYc2Oh62ZYMypFNRqV8CwuJxDEhflXY8zEP56tav.jpg', '<h1><strong>Download the Driver MXGrab app Today</strong></h1>', '<p><strong>Good things happen when people can move, whether across town or toward their dreams. Opportunities </strong></p>\r\n\r\n<p><strong>appear, open up, become reality.</strong></p>', '<h1><strong>Be your own boss</strong></h1>\r\n\r\n<h3>Hours are completely flexible. Drive mornings, evenings, weekdays, or weekends.</h3>', '1eTol1vBUxw65H9xndB8ocgR1qbrHy4tpfvI1m4G.svg', '<h2><strong>Download</strong></h2>', '<p>Download the MXGrab Driver App from the Google Play or App Store on your smartphone.</p>', 'cRVYpHFqyFPxV42Pp4rhK1gSXilXhFUF8RXPMaGL.svg', '<h2><strong>Upload</strong></h2>', '<p>Upload your driver required documents in the app. Get Approved</p>', 'f02ORB0Lsl9ByAVxjjGVvG86U7IOFHVgZzvRiUo1.svg', '<h2><strong>Drive!</strong></h2>', '<p>Drive and earn as much as you want. Get paid weekly for the time and distance of a trip plus tips.</p>', '<h2><strong>Why Drive with MXGrab</strong></h2>', '<p><strong>About us</strong></p>', 'CkXGI95QRqqefSia0gxn3CVeHxiALzoZgWFbaOJO.png', '<p>MXGrab is a rideshare platform facilitating peer to peer ridesharing by means of connecting passengers who are in need of rides from drivers with available cars to get from point A to point B with the press of a button. mxgrab&nbsp;is a clever 4 letter word that sounds like &quot;easy&quot; a fantastic connotation of effortless ease and accessibility to get you to your destination. mxgrab welcomes applicants year-round - summer, winter, fall, spring, and holiday work seekers.</p>', '<p>Our Mission</p>', 'wxZlB9jU3D51XbnxyhbeQMFXqNLgyHMUKIJ2WXx4.png', '<p>It&rsquo;s our goal to create a flexible working environment that is inclusive and reflects the diversity of the cities we serve&mdash;where everyone can be their authentic self, and where that authenticity is celebrated as a strength. By creating an environment where people from every background can thrive, we&rsquo;ll make tyt a better company&mdash;for our drivers and our customers.</p>', '<p>Driver Commitment</p>', 'laHGbcRZ8YbrFYXQcWq1HebYW4HhdnuvTOtD3CKH.png', '<p>We promise to provide the technology and the support needed to empower you to be your own boss, deciding on when and how often you drive. Let us take you places. Through our software, we take the guesswork and hassle out of securing your fare. We will always seek to apply technological advancements to the current process in order that the driver is fully equipped to operate in the given climate.</p>', 'Li20MOvvnDivkhtFCmBDWRO5MmSTd8toQmNbyDw5.jpg', '2KCGoFb8C72fb9FhRPuBjXA20rXvc25MzMwxEcaA.png', '<p><strong>Download the MXGRAB&nbsp;App</strong></p>', '<p><strong>Real-Time ETA Prediction</strong></p>', '<p><strong>Customer Referral</strong></p>', '<p><strong>In-App Chat</strong></p>', '<p><strong>Emergency SOS Button</strong></p>', 'PO4Wuwv9b8LJdsF3zhm8WGSwLuTHTydxpUNjwhs1.png', '<h3>Get the app</h3>', '[\"uploadwebfrontfiles\",\"ScQ0KPynipwrBTXjBoeHgHCfS4jHPok6dEigLOBX.png\"]', '<p>Get the app on Apple App Store or Google Play</p>', '<p>You can complete the application in the MXGrab&nbsp;Driver App</p>', 'r2cfzV9hE3rOzrf4syLRn7abB2jbPHRfpJA63Sy6.png', '<h3>Apply to drive</h3>', '<h3>Get Approved</h3>', '1v9jBpYjpsBxP0krKKN4eo16nGqotzQbCOViIEWV.png', '<p>After uploading your required documents and passing the background checks, you&rsquo;re ready to hit the road and start earning.</p>', '<p>Open the app and turn on driver mode</p>', 'LJPfXEJzwSDoebFVLyG3ye02Eu1EmUNdM2LzmdSA.png', '<p>Open the app</p>', '<h3>Accept a passenger</h3>', '', '<p>Accept a passenger ride request</p>', '<p>Pick up your passenger at their location</p>', 'vzgfJTndfgLAHJZToPd2LgJ8NSshNW5jR3yasY52.png', '<h3>Pick up</h3>', '<h3>Drop off</h3>', 'BNbvwMcPZIsYCz3TZRNgw721khj6IJXhuA8E7XJh.png', '<p>Drop off your passenger at their destination</p>', '0000-00-00', '2024-10-03', 'ADxHFtLFNi4aqt65UBjvLIcJIwsDd83ovovCEfvI.jpg', '<p>Get In Touch With Us</p>\r\n\r\n<p>Have a question, inquiry or comment? Feel free to contact us. Simply fill in the contact form or just select your preferred channel and send us a message. We&rsquo;ll do everything we can to respond quickly.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Address: </strong><br />\r\nGlobal</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Email:&nbsp;<a href=\"mailto:biz@miracuves.com\">biz@miracuves.com</a></strong></p>\r\n\r\n<p><strong>Phone:</strong>&nbsp;+919903909333</p>\r\n\r\n<p>Media Inquiries: <a href=\"mailto:media@tyt.us\">media@tyt.us</a><br />\r\nPartnership Inquiries: <a href=\"mailto:partner@tyt.us\"> partner@tyt.us</a><br />\r\nFile a complaint: <a href=\"mailto:compliance@tyt.us\"> compliance@tyt.us</a><br />\r\nGeneral Inquiries: <a href=\"mailto:info@tyt.us\"> info@tyt.us</a></p>', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3915.8124423896343!2d76.99306681417376!3d11.052684457057428!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3ba85c1faf9dbe73%3A0x68dc9947d4882eff!2sTaxi%20Dispatch%20Software%2FSystem%20%7C%20White%20Label%20Taxi%20App%20-%20TagYourTaxi!5e0!3m2!1sen!2sin!4v1616142939290!5m2!1sen!2sin', '#', '#', '#', '#', '#000000', '#000000', '#0475a6', '#0475a6', '#0475a6', '#1ecb15', '#000000');

-- --------------------------------------------------------

--
-- Table structure for table `linked_social_accounts`
--

CREATE TABLE `linked_social_accounts` (
  `id` int(10) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `provider_name` varchar(191) DEFAULT NULL,
  `provider_id` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `ltm_translations`
--

CREATE TABLE `ltm_translations` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `status` int(11) NOT NULL DEFAULT 0,
  `locale` varchar(191) NOT NULL,
  `group` varchar(191) NOT NULL,
  `key` text NOT NULL,
  `value` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;

-- --------------------------------------------------------

--
-- Table structure for table `mail_otp_verifications`
--

CREATE TABLE `mail_otp_verifications` (
  `id` char(36) NOT NULL,
  `email` varchar(50) NOT NULL,
  `otp` varchar(191) DEFAULT NULL,
  `verified` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `mail_templates`
--

CREATE TABLE `mail_templates` (
  `id` char(36) NOT NULL,
  `mail_type` varchar(191) NOT NULL,
  `description` text NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `mail_templates`
--

INSERT INTO `mail_templates` (`id`, `mail_type`, `description`, `active`, `created_at`, `updated_at`) VALUES
('01cc2a33-2236-4234-9c19-d38724fca6f0', 'welcome_mail', '<p>Hello $user_name</p>\n\n            <p>Thank you for joining MI Softwares! We are thrilled to have you as a part of our community.</p>\n\n            <p>Our mission is to mobility. We hope that you will find our products/services to be useful and enjoyable.</p>\n\n            <p>To get started, please take a few moments to explore our website and familiarize yourself with our offerings. If you have any questions or concerns, our customer support team is always here to help.</p>\n\n            <p>We look forward to working with you and providing you with a top-notch experience.</p>\n\n            <p>Best regards,</p>\n\n            <p>MI Softwares</p>', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
('1c83354b-dc8a-4af1-943e-4d8c70807818', 'invoice_maill', '<p>Thank you for using our taxi service for your recent trip. Please find below the details of your taxi bill for the trip that you took on $date:</p>\n                <table>\n                    <thead>\n                        <tr>\n                            <th>Trip Details</th>\n                            <th>Amount</th>\n                        </tr>\n                    </thead>\n                    <tbody>\n                        <tr>\n                            <td>Pickup Address</td>\n                            <td>$pickup_address</td>\n                        </tr>\n                        <tr>\n                            <td>Dropoff Address</td>\n                            <td>$dropoff_address</td>\n                        </tr>\n                        <tr>\n                            <td>Base fair</td>\n                            <td>$base_price</td>\n                        </tr>\n                        <tr>\n                            <td>Additional Distance Price Per Km</td>\n                            <td>$additional_distance_price_per_Km</td>\n                        </tr>\n                        <tr>\n                            <td>Additional Time Price Per Min</td>\n                            <td>$additional_time_price_per_min</td>\n                        </tr>\n                        <tr>\n                            <td>Waiting Charge Per Minutes</td>\n                            <td>$waiting_Charge_per_minutes</td>\n                        </tr>\n                        <tr>\n                            <td>Cancellation Fee</td>\n                            <td>$cancellation_fee</td>\n                        </tr>\n                        <tr>\n                            <td>Service Tax</td>\n                            <td>$service_tax</td>\n                        </tr>\n                        <tr>\n                            <td>Promo Discount</td>\n                            <td>$promo_discount</td>\n                        </tr>\n                        <tr>\n                            <td>Admin Commission</td>\n                            <td>$admin_commision</td>\n                        </tr>\n                        <tr>\n                            <td>Driver Commission</td>\n                            <td>$driver_commission</td>\n                        </tr>\n                        <tr>\n                            <td>Total Amount</td>\n                            <td>$total_amount</td>\n                        </tr>\n                    </tbody>\n                </table>\n\n                <p>Please note that the fare includes all taxes and fees. If you have any questions or concerns regarding this bill, please feel free to contact our customer support team at any time.</p>\n\n                <p>Thank you for choosing our taxi service. We hope to see you again soon.</p>\n\n                <p>Best regards,</p>\n\n                <p>$taxi_service_name</p>', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
('9b3fa744-ed53-47a7-8029-c614b214bb58', 'welcome_mail_driver', '<p>Dear $user_name,</p>\n\n        <p>Congratulations on becoming a newly registered driver! We are excited to welcome you to the world of driving and wanted to take a moment to extend our warmest greetings.</p>\n\n        <p>As a registered driver, you now have the opportunity to explore new destinations, embrace independence, and experience the joys of the open road. We hope this new chapter brings you many memorable adventures and experiences.</p>\n\n        <p>Please remember to prioritize safety as you embark on your driving journey. Observe traffic laws, wear your seatbelt, and remain attentive at all times. Safe driving not only protects you but also ensures the well-being of others around you.</p>\n\n        <p>If you ever have any questions or need assistance along the way, our team is here to support you. Don&#39;t hesitate to reach out to us; we&#39;re more than happy to help.</p>\n\n        <p>Once again, congratulations on your registration! Enjoy the freedom and excitement that driving offers. We wish you safe travels and an incredible journey ahead.</p>\n\n        <p>Best regards,</p>\n\n        <p>Tagxi</p>', 1, '2023-11-08 03:14:22', '2023-11-08 03:14:22');

-- --------------------------------------------------------

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

CREATE TABLE `migrations` (
  `id` int(10) UNSIGNED NOT NULL,
  `migration` varchar(191) NOT NULL,
  `batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_04_02_193005_create_translations_table', 1),
(2, '2016_06_01_000001_create_oauth_auth_codes_table', 1),
(3, '2016_06_01_000002_create_oauth_access_tokens_table', 1),
(4, '2016_06_01_000003_create_oauth_refresh_tokens_table', 1),
(5, '2016_06_01_000004_create_oauth_clients_table', 1),
(6, '2016_06_01_000005_create_oauth_personal_access_clients_table', 1),
(7, '2016_09_21_000013_create_countries_table', 1),
(8, '2017_12_28_000000_create_jobs_table', 1),
(9, '2017_12_29_000000_create_users_table', 1),
(10, '2017_12_30_000000_create_failed_jobs_table', 1),
(11, '2017_12_30_000000_create_roles_and_permissions_table', 1),
(12, '2017_12_30_000001_create_password_resets_table', 1),
(13, '2017_12_30_000001_create_settings_table', 1),
(14, '2017_12_30_000002_create_mobile_otp_verifications_table', 1),
(15, '2017_12_30_000003_create_car_make_table', 1),
(16, '2017_12_30_000004_create_car_model_table', 1),
(17, '2018_09_21_000014_create_states_table', 1),
(18, '2018_09_21_000015_create_cities_table', 1),
(19, '2018_09_21_062905_create_service_locations_table', 1),
(20, '2018_11_12_000016_create_timezones_table', 1),
(21, '2018_11_13_000017_create_admin_details_table', 1),
(22, '2018_11_16_000018_create_vehicle_types_table', 1),
(23, '2018_11_28_000019_create_company_table', 1),
(24, '2018_12_05_000020_create_owners_table', 1),
(25, '2018_12_05_000020_create_zones_table', 1),
(26, '2018_12_05_000021_create_drivers_table', 1),
(27, '2018_12_05_000022_create_driver_details_table', 1),
(28, '2018_12_11_000023_create_driver_needed_documents_table', 1),
(29, '2018_12_11_000024_create_driver_documents_table', 1),
(30, '2018_12_16_000025_create_websockets_statistics_entries_table', 1),
(31, '2019_01_30_000026_create_linked_social_accounts_table', 1),
(32, '2019_02_07_000027_create_zone_bounds_table', 1),
(33, '2019_02_08_000028_create_zone_types_table', 1),
(34, '2019_03_07_000029_create_card_info_table', 1),
(35, '2019_09_02_061132_create_user_details_table', 1),
(36, '2019_09_12_110700_create_sos_table', 1),
(37, '2019_10_09_152444_create_zone_type_price_table', 1),
(38, '2019_12_14_000001_create_personal_access_tokens_table', 1),
(39, '2020_02_07_063156_create_promo_table', 1),
(40, '2020_02_08_063156_create_requests_table', 1),
(41, '2020_02_08_070239_create_requests_meta_table', 1),
(42, '2020_02_13_121546_create_distance_matrixes_table', 1),
(43, '2020_02_26_094511_create_request_places_table', 1),
(44, '2020_03_08_071438_update_typesandtypeprice_table', 1),
(45, '2020_04_08_134813_create_projects_table', 1),
(46, '2020_04_09_060321_create_developers_table', 1),
(47, '2020_04_09_134236_create_poc_clients_table', 1),
(48, '2020_04_10_080607_create_project_flavours_table', 1),
(49, '2020_04_11_134819_create_mobile_builds_table', 1),
(50, '2020_06_08_174227_create_user_wallet_table', 1),
(51, '2020_08_02_065414_create_faqs_table', 1),
(52, '2020_08_02_085836_create_complaint_titles_table', 1),
(53, '2020_08_02_094044_create_cancellation_reasons_table', 1),
(54, '2020_08_02_102914_create_complaints_table', 1),
(55, '2020_08_05_163747_create_request_bills_table', 1),
(56, '2020_08_09_030027_create_request_ratings_table', 1),
(57, '2020_08_17_101931_update_users_table', 1),
(58, '2020_08_17_133227_create_zone_surge_prices_table', 1),
(59, '2020_08_18_065839_update_driver_columns_table', 1),
(60, '2020_08_26_123414_update_requests_for_dispatcher_columns_table', 1),
(61, '2020_08_26_125832_create_adhoc_users_table', 1),
(62, '2020_08_30_113935_create_user_wallet_history', 1),
(63, '2020_08_30_114603_create_driver_wallet', 1),
(64, '2020_08_30_114743_create_driver_wallet_history', 1),
(65, '2020_08_30_123505_update_requests_table', 1),
(66, '2020_08_31_171017_update_request_table_for_ride_later', 1),
(67, '2020_09_01_063348_update_countries_table_for_currency', 1),
(68, '2020_09_01_081006_update_service_locations_table_currency_code', 1),
(69, '2020_09_01_133422_update_request_bills_table', 1),
(70, '2020_09_01_174718_update_driver_wallet_history_table', 1),
(71, '2020_09_04_073340_update_wallet_histories_table', 1),
(72, '2020_09_04_101745_update_requests_for_service_location_updates', 1),
(73, '2020_09_06_090712_update_users_table_for_refferal', 1),
(74, '2020_09_12_065514_create_notifications_table', 1),
(75, '2020_09_12_065553_create_user_driver_notifications', 1),
(76, '2020_09_12_123929_update_users_for_referral_table', 1),
(77, '2020_10_06_170942_update_users_table_for_company_key', 1),
(78, '2020_10_14_134549_update_columns_for_company_key_updates', 1),
(79, '2020_10_15_122136_update_driver_decline_reason_column', 1),
(80, '2020_10_26_064203_create_favorite_places_table', 1),
(81, '2020_10_28_153950_update_faq_sos_table', 1),
(82, '2020_10_28_161747_update_sos_table', 1),
(83, '2020_11_06_065342_create_promo_users_table', 1),
(84, '2020_11_06_103337_update_users_table_for_language', 1),
(85, '2020_11_06_133358_create_driver_availabilities_table', 1),
(86, '2020_11_07_121107_update_requests_table_for_promo', 1),
(87, '2020_11_12_064123_update_driver_availabilities_table', 1),
(88, '2020_11_17_072402_create_owner_needed_documents_table', 1),
(89, '2020_11_17_072445_create_owner_documents_table', 1),
(90, '2020_11_27_093556_create_fleets_table', 1),
(91, '2020_11_27_094652_create_fleet_documents_table', 1),
(92, '2021_01_12_114548_create_owner_hired_drivers_table', 1),
(93, '2021_01_13_103647_create_driver_privileged_vehicles_table', 1),
(94, '2021_02_06_172857_update_driver_needed_doc_table_doc_type_column', 1),
(95, '2021_04_12_065445_create_chats_table', 1),
(96, '2021_04_17_121220_update_zone_table_for_lat_lng', 1),
(97, '2021_04_23_051520_create_package_types_table', 1),
(98, '2021_04_23_063315_create_zone_type_package_prices_table', 1),
(99, '2021_04_29_081407_create_adhocs_table', 1),
(100, '2021_05_06_134745_update_drivers_table', 1),
(101, '2021_05_06_140618_update_owners_table', 1),
(102, '2021_05_23_032638_create_request_cancellation_fees_table', 1),
(103, '2021_05_27_095307_update_owner_needed_doc_table', 1),
(104, '2021_05_31_073050_update_drivers_country_table', 1),
(105, '2021_06_11_051347_create_favourite_locations_table', 1),
(106, '2021_06_16_050813_update_package_types_table', 1),
(107, '2021_06_30_130444_update_vehicle_types_table', 1),
(108, '2021_07_14_060523_update_types_for_short_description', 1),
(109, '2021_07_14_073830_update_request_for_book_other_features', 1),
(110, '2021_07_15_061940_update_requests_table_for_instant_ride', 1),
(111, '2021_07_23_065242_update_requests_for_ride_otp', 1),
(112, '2021_07_30_065843_update_requests_for_rental_out_station', 1),
(113, '2021_08_13_052221_create_airports_table', 1),
(114, '2021_08_14_162720_update_requests_bill_for_airport_fee', 1),
(115, '2021_10_29_095020_update_package_type_table', 1),
(116, '2021_10_30_084900_update_zone_type_for_sorting_table', 1),
(117, '2021_11_15_064009_create_users_bank_info_table', 1),
(118, '2021_11_25_114027_create_wallet_withdrawal_requests_table', 1),
(119, '2021_12_01_154530_update_drivers_fleet_id_column', 1),
(120, '2022_01_24_120705_update_countries_table', 1),
(121, '2022_02_03_061635_update_requests_table_for_eta_amount', 1),
(122, '2022_03_21_162059_create_driver_subscriptions_table', 1),
(123, '2022_04_04_125459_update_zone_type_price_table_for_waiting_fare', 1),
(124, '2022_04_05_054928_create_driver_rejected_requests_table', 1),
(125, '2022_04_06_071240_update_drivers_for_vehicle_year', 1),
(126, '2022_04_07_120855_update_requests_bill_table_for_waiting_time', 1),
(127, '2022_04_08_134043_update_requests_bills_for_waiting_time_updates', 1),
(128, '2022_05_04_073201_update_request_place_for_poc_info', 1),
(129, '2022_05_09_125226_create_request_stops_table', 1),
(130, '2022_05_09_133120_update_vehicle_types_for_weight_and_size', 1),
(131, '2022_05_09_164553_update_requests_for_goods_type_quantity_table', 1),
(132, '2022_05_09_165210_create_request_delivery_proofs_table', 1),
(133, '2022_05_21_122431_update_is_taxi_to_vehicle_types_table', 1),
(134, '2022_05_23_100457_update_requests_place_for_instructions_table', 1),
(135, '2022_06_27_094446_update_requests_for_surge_price_fixes_table', 1),
(136, '2022_07_04_143548_create_owner_wallets_table', 1),
(137, '2022_07_04_143845_create_owner_wallet_histories_table', 1),
(138, '2022_08_04_123301_update_fleets_table_for_color', 1),
(139, '2022_08_08_065316_update_fleets_for_driver_id', 1),
(140, '2022_08_08_112328_create_fleet_needed_documents_table', 1),
(141, '2022_08_09_053759_update_is_individual_to_driver_needed_documents_table', 1),
(142, '2022_08_10_045240_update_document_id_to_fleet_documents_table', 1),
(143, '2022_08_10_052655_update_document_status_to_fleet_documents_table', 1),
(144, '2022_08_10_130638_update_comment_to_fleet_documents_table', 1),
(145, '2022_08_11_105802_update_fleet_documents_for_identify_number', 1),
(146, '2022_08_11_114109_update_request_for_owner_and_fleet_id', 1),
(147, '2022_08_11_123449_update_withdrawal_request_table_for_owner_id', 1),
(148, '2022_08_11_124534_update_complaints_table_for_owner', 1),
(149, '2022_08_12_073010_create_frontpage_header_table', 1),
(150, '2022_08_29_065448_create_goods_types_table', 1),
(151, '2022_09_01_062700_update_goods_type_id_to_requests_table', 1),
(152, '2022_09_01_085940_update_transport_type_to_car_makes_table', 1),
(153, '2022_09_01_105353_update_transport_type_to_drivers_table', 1),
(154, '2022_09_06_085406_update_transport_type_to_zone_types_table', 1),
(155, '2022_09_06_091610_update_transport_type_to_package_types_table', 1),
(156, '2022_09_06_104037_update_transport_type_to_cancellation_reasons_table', 1),
(157, '2022_09_06_111317_update_transport_type_to_complaint_titles_table', 1),
(158, '2022_09_06_125854_update_transport_type_to_requests_table', 1),
(159, '2022_09_06_140237_update_transport_type_to_faqs_table', 1),
(160, '2022_09_14_120844_update_zones_for_default_type_for_delivery_table', 1),
(161, '2022_09_14_121853_update_owners_for_transport_type_table', 1),
(162, '2022_09_15_135622_add_goods_type_id_to_requests_table', 1),
(163, '2022_11_07_063319_update_icon_types_for_vehicle_types_table', 1),
(164, '2022_11_16_101502_update_vehicle_make_for_to_car_makes_table', 1),
(165, '2022_11_22_134606_update_zone_type_package_prices_table_for_zone_id', 1),
(166, '2022_11_29_101158_update_goods_types_for_to_goods_types_table', 1),
(167, '2022_12_14_074823_update_transport_type_to_promo_table', 1),
(168, '2022_12_14_111401_remove_transport_type_to_faqs_table', 1),
(169, '2022_12_14_111621_remove_transport_type_to_complaint_titles_table', 1),
(170, '2022_12_14_120547_remove_is_individual_to_driver_needed_documents_table', 1),
(171, '2022_12_14_120748_update_account_type_to_driver_needed_documents_table', 1),
(172, '2023_02_07_101637_update_drivers_for_my_route_booking_table', 1),
(173, '2023_02_08_101417_create_driver_enabled_routes_table', 1),
(174, '2023_04_17_062137_create_banner_images_table', 1),
(175, '2023_04_26_105819_update_request_meta_table', 1),
(176, '2023_05_15_095252_update_requests_for_offerred_ride_fare_update_users_for_bidd_ride_table', 1),
(177, '2023_06_09_122855_create_mail_otp_verifications_table', 1),
(178, '2023_06_09_123132_create_mail_templates_table', 1),
(179, '2023_06_12_123725_create_driver_vehicle_types_table', 1),
(180, '2023_06_15_084150_update_dispatch_type_to_vehicle_types_table', 1);

-- --------------------------------------------------------

--
-- Table structure for table `mobile_builds`
--

CREATE TABLE `mobile_builds` (
  `id` int(10) UNSIGNED NOT NULL,
  `project_name` varchar(191) NOT NULL,
  `build_number` varchar(191) NOT NULL,
  `project_id` int(10) UNSIGNED NOT NULL,
  `flavour_id` int(10) UNSIGNED NOT NULL,
  `team` enum('android','ios') NOT NULL,
  `version` varchar(191) NOT NULL,
  `environment` varchar(191) NOT NULL,
  `file_size` varchar(191) NOT NULL,
  `download_link` varchar(191) NOT NULL,
  `uploaded_by` varchar(191) DEFAULT NULL,
  `additional_comments` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `mobile_otp_verifications`
--

CREATE TABLE `mobile_otp_verifications` (
  `id` char(36) NOT NULL,
  `mobile` varchar(18) NOT NULL,
  `otp` varchar(191) DEFAULT NULL,
  `verified` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `notifications`
--

CREATE TABLE `notifications` (
  `id` char(36) NOT NULL,
  `push_enum` varchar(191) NOT NULL,
  `title` varchar(191) NOT NULL,
  `body` longtext NOT NULL,
  `image` varchar(191) DEFAULT NULL,
  `data` longtext DEFAULT NULL,
  `for_user` tinyint(1) NOT NULL DEFAULT 0,
  `for_driver` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `notifications`
--

INSERT INTO `notifications` (`id`, `push_enum`, `title`, `body`, `image`, `data`, `for_user`, `for_driver`, `created_at`, `updated_at`, `deleted_at`) VALUES
('803d8380-3737-4f0a-ae86-31dc435cb9d0', 'general_notification', 'Hello', 'Hello', NULL, NULL, 1, 0, '2024-10-03 02:39:52', '2024-10-03 02:39:52', NULL),
('bfadc276-eae6-4dec-a403-c9935da3fae9', 'general_notification', 'New Internship2', 'sdsdsdsdsdsdsdsdsdsdsdsd', NULL, NULL, 1, 1, '2024-10-03 07:47:08', '2024-10-03 07:47:08', NULL),
('eea1c113-d94f-4647-bef2-76ce8a9a280b', 'general_notification', 'title of push', 'message of push', NULL, NULL, 1, 1, '2024-10-01 10:31:44', '2024-10-01 10:31:45', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `oauth_access_tokens`
--

CREATE TABLE `oauth_access_tokens` (
  `id` varchar(100) NOT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `client_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `scopes` text DEFAULT NULL,
  `revoked` tinyint(1) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `expires_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `oauth_access_tokens`
--

INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES
('00a43a962522cae960ebdd332c18132c6c85d2d2dfe56f7a245561d6df9d7824bcb1b53988049c7e', 3, 1, 'personal_access', '[]', 0, '2024-08-30 14:17:53', '2024-08-30 14:17:53', '2025-08-30 16:17:53'),
('0a20cb903ac1d6780d6d3dcfa49d2cfc712ca46d6a8cdcc9985629b80d8b7945020d20abd12dbe56', 7, 1, 'personal_access', '[]', 0, '2024-02-06 01:16:37', '2024-02-06 01:16:37', '2025-02-06 02:16:37'),
('0a8347da2151d4326944a2cb306940cde8dea740eb41c6d8b1a2345aea5ff5104dbd7fcbf323e4ed', 16, 1, NULL, '[]', 0, '2024-06-22 03:34:30', '2024-06-22 03:34:30', '2025-06-22 05:34:30'),
('0a851eac44bf7c43a69956964c499eeeff1406b2c44c192d8013380ee233fc0631aecefd2c2eb415', 16, 1, 'personal_access', '[]', 0, '2024-06-22 03:34:30', '2024-06-22 03:34:30', '2025-06-22 05:34:30'),
('0b6eb33c0556a14e61997119e1b06b9d00d2d39bc920cdf17bb1b7d0d59eda29e48aeda813088e7c', 13, 1, NULL, '[]', 0, '2024-04-15 19:24:43', '2024-04-15 19:24:43', '2025-04-15 21:24:43'),
('1c0efb269559db651ddfaef152e3dbdb1cf32df0ded54f38ecbc3de4a878df30263e2dadab3882a8', 4, 1, 'personal_access', '[]', 0, '2024-09-01 17:01:59', '2024-09-01 17:01:59', '2025-09-01 19:01:59'),
('24eb068811a1789276776d8891cf26a45136acefecee2c2ed061c3a7833025bd4d1d49733a277bd9', 14, 1, 'personal_access', '[]', 0, '2024-05-28 03:33:14', '2024-05-28 03:33:14', '2025-05-28 05:33:14'),
('2d62119033c58b394c973a697c02a62b0f8bb83277a6a229189bc03e12a09bc8efe55dac674298d6', 4, 1, NULL, '[]', 0, '2024-09-01 17:01:59', '2024-09-01 17:01:59', '2025-09-01 19:01:59'),
('40fad1d79846a0838e9183c10d9581390161768d8f40458abb1d5fb8ed9104a3a76b9c6064ddc633', 12, 1, NULL, '[]', 0, '2024-04-05 20:35:50', '2024-04-05 20:35:50', '2025-04-05 22:35:50'),
('4a94a7bdc21cba328b6f984b94b2a8940e6bbe807cda51e6c6eb52d2d8a4e0761745a5a1c559a910', 13, 1, 'personal_access', '[]', 0, '2024-04-15 19:24:43', '2024-04-15 19:24:43', '2025-04-15 21:24:43'),
('67ccd251bda086e8fc7406eb6c67dbd2899128dac10990a7c9da800a15cdb02528c3d66d0cbb30c1', 8, 1, 'personal_access', '[]', 0, '2024-02-26 04:43:44', '2024-02-26 04:43:44', '2025-02-26 05:43:44'),
('8a9127e4b9c014e84b85f8759ea1c0b3d2b2976bf67d72e31405d45f826e0707f2e09642d6b75f27', 7, 1, NULL, '[]', 0, '2024-02-06 01:16:37', '2024-02-06 01:16:37', '2025-02-06 02:16:37'),
('bdd441254d3a0bfe85f5352da245ac1aa055353450501e50de9801020babf033cb20402b6edeabf9', 17, 1, 'personal_access', '[]', 0, '2024-06-22 05:36:18', '2024-06-22 05:36:18', '2025-06-22 07:36:18'),
('c4420226bdf9d124f0d8fdd8685f3ddeca44e0f8f3efa2380c34bac4bbdbf95bcfbb420c21e5d61c', 17, 1, NULL, '[]', 0, '2024-06-22 05:36:18', '2024-06-22 05:36:18', '2025-06-22 07:36:18'),
('c52c79f89cd8efc83804c7f9288a59e04eb103934eb8dbd10baacd48adede8c6595c74777ecdb480', 8, 1, NULL, '[]', 0, '2024-02-26 04:43:44', '2024-02-26 04:43:44', '2025-02-26 05:43:44'),
('cc81328529f5a68a306e0a49b6f97ce711f0a90aad0557f25b4d92e061857c208157a7a49447a6bb', 3, 1, NULL, '[]', 0, '2024-08-30 14:17:53', '2024-08-30 14:17:53', '2025-08-30 16:17:53'),
('dab0072d61ddb6a40fdb05ac823e12f01ce82d473157cf21ae14f7bf2b7c49955807ae71ab1b7a01', 15, 1, NULL, '[]', 0, '2024-06-18 03:27:24', '2024-06-18 03:27:24', '2025-06-18 05:27:24'),
('e702a497a95ee34548a29eb8ede6f14ce239b942e3ae6d14ebb512a35d1d53e6c100945d7bfbdcee', 15, 1, 'personal_access', '[]', 0, '2024-06-18 03:27:24', '2024-06-18 03:27:24', '2025-06-18 05:27:24'),
('e7ae537b84cf3053b24f9ea1154a3b2c8e9889f3fbcf1bfe6ba0c226f450bc5eb1e61ce7f579bb9b', 12, 1, 'personal_access', '[]', 0, '2024-04-05 20:35:50', '2024-04-05 20:35:50', '2025-04-05 22:35:50'),
('ee8512e36bbd7053cc10b481e1f2748c814628d73d725ae8a3b330fbb7c275e571817f51f957451d', 14, 1, NULL, '[]', 0, '2024-05-28 03:33:14', '2024-05-28 03:33:14', '2025-05-28 05:33:14');

-- --------------------------------------------------------

--
-- Table structure for table `oauth_auth_codes`
--

CREATE TABLE `oauth_auth_codes` (
  `id` varchar(100) NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `client_id` bigint(20) UNSIGNED NOT NULL,
  `scopes` text DEFAULT NULL,
  `revoked` tinyint(1) NOT NULL,
  `expires_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `oauth_clients`
--

CREATE TABLE `oauth_clients` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `secret` varchar(100) DEFAULT NULL,
  `provider` varchar(191) DEFAULT NULL,
  `redirect` text NOT NULL,
  `personal_access_client` tinyint(1) NOT NULL,
  `password_client` tinyint(1) NOT NULL,
  `revoked` tinyint(1) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `oauth_clients`
--

INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `provider`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`) VALUES
(1, NULL, 'MoGrab Personal Access Client', 'hkYdmj6fr063YdThMkjN1Qq6aISuIcVxbZD3UqGV', NULL, 'http://localhost', 1, 0, 0, '2023-11-09 05:58:59', '2023-11-09 05:58:59'),
(2, NULL, 'MoGrab Password Grant Client', 'zqTyIaQNmoGLeuJYESxXbnPRim35bfT4WGrlpDtZ', 'users', 'http://localhost', 0, 1, 0, '2023-11-09 05:58:59', '2023-11-09 05:58:59');

-- --------------------------------------------------------

--
-- Table structure for table `oauth_personal_access_clients`
--

CREATE TABLE `oauth_personal_access_clients` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `client_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `oauth_personal_access_clients`
--

INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES
(1, 1, '2023-11-09 05:58:59', '2023-11-09 05:58:59');

-- --------------------------------------------------------

--
-- Table structure for table `oauth_refresh_tokens`
--

CREATE TABLE `oauth_refresh_tokens` (
  `id` varchar(100) NOT NULL,
  `access_token_id` varchar(100) NOT NULL,
  `revoked` tinyint(1) NOT NULL,
  `expires_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `owners`
--

CREATE TABLE `owners` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `transport_type` enum('taxi','delivery','both') DEFAULT NULL,
  `service_location_id` char(36) NOT NULL,
  `company_name` varchar(191) NOT NULL,
  `owner_name` varchar(191) NOT NULL,
  `name` varchar(25) DEFAULT NULL,
  `surname` varchar(191) DEFAULT NULL,
  `email` varchar(150) DEFAULT NULL,
  `password` varchar(191) DEFAULT NULL,
  `mobile` varchar(20) DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `address` text DEFAULT NULL,
  `postal_code` int(11) DEFAULT NULL,
  `city` varchar(50) DEFAULT NULL,
  `expiry_date` date DEFAULT NULL,
  `no_of_vehicles` int(11) NOT NULL DEFAULT 0,
  `tax_number` varchar(191) NOT NULL,
  `bank_name` varchar(191) DEFAULT NULL,
  `ifsc` varchar(191) DEFAULT NULL,
  `account_no` varchar(191) DEFAULT NULL,
  `iban` varchar(191) DEFAULT NULL,
  `bic` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `approve` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `owners`
--

INSERT INTO `owners` (`id`, `user_id`, `transport_type`, `service_location_id`, `company_name`, `owner_name`, `name`, `surname`, `email`, `password`, `mobile`, `phone`, `address`, `postal_code`, `city`, `expiry_date`, `no_of_vehicles`, `tax_number`, `bank_name`, `ifsc`, `account_no`, `iban`, `bic`, `active`, `approve`, `created_at`, `updated_at`, `deleted_at`) VALUES
('979e8129-cf54-4bed-8dac-acb8af2c0898', 9, 'both', '4319c7c1-d9f9-4379-b589-b62493a24cc6', 'Mograb', 'Fleet Owner', 'Fleet', 'Owner', 'fleet@demo.com', '$2y$10$jtsoToU6VCpc7nMVVM8SMe9r1C6VXfa8B688yEvmXYRBi/DFfg.Ly', '9696969696', '7485963214', 'Mumbai, Maharashtra, India', 987654, 'Mumbai', NULL, 1234, '12345', 'Bank of india', 'BOI123456', '987644321456', NULL, NULL, 1, 1, '2024-03-18 11:12:26', '2024-03-18 11:12:54', NULL),
('c83f1159-8ce0-4a95-bc96-2f650f67ebfa', 8, 'both', 'fe9bfb11-ab9e-46b1-9771-8cc4c43447e2', 'uber', 'use2r', 'use2r', NULL, 'user43@demo.com', NULL, '9876543212', NULL, 'swabhumi, web bangal', 909090, 'kolkata', NULL, 0, 'kl9i0987', NULL, NULL, NULL, NULL, NULL, 1, 0, '2024-02-26 04:43:43', '2024-02-26 04:43:43', NULL),
('e74ac9ca-9098-45fd-b7c2-3533479483cd', 11, 'taxi', '4319c7c1-d9f9-4379-b589-b62493a24cc6', 'Company', 'Fleet', 'Fleet', 'Owner', 'fleetdemo@mograb.com', '$2y$10$SRVl2PtPY25U/0Ttk.t70Ox7hsFlqyAh0DgYuobESzHXmoVDit13G', '1234567890', '2233445566', '12 West 48th Street, New York, NY, USA', 123455, 'Kerry', NULL, 1, '1234567890', 'KHBN', 'qwert12345', '2345678901', NULL, NULL, 1, 1, '2024-03-31 07:49:35', '2024-03-31 07:50:19', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `owner_documents`
--

CREATE TABLE `owner_documents` (
  `id` char(36) NOT NULL,
  `owner_id` char(36) NOT NULL,
  `document_id` int(10) UNSIGNED NOT NULL,
  `image` varchar(191) NOT NULL,
  `identify_number` varchar(191) DEFAULT NULL,
  `expiry_date` timestamp NULL DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `document_status` int(11) NOT NULL DEFAULT 2,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `owner_documents`
--

INSERT INTO `owner_documents` (`id`, `owner_id`, `document_id`, `image`, `identify_number`, `expiry_date`, `comment`, `document_status`, `created_at`, `updated_at`, `deleted_at`) VALUES
('3771a8c6-1925-41fc-8e81-c6fb266b0769', 'e74ac9ca-9098-45fd-b7c2-3533479483cd', 1, 'vr9TaNDcYDyJAlDnqP3ZzjuXwdX3QSOiF6rak4br.jpg', NULL, '2024-06-28 22:00:00', NULL, 1, '2024-03-31 07:49:35', '2024-03-31 07:50:19', NULL),
('e9ccb1c6-b705-4e3f-b018-787961a6a208', '979e8129-cf54-4bed-8dac-acb8af2c0898', 1, 'J8RwIyGotzWrhXWbdpo0fzyGUYKHu9CPahJoVdLH.jpg', NULL, '2025-09-10 22:00:00', NULL, 1, '2024-03-18 11:12:26', '2024-03-18 11:12:54', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `owner_hired_drivers`
--

CREATE TABLE `owner_hired_drivers` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `owner_id` char(36) NOT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `owner_needed_documents`
--

CREATE TABLE `owner_needed_documents` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `doc_type` varchar(191) NOT NULL DEFAULT 'image',
  `has_identify_number` tinyint(1) NOT NULL DEFAULT 0,
  `identify_number_locale_key` varchar(191) DEFAULT NULL,
  `has_expiry_date` tinyint(1) NOT NULL DEFAULT 0,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `owner_needed_documents`
--

INSERT INTO `owner_needed_documents` (`id`, `name`, `doc_type`, `has_identify_number`, `identify_number_locale_key`, `has_expiry_date`, `active`, `created_at`, `updated_at`) VALUES
(1, 'Id Proof', 'image', 1, '12345', 1, 1, '2024-03-18 11:09:15', '2024-03-18 11:09:15'),
(2, 'Aadhar', 'image', 0, NULL, 1, 0, '2024-10-03 02:25:36', '2024-10-03 02:25:43');

-- --------------------------------------------------------

--
-- Table structure for table `owner_wallets`
--

CREATE TABLE `owner_wallets` (
  `id` char(36) NOT NULL,
  `user_id` char(36) NOT NULL,
  `amount_added` double(10,2) NOT NULL DEFAULT 0.00,
  `amount_balance` double(10,2) NOT NULL DEFAULT 0.00,
  `amount_spent` double(10,2) NOT NULL DEFAULT 0.00,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `owner_wallets`
--

INSERT INTO `owner_wallets` (`id`, `user_id`, `amount_added`, `amount_balance`, `amount_spent`, `created_at`, `updated_at`, `deleted_at`) VALUES
('80ffe5bf-d5ac-486c-b1cc-a8b9bf5e1b6c', 'c83f1159-8ce0-4a95-bc96-2f650f67ebfa', 0.00, 0.00, 0.00, '2024-02-26 04:43:43', '2024-02-26 04:43:43', NULL),
('b67bc564-8c05-48fe-a9ee-e28d22dda563', 'e74ac9ca-9098-45fd-b7c2-3533479483cd', 0.00, 0.00, 0.00, '2024-03-31 07:49:35', '2024-03-31 07:49:35', NULL),
('ce58b4fb-ecbe-48e8-9b3e-c413b0e5a246', '979e8129-cf54-4bed-8dac-acb8af2c0898', 0.00, 0.00, 0.00, '2024-03-18 11:12:26', '2024-03-18 11:12:26', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `owner_wallet_histories`
--

CREATE TABLE `owner_wallet_histories` (
  `id` char(36) NOT NULL,
  `user_id` char(36) NOT NULL,
  `card_id` char(36) DEFAULT NULL,
  `request_id` char(36) DEFAULT NULL,
  `transaction_id` varchar(191) DEFAULT NULL,
  `amount` double(10,2) NOT NULL DEFAULT 0.00,
  `conversion` varchar(191) DEFAULT NULL,
  `merchant` varchar(191) DEFAULT NULL,
  `remarks` varchar(191) DEFAULT NULL,
  `is_credit` tinyint(1) NOT NULL DEFAULT 0,
  `admin_id` char(36) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `package_types`
--

CREATE TABLE `package_types` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `transport_type` enum('taxi','delivery','both') DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `short_description` varchar(191) DEFAULT NULL,
  `description` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `package_types`
--

INSERT INTO `package_types` (`id`, `name`, `transport_type`, `active`, `short_description`, `description`, `created_at`, `updated_at`) VALUES
(1, 'Half Day', 'taxi', 1, NULL, NULL, '2023-11-21 02:01:08', '2023-11-21 02:01:08'),
(2, 'Full Day', 'delivery', 1, NULL, NULL, '2024-10-03 02:27:04', '2024-10-03 02:27:04');

-- --------------------------------------------------------

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

CREATE TABLE `password_resets` (
  `email` varchar(191) NOT NULL,
  `token` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

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

CREATE TABLE `permissions` (
  `id` int(10) UNSIGNED NOT NULL,
  `slug` varchar(50) NOT NULL,
  `name` varchar(50) NOT NULL,
  `description` varchar(150) DEFAULT NULL,
  `main_menu` varchar(191) DEFAULT NULL,
  `sub_menu` varchar(191) DEFAULT NULL,
  `main_link` varchar(191) DEFAULT NULL,
  `sub_link` varchar(191) DEFAULT NULL,
  `sort` int(11) DEFAULT NULL,
  `icon` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `permissions` (`id`, `slug`, `name`, `description`, `main_menu`, `sub_menu`, `main_link`, `sub_link`, `sort`, `icon`, `created_at`, `updated_at`) VALUES
(1, 'access-dashboard', 'Access-Dashboard', 'Access Dashboard', 'dashboard', NULL, 'dashboard', NULL, 1, 'fa fa-tachometer', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(2, 'get-all-roles', 'Get-All-Roles', 'Get-All-Roles', 'settings', 'roles', NULL, 'roles', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(3, 'edit-roles', 'edit-roles', 'Edit all roles', 'settings', 'roles', NULL, 'roles', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(4, 'create-roles', 'create-roles', 'Create Roles', 'settings', NULL, NULL, NULL, 12, 'fa fa-cogs', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(5, 'get-all-permissions', 'Get-All-Permissions', 'Get all permissions', 'settings', 'roles', NULL, NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(6, 'view-settings', 'view-all-settings', 'View All Settings', 'settings', NULL, NULL, NULL, 12, 'fa fa-cogs', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(7, 'view-system-settings', 'view-system-settings', 'view-system-settings', 'settings', NULL, NULL, NULL, 12, 'fa fa-cogs', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(8, 'view-translations', 'view-translations', 'View Translations', 'settings', NULL, NULL, NULL, 12, 'fa fa-cogs', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(9, 'master-data', 'master-data', 'View All Master Data', 'master', NULL, NULL, NULL, 17, 'fa fa-code-fork', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(10, 'manage-carmake', 'manage-carmake', 'List carmake', 'master', 'carmake', NULL, 'carmake', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(11, 'add-carmake', 'add-carmake', 'Add carmake', 'master', 'carmake', NULL, 'carmake', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(12, 'edit-carmake', 'edit-carmake', 'Edit carmake', 'master', 'carmake', NULL, 'carmake', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(13, 'delete-carmake', 'delete-carmake', 'Delete carmake', 'master', 'carmake', NULL, 'carmake', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(14, 'toggle-carmake', 'toggle-carmake', 'Toggle carmake', 'master', 'carmake', NULL, 'carmake', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(15, 'manage-carmodel', 'manage-carmodel', 'List carmodel', 'master', 'carmodel', NULL, 'carmodel', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(16, 'add-carmodel', 'add-carmodel', 'Add carmodel', 'master', 'carmodel', NULL, 'carmodel', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(17, 'edit-carmodel', 'edit-carmodel', 'Edit carmodel', 'master', 'carmodel', NULL, 'carmodel', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(18, 'delete-carmodel', 'delete-carmodel', 'Delete carmodel', 'master', 'carmodel', NULL, 'carmodel', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(19, 'toggle-carmodel', 'toggle-carmodel', 'Toggle carmodel', 'master', 'carmodel', NULL, 'carmodel', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(20, 'manage-driver-needed-document', 'manage-driver-needed-document', 'List driver needed documents', 'master', 'needed_doc', NULL, 'needed_doc', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(21, 'add-driver-needed-document', 'add-driver-needed-document', 'Add driver needed documents', 'master', 'needed_doc', NULL, 'needed_doc', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(22, 'edit-driver-needed-document', 'edit-driver-needed-document', 'Edit driver needed documents', 'master', 'needed_doc', NULL, 'needed_doc', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(23, 'delete-driver-needed-document', 'delete-driver-needed-document', 'Delete driver needed documents', 'master', 'needed_doc', NULL, 'needed_doc', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(24, 'toggle-driver-needed-document', 'toggle-driver-needed-documentt', 'toggle-driver-needed-document', 'master', 'needed_doc', NULL, 'needed_doc', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(25, 'manage-fleet-needed-document', 'manage-fleet_needed-document', 'List fleet needed documents', 'master', 'fleet_needed_doc', NULL, 'fleet_needed_doc', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(26, 'add-fleet-needed-document', 'add-fleet-needed-document', 'Add fleet needed documents', 'master', 'fleet_needed_doc', NULL, 'fleet_needed_doc', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(27, 'edit-fleet-needed-document', 'edit-fleet-needed-document', 'Edit fleet needed documents', 'master', 'fleet_needed_doc', NULL, 'fleet_needed_doc', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(28, 'delete-fleet-needed-document', 'delete-fleet-needed-document', 'Delete fleet needed documents', 'master', 'fleet_needed_doc', NULL, 'fleet_needed_doc', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(29, 'toggle-fleet-needed-document', 'toggle-fleet-needed-documentt', 'toggle-fleet-needed-document', 'master', 'fleet_needed_doc', NULL, 'fleet_needed_doc', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(30, 'manage-owner-needed-document', 'manage-owner-needed-document', 'List owner needed documents', 'master', 'owner_needed_doc', NULL, 'owner_needed_doc', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(31, 'add-owner-needed-document', 'add-owner-needed-document', 'Add Owner needed documents', 'master', 'owner_needed_doc', NULL, 'owner_needed_doc', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(32, 'edit-owner-needed-document', 'edit-owner-needed-document', 'Edit Owner needed documents', 'master', 'owner_needed_doc', NULL, 'owner_needed_doc', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(33, 'delete-owner-needed-document', 'delete-owner-needed-document', 'Delete Owner needed documents', 'master', 'owner_needed_doc', NULL, 'owner_needed_doc', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(34, 'toggle-owner-needed-document', 'toggle-owner-needed-document', 'toggle Owner needed document', 'master', 'owner_needed_doc', NULL, 'owner_needed_doc', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(35, 'package-type', 'manage-package-type', 'List Package Type', 'master', 'package-type', NULL, 'package-type', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(36, 'add-package-type', 'add-package-type', 'Add Package Type', 'master', 'package-type', NULL, 'package-type', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(37, 'edit-package-type', 'edit-package-type', 'Edit Package Type', 'master', 'package-type', NULL, 'package-type', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(38, 'delete-package-type', 'delete-package-type', 'Delete Package Type', 'master', 'package-type', NULL, 'package-type', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(39, 'toggle-package-type', 'toggle-package-type', 'toggle Package Type', 'master', 'package-type', NULL, 'package-type', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(40, 'manage-goods-types', 'manage-goods-types', 'List Package Type', 'master', 'goods_types', NULL, 'goods_types', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(41, 'add-goods-types', 'add-goods-typess', 'Add Goods Types', 'master', 'goods_types', NULL, 'goods_types', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(42, 'edit-goods-types', 'edit-goods-types', 'Edit Goods Types', 'master', 'goods_types', NULL, 'goods_types', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(43, 'delete-goods-types', 'delete-goods-types', 'Delete Goods Types', 'master', 'goods_types', NULL, 'goods_types', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(44, 'toggle-goods-types', 'toggle-goods-types', 'toggle Goods Types', 'master', 'goods_types', NULL, 'goods_types', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(45, 'service_location', 'Service_Location', 'Available location for app', 'service_location', NULL, 'service_location', NULL, 2, 'fa fa-map-marker', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(46, 'Add_Service_Location', 'Add_Service_Location', 'Add location for app', 'service_location', NULL, 'service_location', NULL, 2, 'fa fa-map-marker', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(47, 'Edit_Service_Location', 'Edit_Service_Location', 'Edit location for app', 'service_location', NULL, 'service_location', NULL, 2, 'fa fa-map-marker', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(48, 'Delete_Service_Location', 'Delete_Service_Location', 'Delete location for app', 'service_location', NULL, 'service_location', NULL, 2, 'fa fa-map-marker', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(49, 'Toggle_Service_Location', 'Toggle_Service_Location', 'toggle location for app', 'service_location', NULL, 'service_location', NULL, 2, 'fa fa-map-marker', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(50, 'manage-owner', 'manage_owners', 'Owner list and create', 'manage_owners', 'owner', 'owners', NULL, 3, 'fa fa-briefcase', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(51, 'add-owner', 'add-owner', 'Add Owner', 'manage_owners', 'owner', NULL, NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(52, 'edit-owner', 'edit-owner', 'Edit Owner', 'manage_owners', 'owner', NULL, NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(53, 'delete-owner', 'delete-owner', 'Delete Owner', 'manage_owners', 'owner', NULL, NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(54, 'toggle-owner-status', 'toggle-owner-status', 'Toggle Owner Status', 'manage_owners', 'owner', NULL, NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(55, 'view-owner-document', 'view-owner-document', 'View Owner Document', 'manage_owners', 'owner', NULL, NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(56, 'manage-fleet', 'manage-fleet', 'Manage fleets add edit delete', 'manage_fleet', NULL, 'fleets', NULL, 18, 'fa fa-taxi', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(57, 'add-fleet', 'add-fleet', 'Create new fleet', 'manage_fleet', 'manage_fleet', NULL, NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(58, 'edit-fleet', 'edit-fleet', 'Edit fleet', 'manage_fleet', 'manage_fleet', NULL, NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(59, 'delete-fleet', 'delete-fleet', 'Delete fleet', 'manage_fleet', 'manage_fleet', NULL, NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(60, 'toggle-fleet-status', 'toggle-fleet-status', 'Change status of fleet', 'manage_fleet', 'manage_fleet', NULL, NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(61, 'toggle-fleet-approval', 'toggle-fleet-approval', 'Change Approve status of fleet', 'manage_fleet', 'manage_fleet', NULL, NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(62, 'view-fleet-document', 'view-fleet-document', 'View Fleet Document', 'manage_fleet', 'manage_fleet', NULL, NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(63, 'admin', 'Admin', 'Admin User List', 'admin', NULL, 'admins', NULL, 3, 'fa fa-user-circle-o', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(64, 'add-admin', 'add-admin', 'create admin', 'admin', NULL, 'admins', NULL, 3, 'fa fa-user-circle-o', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(65, 'edit-admin', 'edit-admin', 'Edit Admin', 'admin', NULL, 'admins', NULL, 3, 'fa fa-user-circle-o', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(66, 'delete-admin', 'delete-admin', 'Delete Admin', 'admin', NULL, 'admins', NULL, 3, 'fa fa-user-circle-o', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(67, 'toggle-admin-status', 'toggle-admin-status', 'toggle status admin', 'admin', NULL, 'admins', NULL, 3, 'fa fa-user-circle-o', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(68, 'view-requests', 'view-requests', 'View Request Details', 'request', 'request', 'requests', NULL, 5, 'fa fa-list', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(69, 'view-rides', 'view-rides', 'View Rides', 'request', 'request', 'requests', NULL, 5, 'fa fa-list', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(70, 'scheduled-rides', 'scheduled-rides', 'View scheduled Rides', 'request', 'scheduled-rides', 'requests', 'scheduled-rides', 5, 'fa fa-list', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(71, 'cancellation-rides', 'cancellation-rides', 'View cancellation Rides', 'request', 'cancellation-rides', 'requests', 'cancellation-rides', 5, 'fa fa-list', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(72, 'view-types', 'view-vehicle-types', 'Get all types', 'vehicle-type', NULL, 'types', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(73, 'add-vehicle-types', 'add-vehicle-types', 'Get all types', 'vehicle-type', NULL, 'types', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(74, 'edit-vehicle-types', 'edit-vehicle-types', 'Get all types', 'vehicle-type', NULL, 'types', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(75, 'delete-vehicle-types', 'delete-vehicle-types', 'Get all types', 'vehicle-type', NULL, 'types', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(76, 'toggle-vehicle-types', 'toggle-vehicle-types', 'Get all types', 'vehicle-type', NULL, 'types', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(77, 'map-menu', 'map', 'View all map related menus', 'map', NULL, NULL, NULL, 8, 'fa fa-map', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(78, 'view-zone-map', 'view-zone-map', 'map-view', 'map', 'zone', NULL, 'zone', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(79, 'view-zone', 'Get-All-zones', 'Get all zones', 'map', 'zone', NULL, 'zone', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(80, 'add-zone', 'add-zones', 'Add zones', 'map', 'zone', NULL, 'zone', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(81, 'edit-zone', 'edit-zones', 'Edit zones', 'map', 'zone', NULL, 'zone', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(82, 'delete-zone', 'delete-zones', 'Get all zones', 'map', 'zone', NULL, 'zone', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(83, 'toggle-zone', 'toggle-status-zones', 'Toggle Status Zones', 'map', 'zone', NULL, 'zone', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(84, 'surge-zone', 'surge-zones', 'Surge zones', 'map', 'zone', NULL, 'zone', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(85, 'list-airports', 'Get-All-Airports', 'Get all airports', 'map', 'airport', NULL, 'aiports', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(86, 'Add-Airports', 'Add-Airports', 'Add airports', 'map', 'airport', NULL, 'aiports', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(87, 'Edit-airports', 'Edit-Airports', 'Edit airports', 'map', 'airport', NULL, 'aiports', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(88, 'Delete-Airports', 'Delete-Airports', 'Delete airports', 'map', 'airport', NULL, 'aiports', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(89, 'Map-view-Airports', 'Map-view-Airports', 'Map-view-Airports', 'map', 'airport', NULL, 'aiports', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(90, 'Toggle-Airports', 'Toggle-Airports', 'Toggle-Airports', 'map', 'airport', NULL, 'aiports', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(91, 'vehicle-fare', 'vehicle-fare', 'list-vehicle_fare', 'vehicle-fare', NULL, 'vehicle_fare', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(92, 'add-price', 'add-price', 'add price', 'vehicle-fare', NULL, 'vehicle_fare', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(93, 'edit-price', 'edit-price', 'edit price', 'vehicle-fare', NULL, 'vehicle_fare', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(94, 'delete-price', 'delete-price', 'delete price', 'vehicle-fare', NULL, 'vehicle_fare', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(95, 'toggle-price', 'toggle-price', 'toggle price', 'vehicle-fare', NULL, 'vehicle_fare', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(96, 'default-vehicle-type', 'default-vehicle-type', 'default-vehicle-type', 'vehicle-fare', NULL, 'vehicle_fare', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(97, 'assign-rental-package', 'assign-rental-package', 'assign-rental-package', 'vehicle-fare', NULL, 'vehicle_fare', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(98, 'rental-package', 'rental-package', 'rental-package', 'vehicle-fare', NULL, 'vehicle_fare', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(99, 'add-rental-package', 'add-rental-package', 'add-rental-package', 'vehicle-fare', NULL, 'vehicle_fare', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(100, 'edit-rental-package', 'edit-rental-package', 'edit-rental-package', 'vehicle-fare', NULL, 'vehicle_fare', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(101, 'delete-rental-package', 'delete-rental-package', 'delete-rental-package', 'vehicle-fare', NULL, 'vehicle_fare', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(102, 'toggle-rental-package', 'toggle-rental-package', 'toggle-rental-package', 'vehicle-fare', NULL, 'vehicle_fare', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(103, 'drivers-menu', 'drivers-menu', 'drivers', 'drivers', NULL, NULL, NULL, 4, 'fa fa-users', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(104, 'view-drivers', 'view-drivers', 'Get all drivers', 'drivers', 'driver_details', NULL, 'drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(105, 'view-approval-pending-drivers', 'view-approval-pending-drivers', 'Get-All-approval-pending-Drivers', 'drivers', 'driver_details', NULL, 'drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(106, 'view-driver-ratings', 'view-driver-ratings', 'Get all Drivers-Ratings', 'drivers', 'driver_details', NULL, 'drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(107, 'view-driver-withdrawal-requests', 'view-driver-withdrawal-requests', 'Get all Drivers-withdrawal-request', 'drivers', 'driver_details', NULL, 'drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(108, 'view-negative-balance-drivers', 'view-negative-balance-drivers', 'Get all-Negative-Balance-Drivers', 'drivers', 'driver_details', NULL, 'drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(109, 'edit-drivers', 'edit-drivers', 'edit-drivers', 'drivers', 'driver_details', NULL, 'drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(110, 'toggle-drivers', 'toggle-drivers', 'toggle-drivers', 'drivers', 'driver_details', NULL, 'drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(111, 'view-request-list', 'view-request-list', 'view-request-list', 'drivers', 'driver_details', NULL, 'drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(112, 'driver-payment-history', 'driver-payment-history', 'driver-payment-history', 'drivers', 'driver_details', NULL, 'drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(113, 'view-driver-profile', 'view-driver-profile', 'view-profile', 'drivers', 'driver_details', NULL, 'drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(114, 'add-drivers', 'add-drivers', 'add-drivers', 'drivers', 'driver_details', NULL, 'drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(115, 'update-drivers', 'update-drivers', 'update-drivers', 'drivers', 'driver_details', NULL, 'drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(116, 'delete-drivers', 'delete-drivers', 'delete-drivers', 'drivers', 'driver_details', NULL, 'drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(117, 'driver-document', 'driver-document', 'driver-document', 'drivers', 'driver_details', NULL, 'drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(118, 'driver-document-view', 'driver-document-view', 'driver-document-view', 'drivers', 'driver_details', NULL, 'drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(119, 'driver-document-view-image', 'driver-document-view-image', 'driver-document-view', 'drivers', 'driver_details', NULL, 'drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(120, 'driver-document-edit', 'driver-document-edit', 'driver-document-edit', 'drivers', 'driver_details', NULL, 'drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(121, 'driver-document-upload', 'driver-document-upload', 'driver-document-upload', 'drivers', 'driver_details', NULL, 'drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(122, 'driver-document-toggle', 'driver-document-toggle', 'driver-document-toggle', 'drivers', 'driver_details', NULL, 'drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(123, 'view-driver-rating', 'view-driver-rating', 'view-driver-rating', 'drivers', 'driver_details', NULL, 'drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(124, 'driver-withdrwal-request-view', 'driver-withdrwal-request-view', 'driver-withdrwal-request-view', 'drivers', 'driver_details', NULL, 'drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(125, 'neagtive-driver-view', 'neagtive-driver-view', 'neagtive-driver-view', 'drivers', 'driver_details', NULL, 'drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(126, 'fleet-drivers-menu', 'fleet-drivers-menu', 'fleet-drivers', 'fleet-drivers', NULL, NULL, NULL, 4, 'fa fa-users', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(127, 'view-approved-fleet-drivers', 'view-approved-drivers', 'Get all drivers', 'fleet-drivers', 'fleet-driver_details', NULL, 'fleet-drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(128, 'fleet-drivers-waiting-for-approval', 'fleet-drivers-waiting-for-approval', 'fleet-drivers-waiting-for-approval', 'fleet-drivers', 'fleet-driver_details', NULL, 'fleet-drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(129, 'edit-fleet-drivers', 'edit-fleet-drivers', 'edit-fleet-drivers', 'fleet-drivers', 'driver_details', NULL, 'fleet-drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(130, 'toggle-fleet-drivers', 'toggle-fleet-drivers', 'toggle-fleet-drivers', 'fleet-drivers', 'driver_details', NULL, 'fleet-drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(131, 'update-fleet-drivers', 'update-fleet-drivers', 'update-fleet-drivers', 'drivers', 'driver_details', NULL, 'fleet-drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(132, 'delete-fleet-drivers', 'delete-fleet-drivers', 'delete-fleet-drivers', 'fleet-drivers', 'driver_details', NULL, 'fleet-drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(133, 'add-fleet-drivers', 'add-fleet-drivers', 'add-fleet-drivers', 'fleet-drivers', 'driver_details', NULL, 'fleet-drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(134, 'view-fleet-driver-request-list', 'view-fleet-driver-request-list', 'view-fleet-driver-request-list', 'fleet-drivers', 'driver_details', NULL, 'fleet-drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(135, 'fleet-driver-payment-history', 'fleet-driver-payment-history', 'fleet-driver-payment-history', 'fleet-drivers', 'driver_details', NULL, 'fleet-drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(136, 'view-fleet-driver-profile', 'view-fleet-driver-profile', 'view-fleet-driver-profile', 'fleet-drivers', 'driver_details', NULL, 'fleet-drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(137, 'fleet-driver-document', 'fleet-driver-document', 'fleet-driver-document', 'fleet-drivers', 'fleet-driver_details', NULL, 'fleet-drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(138, 'fleet-driver-document-view', 'fleet-driver-document-view', 'fleet-driver-document-view', 'fleet-drivers', 'fleet-driver_details', NULL, 'fleet-drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(139, 'fleet-driver-document-view-image', 'fleet-driver-document-view-image', 'fleet-driver-document-view', 'drivers', 'fleet-driver_details', NULL, 'fleet-drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(140, 'fleet-driver-document-edit', 'fleet-driver-document-edit', 'fleet-driver-document-edit', 'fleet-drivers', 'fleet-driver_details', NULL, 'fleet-drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(141, 'fleet-driver-document-upload', 'fleet-driver-document-upload', 'fleet-driver-document-upload', 'fleet-drivers', 'fleet-driver_details', NULL, 'fleet-drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(142, 'fleet-driver-document-toggle', 'fleet-driver-document-toggle', 'fleet-driver-document-toggle', 'fleet-drivers', 'fleet-driver_details', NULL, 'fleet-drivers', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(143, 'user-menu', 'user-menu', 'View all user related menus', 'users', NULL, NULL, NULL, 5, 'fa fa-user', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(144, 'view-users', 'Get-All-Users', 'Get all Users', 'users', 'user_details', NULL, 'users', NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(145, 'add-user', 'add-users', 'add user', 'users', NULL, 'users', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(146, 'edit-user', 'edit-user', 'edit user', 'users', NULL, 'users', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(147, 'delete-user', 'delete-user', 'delete user', 'users', NULL, 'users', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(148, 'toggle-user', 'toggle-user', 'toggle-user', 'users', NULL, 'users', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(149, 'view-user-request-list', 'view-user-request-list', 'view-user-request-list', 'users', NULL, 'users', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(150, 'user-payment-history', 'user-payment-history', 'user-payment-history', 'users', NULL, 'users', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(151, 'view-sos', 'view-sos', 'Emergency Numbers', 'sos', NULL, 'sos', NULL, 6, 'fa fa-heartbeat', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(152, 'add-sos', 'add-sos', 'add sos', 'sos', NULL, 'sos', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(153, 'edit-sos', 'edit-sos', 'edit sos', 'sos', NULL, 'sos', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(154, 'delete-sos', 'delete-sos', 'delete sos', 'sos', NULL, 'sos', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(155, 'toggle-sos', 'toggle-sos', 'toggle-sos', 'sos', NULL, 'sos', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(156, 'manage-promo', 'manage-promo', 'View Promo code', 'promo', NULL, 'promo', NULL, 10, 'fa fa-gift', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(157, 'add-promo', 'add-promo', 'add Promo code', 'promo', NULL, 'promo', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(158, 'edit-promo', 'edit-promo', 'edit promo', 'promo', NULL, 'promo', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(159, 'delete-promo', 'delete-promo', 'delete promo', 'promo', NULL, 'promo', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(160, 'toggle-promo', 'toggle-promo', 'toggle-promo', 'promo', NULL, 'promo', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(161, 'notifications', 'notifications', 'notifications', 'notifications', NULL, 'notifications', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(162, 'view-notifications', 'view-notifications', 'view notifications', 'notifications', NULL, 'notifications', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(163, 'send_push', 'send-push', 'toggle-promo', 'notifications', NULL, 'notifications', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(164, 'delete-notifications', 'delete-notification', 'delete-notifications', 'notifications', NULL, 'notifications', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(165, 'manage-faq', 'manage-faq', 'View Promo code', 'faq', NULL, 'faq', NULL, NULL, 'fa fa-gift', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(166, 'add-faq', 'add-faq', 'add Promo code', 'faq', NULL, 'faq', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(167, 'edit-faq', 'edit-faq', 'edit faq', 'faq', NULL, 'faq', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(168, 'delete-faq', 'delete-faq', 'delete faq', 'faq', NULL, 'faq', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(169, 'toggle-faq', 'toggle-faq', 'toggle-faq', 'faq', NULL, 'faq', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(170, 'cancellation-reason', 'manage-cancellation', 'View Promo code', 'cancellation', NULL, 'cancellation', NULL, NULL, 'fa fa-gift', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(171, 'add-cancellation', 'add-cancellation', 'add cancellation', 'cancellation', NULL, 'cancellation', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(172, 'edit-cancellation', 'edit-cancellation', 'edit cancellation', 'cancellation', NULL, 'cancellation', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(173, 'delete-cancellation', 'delete-cancellation', 'delete cancellation', 'cancellation', NULL, 'cancellation', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(174, 'toggle-cancellation', 'toggle-cancellation', 'toggle-cancellation', 'cancellation', NULL, 'cancellation', NULL, NULL, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(175, 'complaints', 'complaints', 'View Complaints', 'complaints', NULL, 'complaint', NULL, 15, 'fa fa-list-alt', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(176, 'user-complaint', 'user-complaint', 'Manange User Complaint', 'complaints', 'user-complaint', NULL, 'complaint/users', 15, 'fa fa-circle-thin', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(177, 'driver-complaint', 'driver-complaint', 'Manage Driver Complaint', 'complaints', 'driver-complaint', NULL, 'complaint/drivers', 15, 'fa fa-circle-thin', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(178, 'owner-complaint', 'owner-complaint', 'Manage Owner Complaint', 'complaints', 'owner-complaint', NULL, 'complaint/owner', 15, 'fa fa-circle-thin', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(179, 'complaint-title', 'complaint-title', 'View Complaint Title', 'complaints', 'complaint-title', NULL, 'complaint/title', 15, 'fa fa-circle-thin', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(180, 'add-complaint-title', 'add-complaint-title', 'View Complaint Title', 'complaints', 'complaint-title', NULL, 'complaint/title', 15, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(181, 'edit-complaint-title', 'edit-complaint-title', 'View Complaint Title', 'complaints', 'complaint-title', NULL, 'complaint/title', 15, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(182, 'delete-complaint-title', 'delete-complaint-title', 'View Complaint Title', 'complaints', 'complaint-title', NULL, 'complaint/title', 15, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(183, 'toggle-complaint-title', 'toggle-complaint-title', 'View Complaint Title', 'complaints', 'complaint-title', NULL, 'complaint/title', 15, NULL, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(184, 'reports', 'reports', 'View reports', 'reports', NULL, 'reports', NULL, 16, 'fa fa-file-pdf-o', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(185, 'user-report', 'user-report', 'Download User Report', 'reports', 'user_report', NULL, 'reports/user', 16, 'fa fa-circle-thin', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(186, 'driver-report', 'driver-report', 'Download Driver Report', 'reports', 'driver_report', NULL, 'reports/driver', 16, 'fa fa-circle-thin', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(187, 'finance-report', 'finance-report', 'Download Finance Report', 'reports', 'travel_report', NULL, 'reports/travel', 16, 'fa fa-circle-thin', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(188, 'owner-report', 'owner-report', 'Download Owner Report', 'reports', 'owner_report', NULL, 'reports/owner', 16, 'fa fa-circle-thin', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(189, 'driver-duties-report', 'driver-duities-report', 'Download driver-duities-report', 'reports', 'driver_report', NULL, 'reports/driver', 16, 'fa fa-circle-thin', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(190, 'manage-map', 'manage-map', 'Manage Map', 'map', NULL, 'map', NULL, 17, 'fa fa-globe', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(191, 'heat-map', 'heat-map', 'View Heat Map', 'map', 'heat_map', NULL, 'map/heatmap', 16, 'fa fa-circle-thin', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(192, 'map-view', 'map-view', 'Map View', 'map', NULL, 'map', NULL, 17, 'fa fa-globe', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(193, 'cms', 'cms', 'Manage Cms', 'cms', NULL, 'cms', NULL, 17, 'fa fa-globe', '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(194, 'dispatch-request', 'Dispatch-Request', 'Dispatch manual requests from admin panel', 'dispatch_request', NULL, 'dispatch-login', NULL, 3, 'fa fa-tripadvisor', '2023-11-08 03:14:21', '2023-11-08 03:14:21');

-- --------------------------------------------------------

--
-- Table structure for table `permission_role`
--

CREATE TABLE `permission_role` (
  `role_id` int(10) UNSIGNED NOT NULL,
  `permission_id` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `permission_role`
--

INSERT INTO `permission_role` (`role_id`, `permission_id`) VALUES
(3, 1),
(3, 2),
(3, 5),
(3, 6),
(3, 7),
(3, 45),
(3, 63),
(3, 72),
(3, 77),
(3, 79),
(3, 85),
(3, 86),
(3, 87),
(3, 103),
(3, 104),
(3, 143),
(3, 144),
(3, 194),
(4, 1),
(4, 15),
(4, 56),
(4, 57),
(4, 58),
(4, 59),
(4, 60),
(4, 103),
(4, 104);

-- --------------------------------------------------------

--
-- Table structure for table `personal_access_tokens`
--

CREATE TABLE `personal_access_tokens` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `tokenable_type` varchar(191) NOT NULL,
  `tokenable_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `token` varchar(64) NOT NULL,
  `abilities` text DEFAULT NULL,
  `last_used_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `poc_clients`
--

CREATE TABLE `poc_clients` (
  `id` char(36) NOT NULL,
  `project_id` int(10) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `projects`
--

CREATE TABLE `projects` (
  `id` int(10) UNSIGNED NOT NULL,
  `project_name` varchar(191) NOT NULL,
  `poc_name` varchar(191) DEFAULT NULL,
  `poc_email` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `project_flavours`
--

CREATE TABLE `project_flavours` (
  `id` int(10) UNSIGNED NOT NULL,
  `project_id` int(10) UNSIGNED NOT NULL,
  `flavour_name` varchar(191) NOT NULL,
  `app_name` varchar(191) NOT NULL,
  `bundle_identifier` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `promo`
--

CREATE TABLE `promo` (
  `id` char(36) NOT NULL,
  `transport_type` enum('taxi','delivery','both') DEFAULT NULL,
  `service_location_id` char(36) NOT NULL,
  `code` varchar(191) NOT NULL,
  `minimum_trip_amount` int(11) NOT NULL DEFAULT 0,
  `maximum_discount_amount` int(11) NOT NULL DEFAULT 0,
  `discount_percent` int(11) NOT NULL DEFAULT 0,
  `total_uses` int(11) NOT NULL DEFAULT 0,
  `uses_per_user` int(11) NOT NULL DEFAULT 0,
  `from` datetime NOT NULL,
  `to` datetime NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `promo`
--

INSERT INTO `promo` (`id`, `transport_type`, `service_location_id`, `code`, `minimum_trip_amount`, `maximum_discount_amount`, `discount_percent`, `total_uses`, `uses_per_user`, `from`, `to`, `active`, `created_at`, `updated_at`) VALUES
('48101383-c188-41a8-bf13-02cfded59c37', 'taxi', '63e81adf-18af-4aca-a644-26e3f23928a1', '500off', 500, 500, 10, 0, 0, '2024-10-03 00:00:00', '2024-10-31 23:59:59', 1, '2024-10-03 02:39:11', '2024-10-03 02:39:11'),
('92955a53-a5b2-4b37-b2d7-a4c1737e65c3', 'both', '4319c7c1-d9f9-4379-b589-b62493a24cc6', 'MOGRAB', 100, 100, 10, 0, 0, '2023-11-21 00:00:00', '2023-11-30 23:59:59', 1, '2023-11-21 02:03:46', '2023-11-21 02:03:46');

-- --------------------------------------------------------

--
-- Table structure for table `promo_users`
--

CREATE TABLE `promo_users` (
  `id` int(10) UNSIGNED NOT NULL,
  `promo_code_id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `requests`
--

CREATE TABLE `requests` (
  `id` char(36) NOT NULL,
  `company_key` varchar(191) DEFAULT NULL,
  `request_number` varchar(191) NOT NULL,
  `is_later` tinyint(1) NOT NULL DEFAULT 0,
  `is_rental` tinyint(1) NOT NULL DEFAULT 0,
  `rental_package_id` int(10) UNSIGNED DEFAULT NULL,
  `is_out_station` tinyint(1) NOT NULL DEFAULT 0,
  `ride_otp` int(11) DEFAULT NULL,
  `instant_ride` tinyint(1) NOT NULL DEFAULT 0,
  `book_for_other` tinyint(1) NOT NULL DEFAULT 0,
  `book_for_other_contact` varchar(191) NOT NULL DEFAULT '0',
  `attempt_for_schedule` int(11) NOT NULL DEFAULT 0,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `transport_type` enum('taxi','delivery') DEFAULT NULL,
  `goods_type_id` int(10) UNSIGNED DEFAULT NULL,
  `goods_type_quantity` varchar(191) DEFAULT NULL,
  `service_location_id` char(36) NOT NULL,
  `zone_type_id` char(36) DEFAULT NULL,
  `driver_id` int(10) UNSIGNED DEFAULT NULL,
  `fleet_id` char(36) DEFAULT NULL,
  `owner_id` char(36) DEFAULT NULL,
  `trip_start_time` timestamp NULL DEFAULT NULL,
  `arrived_at` timestamp NULL DEFAULT NULL,
  `accepted_at` timestamp NULL DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `cancelled_at` timestamp NULL DEFAULT NULL,
  `is_driver_started` tinyint(1) NOT NULL DEFAULT 0,
  `is_driver_arrived` tinyint(1) NOT NULL DEFAULT 0,
  `is_trip_start` tinyint(1) NOT NULL DEFAULT 0,
  `is_completed` tinyint(1) NOT NULL DEFAULT 0,
  `is_cancelled` tinyint(1) NOT NULL DEFAULT 0,
  `reason` char(36) DEFAULT NULL,
  `custom_reason` varchar(191) DEFAULT NULL,
  `cancel_method` enum('0','1','2','3') NOT NULL COMMENT '0 => Automatic,1 => User,2 => Driver,3=> Dispatcher',
  `total_distance` double(15,2) NOT NULL DEFAULT 0.00,
  `total_time` double(15,2) NOT NULL DEFAULT 0.00,
  `is_surge_applied` tinyint(1) NOT NULL DEFAULT 0,
  `payment_opt` varchar(191) NOT NULL COMMENT '0 => card,1 => cash,2 => wallet,3=>wallet/cash',
  `is_paid` tinyint(1) NOT NULL DEFAULT 0,
  `request_eta_amount` double(15,2) NOT NULL DEFAULT 0.00,
  `offerred_ride_fare` double(10,2) NOT NULL DEFAULT 0.00,
  `is_bid_ride` tinyint(1) NOT NULL DEFAULT 0,
  `accepted_ride_fare` double(10,2) NOT NULL DEFAULT 0.00,
  `user_rated` tinyint(1) NOT NULL DEFAULT 0,
  `driver_rated` tinyint(1) NOT NULL DEFAULT 0,
  `promo_id` char(36) DEFAULT NULL,
  `timezone` varchar(191) DEFAULT NULL,
  `requested_currency_code` varchar(191) DEFAULT NULL,
  `requested_currency_symbol` varchar(191) DEFAULT NULL,
  `unit` enum('1','2') NOT NULL COMMENT '1 => kilometers,2 => miles',
  `if_dispatch` tinyint(1) NOT NULL DEFAULT 0,
  `dispatcher_id` char(36) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `requests`
--

INSERT INTO `requests` (`id`, `company_key`, `request_number`, `is_later`, `is_rental`, `rental_package_id`, `is_out_station`, `ride_otp`, `instant_ride`, `book_for_other`, `book_for_other_contact`, `attempt_for_schedule`, `user_id`, `transport_type`, `goods_type_id`, `goods_type_quantity`, `service_location_id`, `zone_type_id`, `driver_id`, `fleet_id`, `owner_id`, `trip_start_time`, `arrived_at`, `accepted_at`, `completed_at`, `cancelled_at`, `is_driver_started`, `is_driver_arrived`, `is_trip_start`, `is_completed`, `is_cancelled`, `reason`, `custom_reason`, `cancel_method`, `total_distance`, `total_time`, `is_surge_applied`, `payment_opt`, `is_paid`, `request_eta_amount`, `offerred_ride_fare`, `is_bid_ride`, `accepted_ride_fare`, `user_rated`, `driver_rated`, `promo_id`, `timezone`, `requested_currency_code`, `requested_currency_symbol`, `unit`, `if_dispatch`, `dispatcher_id`, `created_at`, `updated_at`, `deleted_at`) VALUES
('0d180ce4-9ded-44da-9680-d61f1b0bddfd', NULL, 'REQ_000015', 0, 0, NULL, 0, 4233, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, 'fe9bfb11-ab9e-46b1-9771-8cc4c43447e2', '1f344f12-f698-425c-a5b2-0a02d05cd863', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-28 06:55:40', 0, 0, 0, 0, 1, NULL, NULL, '1', 0.00, 0.00, 0, '1', 0, 60.87, 0.00, 0, 0.00, 0, 0, NULL, NULL, 'INR', '₹', '1', 0, NULL, '2024-02-28 06:55:24', '2024-02-28 06:55:40', NULL),
('125060bd-92ec-4bb7-b4ad-e4b3d743bc44', NULL, 'REQ_000030', 1, 0, NULL, 0, NULL, 0, 0, '0', 0, NULL, 'delivery', 13, 'loose', '63e81adf-18af-4aca-a644-26e3f23928a1', 'df911667-1c1f-4c5d-9c64-63266080bb4f', NULL, NULL, NULL, '2024-10-03 04:30:00', NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, NULL, NULL, '0', 0.00, 0.00, 0, '1', 0, 0.00, 0.00, 0, 0.00, 0, 0, NULL, NULL, 'USD', NULL, '1', 1, 'fe7e3069-83ea-4f7e-899c-459a35e32ab7', '2024-10-03 02:57:33', '2024-10-03 02:57:33', NULL),
('132feabf-a086-44df-9954-07448ad3087c', NULL, 'REQ_000020', 0, 0, NULL, 0, 3315, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, 'fe9bfb11-ab9e-46b1-9771-8cc4c43447e2', '1f344f12-f698-425c-a5b2-0a02d05cd863', 1, NULL, NULL, '2024-04-06 03:32:15', '2024-04-06 03:31:53', '2024-04-06 03:31:47', '2024-04-06 03:32:48', NULL, 1, 1, 1, 1, 0, NULL, NULL, '0', 0.96, 0.00, 0, '1', 1, 119.50, 0.00, 0, 0.00, 1, 1, NULL, NULL, 'INR', '₹', '1', 0, NULL, '2024-04-06 03:31:40', '2024-04-06 03:33:11', NULL),
('1c8c8fe1-cafa-409a-af90-5ee369cd0595', NULL, 'REQ_000025', 0, 0, NULL, 0, 6029, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, '63e81adf-18af-4aca-a644-26e3f23928a1', '02e7aa91-13d9-4265-9a39-b93c13739426', 3, NULL, NULL, '2024-06-18 03:30:29', '2024-06-18 03:30:18', '2024-06-18 03:30:12', '2024-06-18 03:30:44', NULL, 1, 1, 1, 1, 0, NULL, NULL, '0', 0.00, 0.00, 0, '1', 1, 110.80, 0.00, 0, 0.00, 1, 1, NULL, NULL, 'USD', '$', '1', 0, NULL, '2024-06-18 03:30:03', '2024-06-18 03:31:07', NULL),
('23728187-48a2-4e1e-8366-6eb06907c098', NULL, 'REQ_000007', 0, 0, NULL, 0, 5237, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, 'fe9bfb11-ab9e-46b1-9771-8cc4c43447e2', 'f9abc022-152a-46d9-9339-7ab817040cfb', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-26 04:22:13', 0, 0, 0, 0, 1, NULL, NULL, '1', 0.00, 0.00, 0, '1', 0, 498.04, 0.00, 0, 0.00, 0, 0, NULL, NULL, 'INR', '₹', '1', 0, NULL, '2024-02-26 04:20:26', '2024-02-26 04:22:13', NULL),
('2e830040-e9eb-48d4-9b7d-4227da7ea26d', NULL, 'REQ_000014', 0, 0, NULL, 0, 5157, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, 'fe9bfb11-ab9e-46b1-9771-8cc4c43447e2', '1f344f12-f698-425c-a5b2-0a02d05cd863', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-28 06:55:21', 0, 0, 0, 0, 1, NULL, NULL, '1', 0.00, 0.00, 0, '1', 0, 60.87, 0.00, 0, 0.00, 0, 0, NULL, NULL, 'INR', '₹', '1', 0, NULL, '2024-02-28 06:54:51', '2024-02-28 06:55:21', NULL),
('2faeddb4-7ea3-4d79-9069-7d51105f27e3', NULL, 'REQ_000006', 0, 0, NULL, 0, 8558, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, 'fe9bfb11-ab9e-46b1-9771-8cc4c43447e2', '1f344f12-f698-425c-a5b2-0a02d05cd863', 1, NULL, NULL, '2023-11-09 10:35:06', '2023-11-09 10:34:53', '2023-11-09 10:34:46', '2023-11-09 10:35:19', NULL, 1, 1, 1, 1, 0, NULL, NULL, '0', 0.00, 0.00, 0, '1', 1, 82.82, 0.00, 0, 0.00, 1, 1, NULL, NULL, 'INR', '₹', '1', 0, NULL, '2023-11-09 10:34:40', '2023-11-09 10:35:43', NULL),
('31405bf4-c304-446c-9a75-8108b0a37b17', NULL, 'REQ_000009', 0, 0, NULL, 0, 4897, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, 'fe9bfb11-ab9e-46b1-9771-8cc4c43447e2', '1f344f12-f698-425c-a5b2-0a02d05cd863', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-28 06:11:07', 0, 0, 0, 0, 1, NULL, NULL, '1', 0.00, 0.00, 0, '1', 0, 35.72, 0.00, 0, 0.00, 0, 0, NULL, NULL, 'INR', '₹', '1', 0, NULL, '2024-02-28 06:10:36', '2024-02-28 06:11:07', NULL),
('36ef5e26-ceb5-41e7-b4c2-16ebab0b46a6', NULL, 'REQ_000029', 0, 0, NULL, 0, 6246, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, '63e81adf-18af-4aca-a644-26e3f23928a1', '02e7aa91-13d9-4265-9a39-b93c13739426', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-01 17:11:39', 0, 0, 0, 0, 1, NULL, NULL, '1', 0.00, 0.00, 0, '1', 0, 82.00, 0.00, 0, 0.00, 0, 0, NULL, NULL, 'USD', '$', '1', 0, NULL, '2024-09-01 17:11:35', '2024-09-01 17:11:39', NULL),
('404c3449-cd40-4206-abcc-ed5bd57abf6f', NULL, 'REQ_000027', 0, 0, NULL, 0, 3995, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, '63e81adf-18af-4aca-a644-26e3f23928a1', '02e7aa91-13d9-4265-9a39-b93c13739426', 3, NULL, NULL, NULL, NULL, '2024-06-18 03:48:09', NULL, '2024-06-19 08:36:32', 1, 0, 0, 0, 1, 'Self Cancelation', NULL, '1', 0.00, 0.00, 0, '1', 0, 183.51, 0.00, 0, 0.00, 0, 0, NULL, NULL, 'USD', '$', '1', 0, NULL, '2024-06-18 03:47:12', '2024-06-19 08:36:32', NULL),
('40d49da2-b4a1-4a98-a29b-1aa24c00dd51', NULL, 'REQ_000028', 0, 0, NULL, 0, 4497, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, '63e81adf-18af-4aca-a644-26e3f23928a1', '0a4d6d64-c989-4b6f-bebd-8a347b43ba3e', 1, NULL, NULL, '2024-08-30 14:18:54', '2024-08-30 14:18:35', '2024-08-30 14:18:30', '2024-08-30 14:18:58', NULL, 1, 1, 1, 1, 0, NULL, NULL, '0', 0.00, 0.00, 0, '1', 1, 132.13, 0.00, 0, 0.00, 1, 1, NULL, NULL, 'USD', '$', '1', 0, NULL, '2024-08-30 14:18:20', '2024-09-01 17:10:41', NULL),
('4dc10717-615a-4024-898e-f1976af070d6', NULL, 'REQ_000010', 0, 0, NULL, 0, 2652, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, 'fe9bfb11-ab9e-46b1-9771-8cc4c43447e2', '1f344f12-f698-425c-a5b2-0a02d05cd863', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-28 06:17:58', 0, 0, 0, 0, 1, NULL, NULL, '1', 0.00, 0.00, 0, '1', 0, 35.72, 0.00, 0, 0.00, 0, 0, NULL, NULL, 'INR', '₹', '1', 0, NULL, '2024-02-28 06:17:48', '2024-02-28 06:17:58', NULL),
('56053aa9-9e5c-4bef-bc7c-aeb22475d06d', NULL, 'REQ_000011', 0, 0, NULL, 0, 3421, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, 'fe9bfb11-ab9e-46b1-9771-8cc4c43447e2', '1f344f12-f698-425c-a5b2-0a02d05cd863', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-28 06:18:03', 0, 0, 0, 0, 1, NULL, NULL, '1', 0.00, 0.00, 0, '1', 0, 35.72, 0.00, 0, 0.00, 0, 0, NULL, NULL, 'INR', '₹', '1', 0, NULL, '2024-02-28 06:18:00', '2024-02-28 06:18:03', NULL),
('58ef750e-870c-446f-ac01-bee2f3b86862', NULL, 'REQ_000004', 0, 0, NULL, 0, 4223, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, 'fe9bfb11-ab9e-46b1-9771-8cc4c43447e2', '1f344f12-f698-425c-a5b2-0a02d05cd863', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-09 10:26:38', 0, 0, 0, 0, 1, NULL, NULL, '1', 0.00, 0.00, 0, '1', 0, 112.88, 0.00, 0, 0.00, 0, 0, NULL, NULL, 'INR', '₹', '1', 0, NULL, '2023-11-09 10:25:40', '2023-11-09 10:26:38', NULL),
('5f6ad195-6ef9-4019-9aec-d5f62949486b', NULL, 'REQ_000016', 0, 0, NULL, 0, 6304, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, 'fe9bfb11-ab9e-46b1-9771-8cc4c43447e2', '1f344f12-f698-425c-a5b2-0a02d05cd863', 1, NULL, NULL, '2024-02-28 06:57:06', '2024-02-28 06:56:48', '2024-02-28 06:56:35', '2024-02-28 06:57:23', NULL, 1, 1, 1, 1, 0, NULL, NULL, '0', 1.18, 0.00, 0, '1', 1, 60.87, 0.00, 0, 0.00, 1, 1, NULL, NULL, 'INR', '₹', '1', 0, NULL, '2024-02-28 06:56:04', '2024-02-28 07:00:17', NULL),
('6897d906-bb3b-4238-9f43-d7943fdfbe9c', NULL, 'REQ_000005', 0, 0, NULL, 0, 6464, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, 'fe9bfb11-ab9e-46b1-9771-8cc4c43447e2', '1f344f12-f698-425c-a5b2-0a02d05cd863', 1, NULL, NULL, '2023-11-09 10:27:48', '2023-11-09 10:27:20', '2023-11-09 10:27:00', '2023-11-09 10:28:05', NULL, 1, 1, 1, 1, 0, NULL, NULL, '0', 0.00, 0.00, 0, '1', 1, 112.88, 0.00, 0, 0.00, 1, 1, NULL, NULL, 'INR', '₹', '1', 0, NULL, '2023-11-09 10:26:42', '2023-11-09 10:30:06', NULL),
('6d472c36-9d29-4f76-9d4d-cb3b89f02ff2', NULL, 'REQ_000026', 0, 0, NULL, 0, 9859, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, '63e81adf-18af-4aca-a644-26e3f23928a1', '02e7aa91-13d9-4265-9a39-b93c13739426', 3, NULL, NULL, '2024-06-18 03:43:59', '2024-06-18 03:43:39', '2024-06-18 03:43:34', '2024-06-18 03:44:09', NULL, 1, 1, 1, 1, 0, NULL, NULL, '0', 0.00, 0.00, 0, '1', 1, 96.53, 0.00, 0, 0.00, 1, 1, NULL, NULL, 'USD', '$', '1', 0, NULL, '2024-06-18 03:43:27', '2024-06-18 03:46:51', NULL),
('75026baf-9757-4725-82dd-c63d466fc76b', NULL, 'REQ_000018', 0, 0, NULL, 0, 9110, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, 'fe9bfb11-ab9e-46b1-9771-8cc4c43447e2', '1f344f12-f698-425c-a5b2-0a02d05cd863', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-28 07:07:32', 0, 0, 0, 0, 1, NULL, NULL, '1', 0.00, 0.00, 0, '1', 0, 57.49, 0.00, 0, 0.00, 0, 0, NULL, NULL, 'INR', '₹', '1', 0, NULL, '2024-02-28 07:07:03', '2024-02-28 07:07:32', NULL),
('81d5105e-67a0-445b-99d2-bef9bfbf9430', NULL, 'REQ_000021', 0, 0, NULL, 0, 4039, 0, 0, '0', 0, 14, 'taxi', NULL, NULL, '63e81adf-18af-4aca-a644-26e3f23928a1', '02e7aa91-13d9-4265-9a39-b93c13739426', 3, NULL, NULL, '2024-05-28 03:45:59', '2024-05-28 03:45:08', '2024-05-28 03:44:54', '2024-05-28 03:46:09', NULL, 1, 1, 1, 1, 0, NULL, NULL, '0', 0.01, 0.00, 0, '1', 1, 125.33, 0.00, 0, 0.00, 1, 1, NULL, NULL, 'USD', '$', '1', 0, NULL, '2024-05-28 03:44:42', '2024-05-28 03:46:31', NULL),
('9b3bd7e0-48c3-4e60-a96c-707fef0eb3f9', NULL, 'REQ_000002', 0, 0, NULL, 0, 6044, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, 'fe9bfb11-ab9e-46b1-9771-8cc4c43447e2', 'f9abc022-152a-46d9-9339-7ab817040cfb', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-09 10:20:41', 0, 0, 0, 0, 1, NULL, NULL, '1', 0.00, 0.00, 0, '1', 0, 561.98, 0.00, 0, 0.00, 0, 0, NULL, NULL, 'INR', '₹', '1', 0, NULL, '2023-11-09 10:19:58', '2023-11-09 10:20:41', NULL),
('9b3cec6b-37d7-4b89-9318-0ca89116c669', NULL, 'REQ_000023', 0, 0, NULL, 0, 1912, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, '63e81adf-18af-4aca-a644-26e3f23928a1', '02e7aa91-13d9-4265-9a39-b93c13739426', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-18 02:00:50', 0, 0, 0, 0, 1, NULL, NULL, '1', 0.00, 0.00, 0, '1', 0, 90.93, 0.00, 0, 0.00, 0, 0, NULL, NULL, 'USD', '$', '1', 0, NULL, '2024-06-18 01:55:44', '2024-06-18 02:00:50', NULL),
('ac0391c7-22f6-46d6-84c1-71a0f04768e0', NULL, 'REQ_000003', 0, 0, NULL, 0, 3287, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, 'fe9bfb11-ab9e-46b1-9771-8cc4c43447e2', 'f9abc022-152a-46d9-9339-7ab817040cfb', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-09 10:23:14', 0, 0, 0, 0, 1, NULL, NULL, '1', 0.00, 0.00, 0, '1', 0, 561.98, 0.00, 0, 0.00, 0, 0, NULL, NULL, 'INR', '₹', '1', 0, NULL, '2023-11-09 10:22:11', '2023-11-09 10:23:14', NULL),
('b1e1f78e-6170-42ca-b91d-16447452b087', NULL, 'REQ_000001', 0, 0, NULL, 0, 7995, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, '4319c7c1-d9f9-4379-b589-b62493a24cc6', '41316fb9-32b2-41b8-a99b-ed0927f79d08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-09 10:17:39', 0, 0, 0, 0, 1, NULL, NULL, '1', 0.00, 0.00, 0, '1', 0, 122.16, 0.00, 0, 0.00, 0, 0, NULL, NULL, 'INR', '₹', '1', 0, NULL, '2023-11-09 10:16:58', '2023-11-09 10:17:39', NULL),
('b8207cb1-03dc-43e3-8545-06594b0cca5c', NULL, 'REQ_000012', 0, 0, NULL, 0, 3144, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, 'fe9bfb11-ab9e-46b1-9771-8cc4c43447e2', '1f344f12-f698-425c-a5b2-0a02d05cd863', 1, NULL, NULL, '2024-02-28 06:19:41', '2024-02-28 06:19:23', '2024-02-28 06:19:10', '2024-02-28 06:19:50', NULL, 1, 1, 1, 1, 0, NULL, NULL, '0', 0.00, 0.00, 0, '1', 1, 9.81, 0.00, 0, 0.00, 1, 1, NULL, NULL, 'INR', '₹', '1', 0, NULL, '2024-02-28 06:19:02', '2024-02-28 06:20:10', NULL),
('bda33c99-4ba4-4464-97b8-5610bb0c31b3', NULL, 'REQ_000017', 0, 0, NULL, 0, 1171, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, 'fe9bfb11-ab9e-46b1-9771-8cc4c43447e2', '1f344f12-f698-425c-a5b2-0a02d05cd863', 1, NULL, NULL, '2024-02-28 07:01:51', '2024-02-28 07:01:39', '2024-02-28 07:01:33', '2024-02-28 07:02:00', NULL, 1, 1, 1, 1, 0, NULL, NULL, '0', 3.98, 0.00, 0, '1', 1, 81.66, 0.00, 0, 0.00, 1, 1, NULL, NULL, 'INR', '₹', '1', 0, NULL, '2024-02-28 07:01:28', '2024-02-28 07:02:29', NULL),
('c608c572-c1cc-4832-936d-a1945d7d5a14', NULL, 'REQ_000022', 0, 0, NULL, 0, 9732, 0, 0, '0', 0, 14, 'taxi', NULL, NULL, '63e81adf-18af-4aca-a644-26e3f23928a1', '02e7aa91-13d9-4265-9a39-b93c13739426', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-28 03:47:33', 0, 0, 0, 0, 1, NULL, NULL, '1', 0.00, 0.00, 0, '1', 0, 116.80, 0.00, 0, 0.00, 0, 0, NULL, NULL, 'USD', '$', '1', 0, NULL, '2024-05-28 03:47:01', '2024-05-28 03:47:33', NULL),
('cddca800-16b3-4648-9aeb-1a8b6dd1e7cd', NULL, 'REQ_000019', 0, 0, NULL, 0, 6443, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, 'fe9bfb11-ab9e-46b1-9771-8cc4c43447e2', '1f344f12-f698-425c-a5b2-0a02d05cd863', 1, NULL, NULL, '2024-02-28 07:08:37', '2024-02-28 07:08:29', '2024-02-28 07:08:24', '2024-02-28 07:08:46', NULL, 1, 1, 1, 1, 0, NULL, NULL, '0', 1025.96, 0.00, 0, '1', 1, 57.49, 0.00, 0, 0.00, 1, 1, NULL, NULL, 'INR', '₹', '1', 0, NULL, '2024-02-28 07:08:13', '2024-02-28 07:09:12', NULL),
('d24b5f66-0266-4f49-aa58-12047db3de83', NULL, 'REQ_000008', 0, 0, NULL, 0, 1815, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, 'fe9bfb11-ab9e-46b1-9771-8cc4c43447e2', '1f344f12-f698-425c-a5b2-0a02d05cd863', 1, NULL, NULL, '2024-02-26 04:23:19', '2024-02-26 04:22:43', '2024-02-26 04:22:34', '2024-02-26 04:23:36', NULL, 1, 1, 1, 1, 0, NULL, NULL, '0', 0.14, 0.00, 0, '1', 1, 97.37, 0.00, 0, 0.00, 1, 1, NULL, NULL, 'INR', '₹', '1', 0, NULL, '2024-02-26 04:22:23', '2024-02-26 04:24:43', NULL),
('ddcce24b-2656-4243-9ba9-5d1893ae4f75', NULL, 'REQ_000013', 0, 0, NULL, 0, 2726, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, 'fe9bfb11-ab9e-46b1-9771-8cc4c43447e2', 'f9abc022-152a-46d9-9339-7ab817040cfb', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-28 06:54:40', 0, 0, 0, 0, 1, NULL, NULL, '1', 0.00, 0.00, 0, '1', 0, 342.80, 0.00, 0, 0.00, 0, 0, NULL, NULL, 'INR', '₹', '1', 0, NULL, '2024-02-28 06:48:17', '2024-02-28 06:54:40', NULL),
('f18906d6-9fca-4f02-8621-52c1425185c3', NULL, 'REQ_000024', 0, 0, NULL, 0, 4215, 0, 0, '0', 0, 4, 'taxi', NULL, NULL, '63e81adf-18af-4aca-a644-26e3f23928a1', '0a4d6d64-c989-4b6f-bebd-8a347b43ba3e', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-18 03:29:43', 0, 0, 0, 0, 1, NULL, NULL, '1', 0.00, 0.00, 0, '1', 0, 8.00, 0.00, 0, 0.00, 0, 0, NULL, NULL, 'USD', '$', '1', 0, NULL, '2024-06-18 03:28:32', '2024-06-18 03:29:43', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `requests_meta`
--

CREATE TABLE `requests_meta` (
  `id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  `assign_method` enum('1','2') NOT NULL COMMENT '1 => one-by-one,2 => all',
  `is_later` tinyint(1) NOT NULL DEFAULT 0,
  `distance_to_pickup` double(15,8) NOT NULL DEFAULT 0.00000000,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `request_bills`
--

CREATE TABLE `request_bills` (
  `id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `base_price` double(10,2) NOT NULL DEFAULT 0.00,
  `base_distance` int(11) NOT NULL,
  `total_distance` double(15,8) NOT NULL DEFAULT 0.00000000,
  `total_time` double(15,2) NOT NULL DEFAULT 0.00,
  `price_per_distance` double(10,2) NOT NULL DEFAULT 0.00,
  `distance_price` double(10,2) NOT NULL DEFAULT 0.00,
  `price_per_time` double(10,2) NOT NULL DEFAULT 0.00,
  `time_price` double(10,2) NOT NULL DEFAULT 0.00,
  `waiting_charge_per_min` int(11) NOT NULL DEFAULT 0,
  `calculated_waiting_time` int(11) NOT NULL DEFAULT 0,
  `after_trip_start_waiting_time` int(11) NOT NULL DEFAULT 0,
  `before_trip_start_waiting_time` int(11) NOT NULL DEFAULT 0,
  `airport_surge_fee` double(10,2) NOT NULL DEFAULT 0.00,
  `waiting_charge` double(10,2) NOT NULL DEFAULT 0.00,
  `cancellation_fee` double(10,2) NOT NULL DEFAULT 0.00,
  `service_tax` double(10,2) NOT NULL DEFAULT 0.00,
  `service_tax_percentage` int(11) NOT NULL DEFAULT 0,
  `promo_discount` double(10,2) NOT NULL DEFAULT 0.00,
  `admin_commision` double(10,2) NOT NULL DEFAULT 0.00,
  `admin_commision_with_tax` double(10,2) NOT NULL DEFAULT 0.00,
  `driver_commision` double(10,2) NOT NULL DEFAULT 0.00,
  `total_amount` double(10,2) NOT NULL DEFAULT 0.00,
  `requested_currency_code` varchar(191) NOT NULL,
  `requested_currency_symbol` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `request_bills`
--

INSERT INTO `request_bills` (`id`, `request_id`, `base_price`, `base_distance`, `total_distance`, `total_time`, `price_per_distance`, `distance_price`, `price_per_time`, `time_price`, `waiting_charge_per_min`, `calculated_waiting_time`, `after_trip_start_waiting_time`, `before_trip_start_waiting_time`, `airport_surge_fee`, `waiting_charge`, `cancellation_fee`, `service_tax`, `service_tax_percentage`, `promo_discount`, `admin_commision`, `admin_commision_with_tax`, `driver_commision`, `total_amount`, `requested_currency_code`, `requested_currency_symbol`, `created_at`, `updated_at`) VALUES
(1, '6897d906-bb3b-4238-9f43-d7943fdfbe9c', 2.00, 2, 0.00000000, 0.00, 2.00, 0.00, 2.00, 0.00, 2, 0, 0, 0, 0.00, 0.00, 0.00, 0.60, 30, 0.00, 0.60, 1.20, 2.00, 3.20, 'INR', '₹', '2023-11-09 10:28:05', '2023-11-09 10:28:05'),
(2, '6897d906-bb3b-4238-9f43-d7943fdfbe9c', 2.00, 2, 0.00000000, 0.00, 2.00, 0.00, 2.00, 0.00, 2, 0, 0, 0, 0.00, 0.00, 0.00, 0.60, 30, 0.00, 0.60, 1.20, 2.00, 3.20, 'INR', '₹', '2023-11-09 10:28:05', '2023-11-09 10:28:05'),
(3, '2faeddb4-7ea3-4d79-9069-7d51105f27e3', 2.00, 2, 0.00000000, 0.00, 2.00, 0.00, 2.00, 0.00, 2, 0, 0, 0, 0.00, 0.00, 0.00, 0.60, 30, 0.00, 0.60, 1.20, 2.00, 3.20, 'INR', '₹', '2023-11-09 10:35:19', '2023-11-09 10:35:19'),
(4, 'd24b5f66-0266-4f49-aa58-12047db3de83', 2.00, 2, 0.13500000, 0.00, 2.00, 0.00, 2.00, 0.00, 2, 0, 0, 0, 0.00, 0.00, 0.00, 0.60, 30, 0.00, 0.60, 1.20, 2.00, 3.20, 'INR', '₹', '2024-02-26 04:23:37', '2024-02-26 04:23:37'),
(5, 'b8207cb1-03dc-43e3-8545-06594b0cca5c', 2.00, 2, 0.00000000, 0.00, 2.00, 0.00, 2.00, 0.00, 2, 0, 0, 0, 0.00, 0.00, 0.00, 0.60, 30, 0.00, 0.60, 1.20, 2.00, 3.20, 'INR', '₹', '2024-02-28 06:19:50', '2024-02-28 06:19:50'),
(6, '5f6ad195-6ef9-4019-9aec-d5f62949486b', 2.00, 2, 1.18400000, 0.00, 2.00, 0.00, 2.00, 0.00, 2, 0, 0, 0, 0.00, 0.00, 0.00, 0.60, 30, 0.00, 0.60, 1.20, 2.00, 3.20, 'INR', '₹', '2024-02-28 06:57:23', '2024-02-28 06:57:23'),
(7, 'bda33c99-4ba4-4464-97b8-5610bb0c31b3', 2.00, 2, 3.98500000, 0.00, 2.00, 3.97, 2.00, 0.00, 2, 0, 0, 0, 0.00, 0.00, 0.00, 1.79, 30, 0.00, 1.79, 3.58, 5.97, 9.55, 'INR', '₹', '2024-02-28 07:02:00', '2024-02-28 07:02:00'),
(8, 'cddca800-16b3-4648-9aeb-1a8b6dd1e7cd', 2.00, 2, 1025.96200000, 0.00, 2.00, 2047.92, 2.00, 0.00, 2, 0, 0, 0, 0.00, 0.00, 0.00, 614.98, 30, 0.00, 614.98, 1229.95, 2049.92, 3279.88, 'INR', '₹', '2024-02-28 07:08:46', '2024-02-28 07:08:46'),
(9, '132feabf-a086-44df-9954-07448ad3087c', 2.00, 2, 0.96300000, 0.00, 2.00, 0.00, 2.00, 0.00, 2, 0, 0, 0, 0.00, 0.00, 0.00, 0.60, 30, 0.00, 0.60, 1.20, 2.00, 3.20, 'INR', '₹', '2024-04-06 03:32:48', '2024-04-06 03:32:48'),
(10, '81d5105e-67a0-445b-99d2-bef9bfbf9430', 5.00, 5, 0.00600000, 0.00, 5.00, 0.00, 5.00, 0.00, 5, 0, 0, 0, 0.00, 0.00, 0.00, 1.50, 30, 0.00, 1.50, 3.00, 5.00, 8.00, 'USD', '$', '2024-05-28 03:46:09', '2024-05-28 03:46:09'),
(11, '1c8c8fe1-cafa-409a-af90-5ee369cd0595', 5.00, 5, 0.00200000, 0.00, 5.00, 0.00, 5.00, 0.00, 5, 0, 0, 0, 0.00, 0.00, 0.00, 1.50, 30, 0.00, 1.50, 3.00, 5.00, 8.00, 'USD', '$', '2024-06-18 03:30:44', '2024-06-18 03:30:44'),
(12, '6d472c36-9d29-4f76-9d4d-cb3b89f02ff2', 5.00, 5, 0.00100000, 0.00, 5.00, 0.00, 5.00, 0.00, 5, 0, 0, 0, 0.00, 0.00, 0.00, 1.50, 30, 0.00, 1.50, 3.00, 5.00, 8.00, 'USD', '$', '2024-06-18 03:44:09', '2024-06-18 03:44:09'),
(13, '40d49da2-b4a1-4a98-a29b-1aa24c00dd51', 5.00, 5, 0.00000000, 0.00, 5.00, 0.00, 5.00, 0.00, 5, 0, 0, 0, 0.00, 0.00, 0.00, 1.50, 30, 0.00, 1.50, 3.00, 5.00, 8.00, 'USD', '$', '2024-08-30 14:18:58', '2024-08-30 14:18:58');

-- --------------------------------------------------------

--
-- Table structure for table `request_cancellation_fees`
--

CREATE TABLE `request_cancellation_fees` (
  `id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `driver_id` int(10) UNSIGNED DEFAULT NULL,
  `cancellation_fee` double(10,2) NOT NULL DEFAULT 0.00,
  `is_paid` tinyint(1) NOT NULL DEFAULT 0,
  `paid_request_id` char(36) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `request_cancellation_fees`
--

INSERT INTO `request_cancellation_fees` (`id`, `request_id`, `user_id`, `driver_id`, `cancellation_fee`, `is_paid`, `paid_request_id`, `created_at`, `updated_at`) VALUES
(1, 'c608c572-c1cc-4832-936d-a1945d7d5a14', NULL, 3, 5.00, 1, 'c608c572-c1cc-4832-936d-a1945d7d5a14', '2024-05-28 03:47:21', '2024-05-28 03:47:21');

-- --------------------------------------------------------

--
-- Table structure for table `request_delivery_proofs`
--

CREATE TABLE `request_delivery_proofs` (
  `id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `after_load` tinyint(1) NOT NULL DEFAULT 0,
  `after_unload` tinyint(1) NOT NULL DEFAULT 0,
  `proof_image` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `request_places`
--

CREATE TABLE `request_places` (
  `id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `pick_lat` double(15,8) DEFAULT NULL,
  `pick_lng` double(15,8) DEFAULT NULL,
  `drop_lat` double(15,8) DEFAULT NULL,
  `drop_lng` double(15,8) DEFAULT NULL,
  `request_path` longtext DEFAULT NULL,
  `pick_address` varchar(191) DEFAULT NULL,
  `drop_address` varchar(191) DEFAULT NULL,
  `pickup_poc_name` varchar(191) DEFAULT NULL,
  `drop_poc_name` varchar(191) DEFAULT NULL,
  `pickup_poc_mobile` varchar(191) DEFAULT NULL,
  `pickup_poc_instruction` varchar(191) DEFAULT NULL,
  `drop_poc_mobile` varchar(191) DEFAULT NULL,
  `drop_poc_instruction` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `request_places`
--

INSERT INTO `request_places` (`id`, `request_id`, `pick_lat`, `pick_lng`, `drop_lat`, `drop_lng`, `request_path`, `pick_address`, `drop_address`, `pickup_poc_name`, `drop_poc_name`, `pickup_poc_mobile`, `pickup_poc_instruction`, `drop_poc_mobile`, `drop_poc_instruction`, `created_at`, `updated_at`) VALUES
(1, 'b1e1f78e-6170-42ca-b91d-16447452b087', 19.09727280, 72.87473330, 18.96953900, 72.81932900, NULL, 'Mumbai Airport Lounge - Adani Lounge, छत्रपति शिवाजी अंतर्राष्ट्रीय हवाईअड्डा क्षेत्र, बांद्रा टर्मिनस, Vile Parle East, Vile Parle, Mumbai, Maharashtra, India', 'Mumbai Central railway station building, Mumbai Central, Mumbai, Maharashtra, India', NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-09 10:16:58', '2023-11-09 10:16:58'),
(2, '9b3bd7e0-48c3-4e60-a96c-707fef0eb3f9', 22.60175210, 88.38313270, 22.63247100, 88.43433200, NULL, 'Kolkata Railway Station (Chitpur Station), Kolkata Station Road, Belgachia, Kolkata, West Bengal, India', 'Kolkata Airport, VIP Road, Ramkrishna Pally, Kaikhali, Kolkata, West Bengal, India', NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-09 10:19:58', '2023-11-09 10:19:58'),
(3, 'ac0391c7-22f6-46d6-84c1-71a0f04768e0', 22.60175210, 88.38313270, 22.63247100, 88.43433200, NULL, 'Kolkata Railway Station (Chitpur Station), Kolkata Station Road, Belgachia, Kolkata, West Bengal, India', 'Kolkata Airport, VIP Road, Ramkrishna Pally, Kaikhali, Kolkata, West Bengal, India', NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-09 10:22:11', '2023-11-09 10:22:11'),
(4, '58ef750e-870c-446f-ac01-bee2f3b86862', 22.57156920, 88.40202280, 22.63247100, 88.43433200, NULL, 'Swabhumi The Heritage, Narkeldanga Main Road, Kadapara, Phool Bagan, Kankurgachi, Kolkata, West Bengal, India', 'Kolkata Airport, VIP Road, Ramkrishna Pally, Kaikhali, Kolkata, West Bengal, India', NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-09 10:25:40', '2023-11-09 10:25:40'),
(5, '6897d906-bb3b-4238-9f43-d7943fdfbe9c', 22.57156920, 88.40202280, 22.57156830, 88.40202170, '[{\"lat\":22.571568299999999140936779440380632877349853515625,\"lng\":88.402021700000005921538104303181171417236328125}]', 'Swabhumi The Heritage, Narkeldanga Main Road, Kadapara, Phool Bagan, Kankurgachi, Kolkata, West Bengal, India', '89C, Narkeldanga Main Rd, Kadapara, Phool Bagan, Kankurgachi, Kolkata, West Bengal 700054, India', NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-09 10:26:42', '2023-11-09 10:28:05'),
(6, '2faeddb4-7ea3-4d79-9069-7d51105f27e3', 22.57156920, 88.40202280, 22.57156830, 88.40202170, '[{\"lat\":22.571568299999999140936779440380632877349853515625,\"lng\":88.402021700000005921538104303181171417236328125}]', 'Swabhumi The Heritage, Narkeldanga Main Road, Kadapara, Phool Bagan, Kankurgachi, Kolkata, West Bengal, India', '89C, Narkeldanga Main Rd, Kadapara, Phool Bagan, Kankurgachi, Kolkata, West Bengal 700054, India', NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-09 10:34:40', '2023-11-09 10:35:19'),
(7, '23728187-48a2-4e1e-8366-6eb06907c098', 22.57104860, 88.40112550, 22.54421637, 88.36600363, NULL, 'Inox - Swabhumi, Narkeldanga Main Road, Kadapara, Chitpur, Beleghata, Kolkata, West Bengal, India', '7MJCG9V8+PC35, Ward Number 60, Kolkata, West Bengal 700014, India', NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-26 04:20:26', '2024-02-26 04:20:26'),
(8, 'd24b5f66-0266-4f49-aa58-12047db3de83', 22.57104860, 88.40112550, 22.57156830, 88.40202170, '[{\"lat\":22.571568299999999140936779440380632877349853515625,\"lng\":88.402021700000005921538104303181171417236328125}]', 'Inox - Swabhumi, Narkeldanga Main Road, Kadapara, Chitpur, Beleghata, Kolkata, West Bengal, India', 'HCC3+R34, 89C, Narkeldanga Main Rd, Kadapara, Phool Bagan, Kankurgachi, Kolkata, West Bengal 700054, India', NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-26 04:22:23', '2024-02-26 04:23:36'),
(9, '31405bf4-c304-446c-9a75-8108b0a37b17', 22.56460810, 88.34326450, 22.55424590, 88.33587440, NULL, 'Eden Gardens, Maidan, B.B.D. Bagh, Kolkata, West Bengal, India', 'Fort William, Maidan, Fort William, Hastings, Kolkata, West Bengal, India', NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-28 06:10:36', '2024-02-28 06:10:36'),
(10, '4dc10717-615a-4024-898e-f1976af070d6', 22.56460810, 88.34326450, 22.55424590, 88.33587440, NULL, 'Eden Gardens, Maidan, B.B.D. Bagh, Kolkata, West Bengal, India', 'Fort William, Maidan, Fort William, Hastings, Kolkata, West Bengal, India', NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-28 06:17:48', '2024-02-28 06:17:48'),
(11, '56053aa9-9e5c-4bef-bc7c-aeb22475d06d', 22.56460810, 88.34326450, 22.55424590, 88.33587440, NULL, 'Eden Gardens, Maidan, B.B.D. Bagh, Kolkata, West Bengal, India', 'Fort William, Maidan, Fort William, Hastings, Kolkata, West Bengal, India', NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-28 06:18:00', '2024-02-28 06:18:00'),
(12, 'b8207cb1-03dc-43e3-8545-06594b0cca5c', 22.56460810, 88.34326450, 22.56460670, 88.34326330, '[{\"lat\":22.5646066999999987956471159122884273529052734375,\"lng\":88.3432633000000038236976251937448978424072265625}]', 'Eden Gardens, Maidan, B.B.D. Bagh, Kolkata, West Bengal, India', '141, Collin Street Janbazar, Maidan, Dharmatala, B.B.D. Bagh, Kolkata, West Bengal 700016, India', NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-28 06:19:02', '2024-02-28 06:19:50'),
(13, 'ddcce24b-2656-4243-9ba9-5d1893ae4f75', 22.57575615, 88.35543841, 22.58300020, 88.33729090, NULL, '141, Harin Bari 1st Ln, Tiretti, Kolkata, West Bengal 700073, India', 'Howrah Railway Station, Howrah, West Bengal, India', NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-28 06:48:17', '2024-02-28 06:48:17'),
(14, '2e830040-e9eb-48d4-9b7d-4227da7ea26d', 22.57575615, 88.35543841, 22.58300020, 88.33729090, NULL, '141, Harin Bari 1st Ln, Tiretti, Kolkata, West Bengal 700073, India', 'Howrah Railway Station, Howrah, West Bengal, India', NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-28 06:54:51', '2024-02-28 06:54:51'),
(15, '0d180ce4-9ded-44da-9680-d61f1b0bddfd', 22.57575615, 88.35543841, 22.58300020, 88.33729090, NULL, '141, Harin Bari 1st Ln, Tiretti, Kolkata, West Bengal 700073, India', 'Howrah Railway Station, Howrah, West Bengal, India', NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-28 06:55:24', '2024-02-28 06:55:24'),
(16, '5f6ad195-6ef9-4019-9aec-d5f62949486b', 22.57575615, 88.35543841, 22.57264500, 88.36389500, '[{\"lat\":22.57264500000000140289557748474180698394775390625,\"lng\":88.3638949999999994133759173564612865447998046875}]', '141, Harin Bari 1st Ln, Tiretti, Kolkata, West Bengal 700073, India', 'Kharadi by pass, MH SH 27 Tukaram Nagar, Kharadi, Cossipore, Lalbajar, College Square, Pune, Kolkata, Maharashtra 411014, India', NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-28 06:56:04', '2024-02-28 06:57:23'),
(17, 'bda33c99-4ba4-4464-97b8-5610bb0c31b3', 22.58300020, 88.33729090, 22.57264500, 88.36389500, '[{\"lat\":22.57264500000000140289557748474180698394775390625,\"lng\":88.3638949999999994133759173564612865447998046875}]', 'Howrah Railway Station, Howrah, West Bengal, India', 'Kharadi by pass, MH SH 27 Tukaram Nagar, Kharadi, Cossipore, Lalbajar, College Square, Pune, Kolkata, Maharashtra 411014, India', NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-28 07:01:28', '2024-02-28 07:02:00'),
(18, '75026baf-9757-4725-82dd-c63d466fc76b', 22.56460810, 88.34326450, 22.58300020, 88.33729090, NULL, 'Eden Gardens, Maidan, B.B.D. Bagh, Kolkata, West Bengal, India', 'Howrah Railway Station, Howrah, West Bengal, India', NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-28 07:07:03', '2024-02-28 07:07:03'),
(19, 'cddca800-16b3-4648-9aeb-1a8b6dd1e7cd', 22.56460810, 88.34326450, 26.84682980, 80.87251160, '[{\"lat\":26.846829799999998300563675002194941043853759765625,\"lng\":80.87251159999999572391971014440059661865234375}]', 'Eden Gardens, Maidan, B.B.D. Bagh, Kolkata, West Bengal, India', '355/89, Block F, Rajajipuram, Lucknow, Uttar Pradesh 226017, India', NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-28 07:08:13', '2024-02-28 07:08:45'),
(20, '132feabf-a086-44df-9954-07448ad3087c', 22.57383175, 88.39840941, 22.57345810, 88.39882820, '[{\"lat\":22.573458099999999859619492781348526477813720703125,\"lng\":88.398828199999996968472260050475597381591796875}]', 'Prasad Rare Earth Tower-1, Prasad Rare Earth, Kadapara, Phool Bagan, Kankurgachi, Kolkata, West Bengal 700054, India', 'PRASAD EXOTICA, Kadapara, Phool Bagan, Kankurgachi, Kolkata, West Bengal 700054, India', NULL, NULL, NULL, NULL, NULL, NULL, '2024-04-06 03:31:40', '2024-04-06 03:32:48'),
(21, '81d5105e-67a0-445b-99d2-bef9bfbf9430', 28.36726843, 77.29389343, 28.36726790, 77.29383520, '[{\"lat\":28.3672679000000016458216123282909393310546875,\"lng\":77.2938352000000037378413253463804721832275390625}]', '155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', '155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-28 03:44:42', '2024-05-28 03:46:09'),
(22, 'c608c572-c1cc-4832-936d-a1945d7d5a14', 28.38247219, 77.29567677, 28.36867359, 77.27646746, NULL, '2B-24, Block B, New Industrial Twp 2, New Industrial Township, Faridabad, Haryana 121001, India', '743, Kapra Colony, Sector 51, Faridabad, Haryana 121005, India', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-28 03:47:01', '2024-05-28 03:47:01'),
(23, '9b3cec6b-37d7-4b89-9318-0ca89116c669', 28.36724601, 77.29379185, 28.36750622, 77.31592208, NULL, '155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', '9888+X9J, YMCA University Campus St, Sector 6, Faridabad, Haryana 121006, India', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-18 01:55:44', '2024-06-18 01:55:44'),
(24, 'f18906d6-9fca-4f02-8621-52c1425185c3', 28.36744072, 77.29399938, 28.36734602, 77.29385655, NULL, '138, N.I.T, East India Colony, Sector 22, Faridabad, Haryana 121005, India', '155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-18 03:28:32', '2024-06-18 03:28:32'),
(25, '1c8c8fe1-cafa-409a-af90-5ee369cd0595', 28.36729263, 77.29389343, 28.36726830, 77.29391680, '[{\"lat\":28.36726829999999921483322395943105220794677734375,\"lng\":77.293916800000005196125130169093608856201171875}]', '155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', '155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-18 03:30:03', '2024-06-18 03:30:44'),
(26, '6d472c36-9d29-4f76-9d4d-cb3b89f02ff2', 28.36727315, 77.29393970, 28.36727740, 77.29394720, '[{\"lat\":28.36727739999999897690940997563302516937255859375,\"lng\":77.2939472000000051821189117617905139923095703125}]', '155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', '155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-18 03:43:27', '2024-06-18 03:44:09'),
(27, '404c3449-cd40-4206-abcc-ed5bd57abf6f', 28.36727109, 77.29394440, 28.40692094, 77.31809534, NULL, '155, Jawahar Colony, Sector 23, Faridabad, Haryana 121005, India', '1088, Sector 16 Rd, Nirman Kunj, ADB PWD Colony, Sector 16A, Faridabad, Haryana 121002, India', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-18 03:47:12', '2024-06-18 03:47:12'),
(28, '40d49da2-b4a1-4a98-a29b-1aa24c00dd51', 19.06878926, 72.87026457, 19.06878930, 72.87026470, '[{\"lat\":19.06878929999999883193595451302826404571533203125,\"lng\":72.8702646999999927857061265967786312103271484375}]', 'FC-7041/42, Bandra Kurla Complex Rd, G Block BKC, Bandra Kurla Complex, Bandra East, Mumbai, Maharashtra 400051, India', 'FC-7041/42, Bandra Kurla Complex Rd, G Block BKC, Bandra Kurla Complex, Bandra East, Mumbai, Maharashtra 400051, India', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-30 14:18:20', '2024-08-30 14:18:58'),
(29, '36ef5e26-ceb5-41e7-b4c2-16ebab0b46a6', 24.59422211, 32.93488875, 24.61210479, 32.94689063, NULL, 'HWVP+Q4C, Kashmanah Sarq, Nasr, Aswan Governorate 1277233, Egypt', 'JW7W+3V، شارع ٩، Seyalah, Nasr, Aswan Governorate 1277435, Egypt', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-01 17:11:35', '2024-09-01 17:11:35'),
(30, '125060bd-92ec-4bb7-b4ad-e4b3d743bc44', 19.07598370, 72.87765590, 18.52043030, 73.85674370, NULL, 'Mumbai, Maharashtra, India', 'Pune, Maharashtra, India', 'Dr. Benjamin Scott', 'Yash', '+911234567859', NULL, '+917412589635', NULL, '2024-10-03 02:57:33', '2024-10-03 02:57:33');

-- --------------------------------------------------------

--
-- Table structure for table `request_ratings`
--

CREATE TABLE `request_ratings` (
  `id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `driver_id` int(10) UNSIGNED NOT NULL,
  `rating` double(8,2) NOT NULL DEFAULT 0.00,
  `comment` varchar(191) DEFAULT NULL,
  `user_rating` tinyint(1) NOT NULL DEFAULT 0,
  `driver_rating` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `request_ratings`
--

INSERT INTO `request_ratings` (`id`, `request_id`, `user_id`, `driver_id`, `rating`, `comment`, `user_rating`, `driver_rating`, `created_at`, `updated_at`) VALUES
(1, '6897d906-bb3b-4238-9f43-d7943fdfbe9c', 4, 1, 4.00, NULL, 0, 1, '2023-11-09 10:28:30', '2023-11-09 10:28:30'),
(2, '6897d906-bb3b-4238-9f43-d7943fdfbe9c', 4, 1, 4.00, NULL, 1, 0, '2023-11-09 10:30:06', '2023-11-09 10:30:06'),
(3, '2faeddb4-7ea3-4d79-9069-7d51105f27e3', 4, 1, 5.00, NULL, 1, 0, '2023-11-09 10:35:43', '2023-11-09 10:35:43'),
(4, '2faeddb4-7ea3-4d79-9069-7d51105f27e3', 4, 1, 4.00, NULL, 0, 1, '2023-11-09 10:35:43', '2023-11-09 10:35:43'),
(5, 'd24b5f66-0266-4f49-aa58-12047db3de83', 4, 1, 5.00, 'ride was amazing', 1, 0, '2024-02-26 04:24:13', '2024-02-26 04:24:13'),
(6, 'd24b5f66-0266-4f49-aa58-12047db3de83', 4, 1, 5.00, 'user is cooperative', 0, 1, '2024-02-26 04:24:43', '2024-02-26 04:24:43'),
(7, 'b8207cb1-03dc-43e3-8545-06594b0cca5c', 4, 1, 3.00, NULL, 1, 0, '2024-02-28 06:20:10', '2024-02-28 06:20:10'),
(8, 'b8207cb1-03dc-43e3-8545-06594b0cca5c', 4, 1, 5.00, 'kjkj', 0, 1, '2024-02-28 06:20:10', '2024-02-28 06:20:10'),
(9, '5f6ad195-6ef9-4019-9aec-d5f62949486b', 4, 1, 4.00, NULL, 0, 1, '2024-02-28 07:00:14', '2024-02-28 07:00:14'),
(10, '5f6ad195-6ef9-4019-9aec-d5f62949486b', 4, 1, 4.00, NULL, 1, 0, '2024-02-28 07:00:17', '2024-02-28 07:00:17'),
(11, 'bda33c99-4ba4-4464-97b8-5610bb0c31b3', 4, 1, 4.00, NULL, 1, 0, '2024-02-28 07:02:26', '2024-02-28 07:02:26'),
(12, 'bda33c99-4ba4-4464-97b8-5610bb0c31b3', 4, 1, 4.00, NULL, 0, 1, '2024-02-28 07:02:29', '2024-02-28 07:02:29'),
(13, 'cddca800-16b3-4648-9aeb-1a8b6dd1e7cd', 4, 1, 5.00, NULL, 0, 1, '2024-02-28 07:09:08', '2024-02-28 07:09:08'),
(14, 'cddca800-16b3-4648-9aeb-1a8b6dd1e7cd', 4, 1, 5.00, NULL, 1, 0, '2024-02-28 07:09:12', '2024-02-28 07:09:12'),
(15, '132feabf-a086-44df-9954-07448ad3087c', 4, 1, 5.00, NULL, 0, 1, '2024-04-06 03:33:04', '2024-04-06 03:33:04'),
(16, '132feabf-a086-44df-9954-07448ad3087c', 4, 1, 5.00, NULL, 1, 0, '2024-04-06 03:33:11', '2024-04-06 03:33:11'),
(17, '81d5105e-67a0-445b-99d2-bef9bfbf9430', 14, 3, 4.00, NULL, 0, 1, '2024-05-28 03:46:20', '2024-05-28 03:46:20'),
(18, '81d5105e-67a0-445b-99d2-bef9bfbf9430', 14, 3, 4.00, NULL, 1, 0, '2024-05-28 03:46:31', '2024-05-28 03:46:31'),
(19, '1c8c8fe1-cafa-409a-af90-5ee369cd0595', 4, 3, 4.00, NULL, 0, 1, '2024-06-18 03:30:54', '2024-06-18 03:30:54'),
(20, '1c8c8fe1-cafa-409a-af90-5ee369cd0595', 4, 3, 5.00, NULL, 1, 0, '2024-06-18 03:31:07', '2024-06-18 03:31:07'),
(21, '6d472c36-9d29-4f76-9d4d-cb3b89f02ff2', 4, 3, 4.00, NULL, 0, 1, '2024-06-18 03:44:24', '2024-06-18 03:44:24'),
(22, '6d472c36-9d29-4f76-9d4d-cb3b89f02ff2', 4, 3, 4.00, NULL, 1, 0, '2024-06-18 03:46:51', '2024-06-18 03:46:51'),
(23, '40d49da2-b4a1-4a98-a29b-1aa24c00dd51', 4, 1, 5.00, NULL, 0, 1, '2024-08-30 14:19:06', '2024-08-30 14:19:06'),
(24, '40d49da2-b4a1-4a98-a29b-1aa24c00dd51', 4, 1, 1.00, NULL, 1, 0, '2024-09-01 17:10:41', '2024-09-01 17:10:41');

-- --------------------------------------------------------

--
-- Table structure for table `request_stops`
--

CREATE TABLE `request_stops` (
  `id` int(10) UNSIGNED NOT NULL,
  `request_id` char(36) NOT NULL,
  `address` varchar(191) DEFAULT NULL,
  `latitude` double(15,8) DEFAULT NULL,
  `longitude` double(15,8) DEFAULT NULL,
  `poc_name` varchar(191) DEFAULT NULL,
  `poc_mobile` varchar(14) DEFAULT NULL,
  `poc_instruction` varchar(191) DEFAULT NULL,
  `order` int(10) UNSIGNED NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `roles`
--

CREATE TABLE `roles` (
  `id` int(10) UNSIGNED NOT NULL,
  `slug` varchar(50) NOT NULL,
  `name` varchar(50) NOT NULL,
  `description` varchar(150) DEFAULT NULL,
  `all` tinyint(1) NOT NULL DEFAULT 0,
  `locked` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `roles`
--

INSERT INTO `roles` (`id`, `slug`, `name`, `description`, `all`, `locked`, `created_at`, `updated_at`) VALUES
(1, 'super-admin', 'Super Admin', 'Admin group with unrestricted access', 1, 1, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(2, 'user', 'Normal User', 'Normal user with standard access', 0, 1, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(3, 'admin', 'Admin', 'Admin group with restricted access', 0, 1, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(4, 'owner', 'Owner', 'Owner for company management', 0, 1, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(5, 'driver', 'Driver', 'Driver user with standard access', 0, 1, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(6, 'dispatcher', 'Dispatcher', 'Taxi Dispatcher user with standard access', 0, 1, '2023-11-08 03:14:21', '2023-11-08 03:14:21'),
(7, 'delivery-dispatcher', 'Delivery-Dispatcher', 'Delivery Dispatcher user with standard access', 0, 1, '2023-11-08 03:14:21', '2023-11-08 03:14:21');

-- --------------------------------------------------------

--
-- Table structure for table `role_user`
--

CREATE TABLE `role_user` (
  `user_id` int(10) UNSIGNED NOT NULL,
  `role_id` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `role_user`
--

INSERT INTO `role_user` (`user_id`, `role_id`) VALUES
(1, 1),
(2, 3),
(3, 5),
(4, 2),
(5, 6),
(6, 7),
(7, 2),
(8, 4),
(9, 4),
(10, 5),
(11, 4),
(12, 2),
(13, 2),
(14, 2),
(15, 5),
(16, 2),
(17, 5),
(18, 5),
(19, 2);

-- --------------------------------------------------------

--
-- Table structure for table `service_locations`
--

CREATE TABLE `service_locations` (
  `id` char(36) NOT NULL,
  `company_key` varchar(191) DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `currency_name` varchar(191) DEFAULT NULL,
  `currency_code` varchar(191) DEFAULT NULL,
  `currency_symbol` varchar(191) DEFAULT NULL,
  `timezone` varchar(191) NOT NULL,
  `country` int(10) UNSIGNED NOT NULL,
  `active` tinyint(1) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `service_locations`
--

INSERT INTO `service_locations` (`id`, `company_key`, `name`, `currency_name`, `currency_code`, `currency_symbol`, `timezone`, `country`, `active`, `created_at`, `updated_at`, `deleted_at`) VALUES
('63e81adf-18af-4aca-a644-26e3f23928a1', NULL, 'World', 'Indian rupee', 'USD', '$', 'Asia/Calcutta', 102, 1, '2024-05-28 03:30:06', '2024-05-28 03:30:06', NULL),
('d3c53f5b-90f9-4274-b7b1-8944e49527ef', NULL, 'Mumbai', 'Indian rupee', 'INR', '₹', 'Asia/Kolkata', 102, 0, '2024-10-03 02:27:41', '2024-10-03 02:27:56', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `settings`
--

CREATE TABLE `settings` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `field` enum('select','text','file','password') NOT NULL DEFAULT 'text',
  `category` varchar(191) DEFAULT NULL,
  `value` varchar(191) DEFAULT NULL,
  `option_value` varchar(191) DEFAULT NULL,
  `group_name` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `settings`
--

INSERT INTO `settings` (`id`, `name`, `field`, `category`, `value`, `option_value`, `group_name`, `created_at`, `updated_at`) VALUES
(1, 'service_tax', 'text', 'trip_settings', '30', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(2, 'admin_commission_type', 'select', 'trip_settings', '1', '{\"percentage\":1,\"fixed\":2}', NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(3, 'trip_dispatch_type', 'select', 'trip_settings', '0', '{\"one-by-one\":1,\"to-all-drivers\":0}', NULL, '2023-11-08 03:14:22', '2023-11-09 10:13:31'),
(4, 'admin_commission', 'text', 'trip_settings', '30', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(5, 'minimum_wallet_amount_for_transfer', 'text', 'Wallet', '500', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(6, 'driver_search_radius', 'text', 'trip_settings', '3', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(7, 'maximum_time_for_find_drivers_for_bidding_ride', 'text', 'trip_settings', '5', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(8, 'enable_shipment_load_feature', 'select', 'trip_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(9, 'enable_shipment_unload_feature', 'select', 'trip_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(10, 'enable_digital_signature', 'select', 'trip_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(11, 'user_can_make_a_ride_after_x_miniutes', 'text', 'trip_settings', '30', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(12, 'minimum_time_for_search_drivers_for_schedule_ride', 'text', 'trip_settings', '30', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(13, 'maximum_time_for_find_drivers_for_regular_ride', 'text', 'trip_settings', '5', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(14, 'trip_accept_reject_duration_for_driver', 'text', 'trip_settings', '30', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(15, 'how_many_times_a_driver_can_enable_the_my_route_booking_per_day', 'text', 'trip_settings', '1', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(16, 'enable_my_route_booking_feature', 'select', 'trip_settings', '1', '{\"yes\":1,\"no\":0}', NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(17, 'enable_modules_for_applications', 'select', 'general', 'both', '{\"taxi\":\"taxi\",\"delivery\":\"delivery\",\"both\":\"both\"}', NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(18, 'logo', 'file', 'general', 'aHnua2PPLx962o5HdDVZwfgJG4ZA3TY90NwEi6iy.png', NULL, NULL, '2023-11-08 03:14:22', '2024-05-28 02:48:16'),
(19, 'favicon', 'file', 'general', 'clyVVzWGBVrJccWnzN2am8PwwARCpP6GMqp2RByg.png', NULL, NULL, '2023-11-08 03:14:22', '2024-04-18 02:47:31'),
(20, 'loginbg', 'file', 'general', 'VPuufI8nqnesKuZl4d6VHam3gz3u2r7QGreJmvyc.jpg', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 05:42:05'),
(21, 'nav_color', 'text', 'general', '#004d8e', NULL, NULL, '2023-11-08 03:14:22', '2024-06-15 06:54:58'),
(22, 'sidebar_color', 'text', 'general', '#2a3042', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(23, 'sidebar_text_color', 'text', 'general', '#a2a5af', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(24, 'app_name', 'text', 'general', 'MXGrab', NULL, NULL, '2023-11-08 03:14:22', '2024-05-28 02:31:28'),
(25, 'currency_code', 'text', 'general', 'INR', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(26, 'currency_symbol', 'text', 'general', '₹', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(27, 'default_country_code_for_mobile_app', 'text', 'general', 'IN', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(28, 'contact_us_mobile1', 'text', 'general', '0000000000', NULL, NULL, '2023-11-08 03:14:22', '2024-06-11 09:47:02'),
(29, 'contact_us_mobile2', 'text', 'general', '0000000000', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(30, 'contact_us_link', 'text', 'general', 'https://mxgrab.mimeld.com', NULL, NULL, '2023-11-08 03:14:22', '2024-05-28 02:31:28'),
(31, 'default_latitude', 'text', 'general', '11.21215', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(32, 'default_longitude', 'text', 'general', '76.54545', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(33, 'show_wallet_feature_on_mobile_app', 'select', 'general', '1', '{\"yes\":1,\"no\":0}', NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(34, 'show_bank_info_feature_on_mobile_app', 'select', 'general', '1', '{\"yes\":1,\"no\":0}', NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(35, 'enable_country_restrict_on_map', 'select', 'general', '0', '{\"yes\":1,\"no\":0}', NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(36, 'driver-wallet-minimum-amount-to-get-order', 'text', 'Wallet', '-10000', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(37, 'owner-wallet-minimum-amount-to-get-order', 'text', 'Wallet', '-10000', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(38, 'enable-paystack', 'select', 'installation', '1', '{\"yes\":1,\"no\":0}', 'paystack_settings', '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(39, 'paystack-environment', 'select', 'installation', 'test', '{\"test\":\"test\",\"production\":\"production\"}', 'paystack_settings', '2023-11-08 03:14:22', '2023-11-08 03:18:17'),
(40, 'paystack-test-secret-key', 'text', 'installation', 'sk_test_afe3998db4cb99', NULL, 'paystack_settings', '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(41, 'paystack-production-secret-key', 'text', 'installation', 'sk_test_afe3998db4cb99', NULL, 'paystack_settings', '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(42, 'paystack_test_publishable_key', 'text', 'installation', 'pk_test_b4cb4b52663b27a019973ecfaf5', NULL, 'paystack_settings', '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(43, 'paystack_production_publishable_key', 'text', 'installation', 'pk_test_b4cb4b52663b27a019973ecfaf5', NULL, 'paystack_settings', '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(44, 'enable-flutter-wave', 'select', 'installation', '1', '{\"yes\":1,\"no\":0}', 'flutter_wave_settings', '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(45, 'flutter-wave-environment', 'select', 'installation', 'test', '{\"test\":\"test\",\"production\":\"production\"}', 'flutter_wave_settings', '2023-11-08 03:14:22', '2023-11-08 03:18:17'),
(46, 'flutter-wave-test-secret-key', 'text', 'installation', 'FLWPUBK_TEST-9e67d979a0a72-X', NULL, 'flutter_wave_settings', '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(47, 'flutter-wave-production-secret-key', 'text', 'installation', 'FLWPUBK_TEST-9e67d979a0a72-X', NULL, 'flutter_wave_settings', '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(48, 'enable-cashfree', 'select', 'installation', '1', '{\"yes\":1,\"no\":0}', 'cashfree_settings', '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(49, 'cash_free_environment', 'select', 'installation', 'test', '{\"test\":\"test\",\"production\":\"production\"}', 'cashfree_settings', '2023-11-08 03:14:22', '2023-11-08 03:18:17'),
(50, 'cash_free_app_id', 'text', 'installation', '159508ae3452d805951', NULL, 'cashfree_settings', '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(51, 'cash_free_production_app_id', 'text', 'installation', '159508ae3452d805951', NULL, 'cashfree_settings', '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(52, 'cash_free_secret_key', 'text', 'installation', '9fbbd7bf46a36839258ebcd5ebf', NULL, 'cashfree_settings', '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(53, 'cash_free_production_secret_key', 'text', 'installation', '9fbbd7bf46a36839258ebcd5ebf', NULL, 'cashfree_settings', '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(54, 'enable-razor-pay', 'select', 'installation', '1', '{\"yes\":1,\"no\":0}', 'cashfree_settings', '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(55, 'razor_pay_environment', 'select', 'installation', 'test', '{\"test\":\"test\",\"production\":\"production\"}', 'cashfree_settings', '2023-11-08 03:14:22', '2023-11-08 03:18:17'),
(56, 'razor_pay_test_api_key', 'text', 'installation', 'rzp_test_Mu6wF', NULL, 'cashfree_settings', '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(57, 'razor_pay_live_api_key', 'text', 'installation', 'rzp_test_Mu6wF', NULL, 'cashfree_settings', '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(58, 'enable-stripe', 'select', 'installation', '1', '{\"yes\":1,\"no\":0}', 'stripe_settings', '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(59, 'stripe-environment', 'select', 'installation', 'test', '{\"test\":\"test\",\"production\":\"production\"}', 'stripe_settings', '2023-11-08 03:14:22', '2023-11-08 03:18:17'),
(60, 'stripe_test_publishable_key', 'text', 'installation', 'pk_test_51IuYWUlL3uUPq1XI0BZaRlqDPPcNsmywe6rSqjpM9HhVmELhXWhx95CH1pvNyQ8pvQEil900eGE0jXN8', NULL, 'stripe_settings', '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(61, 'stripe_live_publishable_key', 'text', 'installation', 'pk_test_51IuYWUlL3uUPq1XI0BZaRlqDPPcNsmywe6rSqjpM9HhVmELhXWhx95CH1pvNyQ8pvQEil900eGE0jXN8', NULL, 'stripe_settings', '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(62, 'stripe_test_secret_key', 'text', 'installation', 'sk_test_51IuYWUSBCHfacpwClyvlcrEm4ZvshYDdS5TGkYfIS2uYbcxcwhNES1J2cI03l8zxFPelK0yk007d8XvEAd', NULL, 'stripe_settings', '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(63, 'stripe_live_secret_key', 'text', 'installation', 'sk_test_51IuYWUSBCHfacpwClyvlcrEm4ZvshYDdS5TGkYfIS2uYbcxcwhNES1J2cI03l8zxFPelK0yk007d8XvEAd', NULL, 'stripe_settings', '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(64, 'referral_commision_for_user', 'text', 'Referral', '30', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(65, 'referral_commision_for_driver', 'text', 'Referral', '30', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(66, 'google_map_key', 'password', 'map_settings', 'AIzaSyBI3k7YBA5qMjVpsXufii6qdfrYEQQeFCU', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:33:32'),
(67, 'google_map_key_for_distance_matrix', 'password', 'map_settings', 'AIzaSyBI3k7YBA5qMjVpsXufii6qdfrYEQQeFCU', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:33:32'),
(68, 'google_sheet_id', 'text', 'map_settings', '1sOIs6oiLv-jhhhhhhhhhhhhhhhhh', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:33:32'),
(69, 'firebase-db-url', 'text', 'firebase_settings', 'https://mograb-default-rtdb.firebaseio.com', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:23:11'),
(70, 'firebase-api-key', 'password', 'firebase_settings', 'AIzaSyBI3k7YBA5qMjVpsXufii6qdfrYEQQeFCU', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:23:11'),
(71, 'firebase-auth-domain', 'text', 'firebase_settings', 'mograb.firebaseapp.com', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:23:11'),
(72, 'firebase-project-id', 'text', 'firebase_settings', 'mograb', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:23:11'),
(73, 'firebase-storage-bucket', 'text', 'firebase_settings', 'mograb.appspot.com', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:23:11'),
(74, 'firebase-messaging-sender-id', 'text', 'firebase_settings', '901839396421', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:23:11'),
(75, 'firebase-app-id', 'text', 'firebase_settings', '1:901839396421:web:33bac12567a018bdbc8d2c', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:23:11'),
(76, 'firebase-measurement-id', 'text', 'firebase_settings', 'G-N656JSFW4L', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:23:11'),
(77, 'show_rental_ride_feature', 'select', 'general', '1', '{\"yes\":1,\"no\":0}', NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(78, 'show_ride_otp_feature', 'select', 'general', '1', '{\"yes\":1,\"no\":0}', NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(79, 'show_ride_later_feature', 'select', 'general', '1', '{\"yes\":1,\"no\":0}', NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(80, 'show_ride_without_destination', 'select', 'general', '1', '{\"yes\":1,\"no\":0}', NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(81, 'mail_mailer', 'text', 'mail_configuration', 'smtp', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:14:22'),
(82, 'mail_host', 'text', 'mail_configuration', 'mail.mimeld.com', NULL, NULL, '2023-11-08 03:14:22', '2024-10-03 03:41:14'),
(83, 'mail_port', 'text', 'mail_configuration', '465', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:25:59'),
(84, 'mail_username', 'password', 'mail_configuration', 'info@mimeld.com', NULL, NULL, '2023-11-08 03:14:22', '2024-10-03 03:09:27'),
(85, 'mail_password', 'password', 'mail_configuration', 'Coder_$321', NULL, NULL, '2023-11-08 03:14:22', '2024-10-03 03:09:27'),
(86, 'mail_encryption', 'text', 'mail_configuration', 'ssl', NULL, NULL, '2023-11-08 03:14:22', '2023-11-08 03:25:59'),
(87, 'mail_from_address', 'text', 'mail_configuration', 'info@mimeld.com', NULL, NULL, '2023-11-08 03:14:22', '2024-10-03 03:40:06'),
(88, 'mail_from_name', 'text', 'mail_configuration', 'MXGrab', NULL, NULL, '2023-11-08 03:14:22', '2024-05-28 02:31:45');

-- --------------------------------------------------------

--
-- Table structure for table `sos`
--

CREATE TABLE `sos` (
  `id` char(36) NOT NULL,
  `company_key` varchar(191) DEFAULT NULL,
  `service_location_id` char(36) DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `number` varchar(191) NOT NULL,
  `user_type` enum('admin','mobile-users') NOT NULL,
  `created_by` int(10) UNSIGNED DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `sos`
--

INSERT INTO `sos` (`id`, `company_key`, `service_location_id`, `name`, `number`, `user_type`, `created_by`, `active`, `created_at`, `updated_at`, `deleted_at`) VALUES
('8c59dfb2-4f10-4f0e-a5c6-8da69e5df00a', NULL, NULL, 'Calling via MoreMins', '+4721569949', 'mobile-users', 4, 1, '2024-06-25 07:58:28', '2024-06-25 07:58:28', NULL),
('a340a0e4-bc49-455e-8edb-0705530d8698', NULL, NULL, 'Accn', '8690860980', 'mobile-users', 4, 1, '2024-06-25 07:58:17', '2024-06-25 07:58:17', NULL),
('a3eea31c-75b0-46d2-9b4c-2545d2b738c8', NULL, NULL, 'AL * dial', '*321#', 'mobile-users', 16, 1, '2024-06-22 03:35:22', '2024-06-22 03:35:22', NULL),
('e1c2ba01-a4ab-4094-ba1c-10b9e959c90a', NULL, '63e81adf-18af-4aca-a644-26e3f23928a1', 'Police', '100', 'admin', 1, 1, '2024-10-03 02:38:36', '2024-10-03 02:38:36', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `states`
--

CREATE TABLE `states` (
  `id` char(36) NOT NULL,
  `slug` varchar(50) NOT NULL,
  `name` varchar(50) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `time_zones`
--

CREATE TABLE `time_zones` (
  `id` char(36) NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `timezone` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `time_zones`
--

INSERT INTO `time_zones` (`id`, `name`, `timezone`, `active`, `created_at`, `updated_at`) VALUES
('000976d4-2d2b-44e4-8391-43225d258072', 'Recife', 'America/Recife', 1, NULL, NULL),
('00b51a30-2e5f-413d-82ee-2d2b9300538d', 'Riyadh', 'Asia/Riyadh', 1, NULL, NULL),
('0100bee3-e68a-49ed-b829-6faaec2b40e6', 'Dili', 'Asia/Dili', 1, NULL, NULL),
('016239ac-f446-4b15-99e7-6ce267f4c38a', 'Indiana - Vincennes', 'America/Indiana/Vincennes', 1, NULL, NULL),
('01d5eb71-04a6-4c2f-a9a3-c392324150c4', 'Honolulu (Hawaii)', 'Pacific/Honolulu', 1, NULL, NULL),
('03188a2b-3178-47d2-9e3c-f9c2ba54bfb7', 'Ndjamena', 'Africa/Ndjamena', 1, NULL, NULL),
('05103f19-245c-4d78-902a-b100a9c2b842', 'Athens', 'Europe/Athens', 1, NULL, NULL),
('05249b2d-62b0-4eb4-ab0b-fade16c3d9e7', 'El Salvador', 'America/El_Salvador', 1, NULL, NULL),
('05900d94-8cf7-4671-8857-9d23cbac6b56', 'Puerto Rico', 'America/Puerto_Rico', 1, NULL, NULL),
('05e31755-7cf5-4f44-98e3-ae5d361dc4e8', 'Faeroe', 'Atlantic/Faeroe', 1, NULL, NULL),
('06726973-00fb-4999-9f25-9b5fcbc32535', 'Cordoba', 'America/Cordoba', 1, NULL, NULL),
('067b68cc-70ca-43de-9843-0be19348de2f', 'Libreville', 'Africa/Libreville', 1, NULL, NULL),
('06b52e3f-3a20-417a-a6ef-e1e1424bf56d', 'Nauru', 'Pacific/Nauru', 1, NULL, NULL),
('06bc0447-6470-4a5a-b178-48851832e244', 'Istanbul', 'Europe/Istanbul', 1, NULL, NULL),
('06d1dc94-9094-4a5f-a1fe-8c7e7c23235e', 'Anguilla', 'America/Anguilla', 1, NULL, NULL),
('07019c3c-8c51-47d5-9edb-b0259f7c70fa', 'Ojinaga', 'America/Ojinaga', 1, NULL, NULL),
('088c18eb-0dc6-4e7d-9ba2-067e768f7bb9', 'Maputo', 'Africa/Maputo', 1, NULL, NULL),
('08facba6-b7a0-46c7-a2fd-76333daf349f', 'Maseru', 'Africa/Maseru', 1, NULL, NULL),
('0af94ad8-64b1-4dc2-8479-ffca23ea9cac', 'Riga', 'Europe/Riga', 1, NULL, NULL),
('0b21078f-4e22-491e-a71f-0905a64c0a52', 'Fortaleza', 'America/Fortaleza', 1, NULL, NULL),
('0bbc2023-fc75-4553-a6bd-79da8f2b40d4', 'Anchorage (Alaska)', 'America/Anchorage', 1, NULL, NULL),
('0d38a2cb-7296-48c9-9d6d-ec6bf52ea47d', 'North Dakota - New Salem', 'America/North_Dakota/New_Salem', 1, NULL, NULL),
('0dab845f-fc7d-48a4-a653-328edd5e4912', 'Argentina - Ushuaia', 'America/Argentina/Ushuaia', 1, NULL, NULL),
('0ddcfbed-3589-43ce-b54c-f0c2b6ae33b1', 'Glace Bay', 'America/Glace_Bay', 1, NULL, NULL),
('0ec495f4-aed9-4158-a374-4265fe454700', 'Tongatapu', 'Pacific/Tongatapu', 1, NULL, NULL),
('0eccadd0-c27b-4aeb-b5c7-b8dafebf7957', 'Thule', 'America/Thule', 1, NULL, NULL),
('0ed49a12-61b6-42d0-a73e-905d312951d1', 'Chungking', 'Asia/Chungking', 1, NULL, NULL),
('0f518ae0-f722-4f0e-a2bc-594cdbc0a2e1', 'Fakaofo', 'Pacific/Fakaofo', 1, NULL, NULL),
('1057c1e5-042e-431b-8d0e-74800cfb1295', 'Canary', 'Atlantic/Canary', 1, NULL, NULL),
('10de9005-3604-4dcd-98b1-9f06dbc1eede', 'Sofia', 'Europe/Sofia', 1, NULL, NULL),
('10e1dda7-6d13-4e4a-ac94-87f3b432f9b2', 'Wallis', 'Pacific/Wallis', 1, NULL, NULL),
('116f2ad3-f921-4866-862e-0c1e72a78cd3', 'Rarotonga', 'Pacific/Rarotonga', 1, NULL, NULL),
('117be4d9-1500-4c66-b7d1-139e989195f9', 'Zurich', 'Europe/Zurich', 1, NULL, NULL),
('11860854-e2d0-4c7e-9d50-d765e1c7d73e', 'Luxembourg', 'Europe/Luxembourg', 1, NULL, NULL),
('119ed723-0fe8-46a6-93e2-004597ca9829', 'Dawson', 'America/Dawson', 1, NULL, NULL),
('11b19dd0-eaae-4e13-b44e-3fe8e2ff6c21', 'Santo Domingo', 'America/Santo_Domingo', 1, NULL, NULL),
('11e6c8a1-4596-476e-bc0c-decad0be0a01', 'Phoenix', 'America/Phoenix', 1, NULL, NULL),
('1231830a-9409-4b79-af23-8b5426fff880', 'Davis', 'Antarctica/Davis', 1, NULL, NULL),
('13f9de63-9d07-4e4b-ba51-2a37f137ad19', 'Berlin', 'Europe/Berlin', 1, NULL, NULL),
('1463f97d-618d-49e5-a868-af2c9c049b99', 'Scoresbysund', 'America/Scoresbysund', 1, NULL, NULL),
('147f2db7-4383-496e-b848-34a1e26a76f6', 'Managua', 'America/Managua', 1, NULL, NULL),
('151621e6-1d87-41c8-94db-58dfffc83d6f', 'Harare', 'Africa/Harare', 1, NULL, NULL),
('163b9511-e43c-47f4-b4b5-f670d2d2776e', 'Asmera', 'Africa/Asmera', 1, NULL, NULL),
('17fc37af-f3fb-4650-b87e-c7e7ee2c6b46', 'Dublin', 'Europe/Dublin', 1, NULL, NULL),
('194ea1a1-2c4b-4c61-a1ca-db09feb7ff65', 'Swift Current', 'America/Swift_Current', 1, NULL, NULL),
('19ac2d00-deee-43fc-88c9-2239658115e7', 'Uzhgorod', 'Europe/Uzhgorod', 1, NULL, NULL),
('1adc2075-80a1-46b6-9621-c07da4bc7e99', 'Pyongyang', 'Asia/Pyongyang', 1, NULL, NULL),
('1b453fd3-8848-4a41-a3d5-e6d7df6c3c27', 'Johannesburg', 'Africa/Johannesburg', 1, NULL, NULL),
('1be10533-8a91-4157-8ecc-4d2ec6efbbe5', 'Port Moresby', 'Pacific/Port_Moresby', 1, NULL, NULL),
('1c08cf00-14cd-4586-93f2-0a3f2751aede', 'Jerusalem', 'Asia/Jerusalem', 1, NULL, NULL),
('1c7ca27d-df12-4dcf-9272-5d58eece6cd9', 'Vatican', 'Europe/Vatican', 1, NULL, NULL),
('1c95fa9a-833d-4a21-98dd-765aeaca5d80', 'Budapest', 'Europe/Budapest', 1, NULL, NULL),
('1d96be22-a57d-4daf-a9d3-08849ebfd20c', 'Guatemala', 'America/Guatemala', 1, NULL, NULL),
('1ee98eae-11fa-4f27-9003-9ad5382856be', 'Vladivostok', 'Asia/Vladivostok', 1, NULL, NULL),
('1fc9a402-207e-47a6-8166-9b42912dce45', 'Copenhagen', 'Europe/Copenhagen', 1, NULL, NULL),
('1fe3e2d7-54f6-426a-9a01-78661888d0cb', 'Shanghai', 'Asia/Shanghai', 1, NULL, NULL),
('207acf55-62b9-483f-ac1c-9e723b8aca8e', 'Macao', 'Asia/Macao', 1, NULL, NULL),
('20a8bf56-3c43-45ed-a2a1-8ce5cd0cfbcd', 'Winnipeg', 'America/Winnipeg', 1, NULL, NULL),
('21190aeb-1207-447f-8cf0-c324da92db98', 'Cancun', 'America/Cancun', 1, NULL, NULL),
('21597e7f-2f4a-4947-9ab4-4cd9aea86824', 'Blantyre', 'Africa/Blantyre', 1, NULL, NULL),
('218d652a-9217-4c35-b849-e5b2bd744aa2', 'St Lucia', 'America/St_Lucia', 1, NULL, NULL),
('22483c43-0edf-4ce4-a867-9ca7ae9da0ae', 'Nassau', 'America/Nassau', 1, NULL, NULL),
('22c41b3b-0c9d-4a5a-8589-bbd491ac9b13', 'Broken Hill', 'Australia/Broken_Hill', 1, NULL, NULL),
('23260c17-2a92-4f39-979d-0d2c0e8b903c', 'Choibalsan', 'Asia/Choibalsan', 1, NULL, NULL),
('248b17cd-6ac0-4320-859e-26f8eb1533cc', 'Karachi', 'Asia/Karachi', 1, NULL, NULL),
('24c6ca42-fcc2-4952-b9cc-4672bb61baa0', 'Araguaina', 'America/Araguaina', 1, NULL, NULL),
('269d58b3-16bd-4dbc-9c61-d41b6aea34d2', 'Eucla', 'Australia/Eucla', 1, NULL, NULL),
('2741b130-8dc2-4406-86ef-fb09599def8b', 'Victoria', 'Australia/Victoria', 1, NULL, NULL),
('274db487-0120-4319-a852-0cf055e91966', 'Longyearbyen', 'Arctic/Longyearbyen', 1, NULL, NULL),
('2757a2d8-2917-4162-9ea1-c96f196748fb', 'North', 'Australia/North', 1, NULL, NULL),
('27738a45-a6c3-404c-80d7-6a37246bc91b', 'Tirane', 'Europe/Tirane', 1, NULL, NULL),
('27e9b6ba-b3bd-4a4e-b931-de96e5c86357', 'Nairobi', 'Africa/Nairobi', 1, NULL, NULL),
('28b71aa2-9284-4de5-8a3a-de68b6cd8b2c', 'Norfolk', 'Pacific/Norfolk', 1, NULL, NULL),
('28c88e96-0c73-4bdc-aafc-670906b674cd', 'Majuro', 'Pacific/Majuro', 1, NULL, NULL),
('2a3bc340-0d98-4545-a1d6-4dc77381c6cc', 'Dakar', 'Africa/Dakar', 1, NULL, NULL),
('2aab0d05-50c8-49c7-b159-4df1caf6eeb5', 'Djibouti', 'Africa/Djibouti', 1, NULL, NULL),
('2aaf128f-885a-43a3-931a-1e3084fccd97', 'Calcutta', 'Asia/Calcutta', 1, NULL, NULL),
('2af3327e-879c-43cd-bc46-451b77d410ef', 'Istanbul', 'Asia/Istanbul', 1, NULL, NULL),
('2bb4b957-ec3c-489f-935b-9e5d4b3406f3', 'Warsaw', 'Europe/Warsaw', 1, NULL, NULL),
('2c6970ae-f1e9-44a6-9432-fa58766e24cb', 'Guyana', 'America/Guyana', 1, NULL, NULL),
('2d24010d-99c8-4272-a07a-7527e0677b81', 'Regina', 'America/Regina', 1, NULL, NULL),
('2d2bf6ec-e0e1-4f5c-9e9a-f93f51e0a323', 'Urumqi', 'Asia/Urumqi', 1, NULL, NULL),
('2d96ee39-321c-4d2a-950a-06d987e998f1', 'Asuncion', 'America/Asuncion', 1, NULL, NULL),
('2d96f829-5cb6-4a32-944c-dfdb6848c7ba', 'Puerto Rico (Atlantic)', 'America/Puerto_Rico', 1, NULL, NULL),
('2ed19772-978b-47a0-8cd1-980d867ac9db', 'Isle of Man', 'Europe/Isle_of_Man', 1, NULL, NULL),
('2f000ae3-0ed9-414c-bb3f-c98dea835b16', 'Saipan', 'Pacific/Saipan', 1, NULL, NULL),
('2f009a00-581e-45b8-8a4f-5926b5702d5d', 'Hong Kong', 'Asia/Hong_Kong', 1, NULL, NULL),
('2f8b3109-da01-4144-be0d-0300906bcc80', 'Belfast', 'Europe/Belfast', 1, NULL, NULL),
('2ff7f941-73f7-4209-88b2-0a4920973402', 'South', 'Australia/South', 1, NULL, NULL),
('30299462-cfdf-4f2e-9f0f-4a7da4ab653a', 'St Johns', 'America/St_Johns', 1, NULL, NULL),
('3164a58e-e468-471b-9fe2-3052dd3b5267', 'Tiraspol', 'Europe/Tiraspol', 1, NULL, NULL),
('31af2f04-36e3-4923-818a-926a82207a21', 'Melbourne', 'Australia/Melbourne', 1, NULL, NULL),
('31e5986d-1d90-49fa-bbd2-59368de3d699', 'Jan Mayen', 'Atlantic/Jan_Mayen', 1, NULL, NULL),
('321d62e3-6c4c-406f-9b89-0a9fa11fac00', 'Menominee', 'America/Menominee', 1, NULL, NULL),
('32b2dcc8-6079-488b-bc68-2cfcad9b6512', 'Tarawa', 'Pacific/Tarawa', 1, NULL, NULL),
('32c2ade7-1c5d-44a3-8d51-25a150c52b3f', 'Goose Bay', 'America/Goose_Bay', 1, NULL, NULL),
('3319ab32-6c73-4f9e-845b-414f245e0ff7', 'Rio Branco', 'America/Rio_Branco', 1, NULL, NULL),
('33358de9-a065-4eeb-9b21-0d7b40056155', 'Danmarkshavn', 'America/Danmarkshavn', 1, NULL, NULL),
('335fcda2-c325-48ec-93f7-71fa6d39c3a1', 'Ulaanbaatar', 'Asia/Ulaanbaatar', 1, NULL, NULL),
('33f1693c-69f0-440d-b9f1-4f0c35e2f282', 'Belem', 'America/Belem', 1, NULL, NULL),
('340572ab-80a1-4e86-a233-bc87fd3d7c69', 'Rankin Inlet', 'America/Rankin_Inlet', 1, NULL, NULL),
('34262896-14ea-4b93-beff-abaa5e89c14a', 'Paris', 'Europe/Paris', 1, NULL, NULL),
('34a45856-a72e-4196-a53d-46fb70f6c4d6', 'Fiji', 'Pacific/Fiji', 1, NULL, NULL),
('34f978f9-7b1c-4397-ae6a-46355cffc2f0', 'Seoul', 'Asia/Seoul', 1, NULL, NULL),
('35d948aa-598d-4ef4-a7d5-660508266b46', 'Damascus', 'Asia/Damascus', 1, NULL, NULL),
('366976f8-d9b4-4422-8cbd-eff9196e0e9a', 'Cuiaba', 'America/Cuiaba', 1, NULL, NULL),
('370d7630-5d47-4637-9252-2efc3e1731ea', 'St Helena', 'Atlantic/St_Helena', 1, NULL, NULL),
('38787a03-9bb3-4a69-a9eb-f168415f6fcf', 'Colombo', 'Asia/Colombo', 1, NULL, NULL),
('3998d83a-b990-44d3-b95a-c6ef8073c182', 'Volgograd', 'Europe/Volgograd', 1, NULL, NULL),
('3a300d8f-e676-4936-b2f1-f9ac824426a2', 'Havana', 'America/Havana', 1, NULL, NULL),
('3a709b69-fefd-4aa3-a228-8df35f3df9cd', 'Darwin', 'Australia/Darwin', 1, NULL, NULL),
('3a7610eb-cdea-4a2f-9e6e-fbab99e27d47', 'Kuwait', 'Asia/Kuwait', 1, NULL, NULL),
('3b5ca636-17ad-4a32-a136-d30ed6ed3347', 'Lubumbashi', 'Africa/Lubumbashi', 1, NULL, NULL),
('3b652baf-e9d8-412f-9e26-c56e9e2a8838', 'Freetown', 'Africa/Freetown', 1, NULL, NULL),
('3c1f5aeb-279c-4d4b-9e3d-0b92c4694a51', 'Ho Chi Minh', 'Asia/Ho_Chi_Minh', 1, NULL, NULL),
('3c2681b7-928a-4a2d-a342-7ee7c3c0dbf2', 'Bamako', 'Africa/Bamako', 1, NULL, NULL),
('3e340e4d-eb1f-43a4-95d3-b77e471855de', 'Rosario', 'America/Rosario', 1, NULL, NULL),
('3ef6b8fb-b205-4c53-b64d-80c2173b2d83', 'Nouakchott', 'Africa/Nouakchott', 1, NULL, NULL),
('3f146e38-fb55-4db1-b4d3-35526c1b1886', 'Ashgabat', 'Asia/Ashgabat', 1, NULL, NULL),
('3f50e213-a071-4399-889f-cf14174d133b', 'Costa Rica', 'America/Costa_Rica', 1, NULL, NULL),
('41c3d794-e495-4d93-af5d-5207dd279ee1', 'Campo Grande', 'America/Campo_Grande', 1, NULL, NULL),
('42162ebe-5a98-4b3d-aadf-1a8d6dbe064e', 'Vancouver', 'America/Vancouver', 1, NULL, NULL),
('42217d22-db23-4be4-9567-d37067e9246a', 'Pago Pago', 'Pacific/Pago_Pago', 1, NULL, NULL),
('431858c5-50fc-4302-98c2-01e929f1d4b1', 'Pangnirtung', 'America/Pangnirtung', 1, NULL, NULL),
('437e37cd-d174-4c24-af87-c0b1a914f28e', 'Atka', 'America/Atka', 1, NULL, NULL),
('44f2b0c2-53a7-4b8d-aff5-6945068ecf5d', 'Mauritius', 'Indian/Mauritius', 1, NULL, NULL),
('45938388-0dcd-408c-bb13-417c069754b7', 'Hobart', 'Australia/Hobart', 1, NULL, NULL),
('468059fa-e54d-4577-a6b7-f7d134ef2f54', 'Syowa', 'Antarctica/Syowa', 1, NULL, NULL),
('46b7baf2-c111-4f43-9907-72b05975b8f3', 'Thunder Bay', 'America/Thunder_Bay', 1, NULL, NULL),
('46b83534-7644-468e-ad4c-f04af8214abe', 'Louisville', 'America/Louisville', 1, NULL, NULL),
('46ea048e-2cc2-4082-8818-db402710a3f8', 'Addis Ababa', 'Africa/Addis_Ababa', 1, NULL, NULL),
('4714ce8d-71c3-4edd-9e83-2fb8fa7d7c44', 'Indiana - Knox', 'America/Indiana/Knox', 1, NULL, NULL),
('473e6b68-8df8-4d79-9286-2cae219c5d79', 'Novosibirsk', 'Asia/Novosibirsk', 1, NULL, NULL),
('477aa0e7-187c-4f4e-9c57-11a49e535b5f', 'Yakutat', 'America/Yakutat', 1, NULL, NULL),
('47934cbc-11d7-4946-8e01-51f8535a4506', 'Virgin', 'America/Virgin', 1, NULL, NULL),
('483da81c-cfd0-4fe6-9ac1-bb32a2e1e347', 'Nicosia', 'Europe/Nicosia', 1, NULL, NULL),
('487c1832-5fd7-4927-9584-53e47a1075e4', 'Truk', 'Pacific/Truk', 1, NULL, NULL),
('4a18b56c-e458-41c7-81b4-f9ec29793353', 'Baku', 'Asia/Baku', 1, NULL, NULL),
('4a2b32e2-eccd-4907-9c2d-729969dfff9a', 'Niamey', 'Africa/Niamey', 1, NULL, NULL),
('4a412799-c93b-4fd4-963c-94eb4b5ed9d2', 'Tegucigalpa', 'America/Tegucigalpa', 1, NULL, NULL),
('4a7b3a66-3da5-44a4-bca8-95d2a86959e2', 'Mexico City', 'America/Mexico_City', 1, NULL, NULL),
('4a84c8e1-bc02-4760-9a38-6370a2f6cbe7', 'Enderbury', 'Pacific/Enderbury', 1, NULL, NULL),
('4a999ba7-7db8-4bac-8bca-4ba5b71c3f73', 'New York (Eastern)', 'America/New_York', 1, NULL, NULL),
('4b3b5c97-84c4-40d7-9246-76e28002dcd4', 'Kerguelen', 'Indian/Kerguelen', 1, NULL, NULL),
('4c1a2bf6-2e50-4b76-9dc1-09f3a7605d3c', 'Magadan', 'Asia/Magadan', 1, NULL, NULL),
('4d11c424-e8aa-4508-8c47-a93c5b5fa46c', 'Luanda', 'Africa/Luanda', 1, NULL, NULL),
('4d3c8f3d-49ec-4699-86ba-db5006046348', 'Yakutsk', 'Asia/Yakutsk', 1, NULL, NULL),
('4d7e52cd-9aa5-4082-8707-60ede2aae2cd', 'Vienna', 'Europe/Vienna', 1, NULL, NULL),
('4d82e293-130c-4640-aaea-14b6d792200a', 'Nipigon', 'America/Nipigon', 1, NULL, NULL),
('4e0c99d9-c845-4efa-a935-d85a8a156567', 'Midway', 'Pacific/Midway', 1, NULL, NULL),
('4e242f8a-d27c-43eb-ad4b-f36dd667ed2a', 'Kuala Lumpur', 'Asia/Kuala_Lumpur', 1, NULL, NULL),
('4e4c72ae-2f3d-4d47-8f69-4c1e395a1cee', 'NSW', 'Australia/NSW', 1, NULL, NULL),
('4e9fca02-aa78-425c-9693-98cad9def0fe', 'Kathmandu', 'Asia/Kathmandu', 1, NULL, NULL),
('4ea0ceae-4701-40b1-8b50-39c37792780b', 'Lusaka', 'Africa/Lusaka', 1, NULL, NULL),
('4ee31929-803f-428d-802f-4f13c0ffba64', 'Paramaribo', 'America/Paramaribo', 1, NULL, NULL),
('4fb51661-185d-4d51-865c-b5dc6d9fe91b', 'Miquelon', 'America/Miquelon', 1, NULL, NULL),
('504efe31-404b-4bc9-86ab-b9c18a74b6cb', 'Atikokan', 'America/Atikokan', 1, NULL, NULL),
('50c67b91-fd5c-4e12-86cc-999d9c4372d8', 'Chicago', 'America/Chicago', 1, NULL, NULL),
('5266ee01-64c9-4448-8650-46b2551f7176', 'Boise', 'America/Boise', 1, NULL, NULL),
('527674ab-d22b-4019-9351-f868b90d926f', 'Chihuahua', 'America/Chihuahua', 1, NULL, NULL),
('55411f9f-ad4d-4861-9168-3590fab3f37a', 'Samara', 'Europe/Samara', 1, NULL, NULL),
('55abec3d-f8e2-44f8-98fa-6c06bf878e40', 'Qyzylorda', 'Asia/Qyzylorda', 1, NULL, NULL),
('570b9797-1157-4789-8b69-b82e1ce24e0a', 'Catamarca', 'America/Catamarca', 1, NULL, NULL),
('575048f6-efad-4938-bfae-56545f8bf3ec', 'Johnston', 'Pacific/Johnston', 1, NULL, NULL),
('57e73430-e4cd-4a38-aaf9-6faff660b9d0', 'Rome', 'Europe/Rome', 1, NULL, NULL),
('5832f90e-a4c9-48b9-a775-9403e50ef357', 'Kentucky - Louisville', 'America/Kentucky/Louisville', 1, NULL, NULL),
('5989ae3e-ce7b-4c7b-b662-eeb26a8be93e', 'Madeira', 'Atlantic/Madeira', 1, NULL, NULL),
('59bf96a9-3bd7-4eac-a26f-a140d4959092', 'Accra', 'Africa/Accra', 1, NULL, NULL),
('5a72ef8c-bfb7-4729-8282-9a0b01f31e7d', 'Algiers', 'Africa/Algiers', 1, NULL, NULL),
('5c1f6b74-6cb2-45f9-950d-3c2a3575c793', 'Antananarivo', 'Indian/Antananarivo', 1, NULL, NULL),
('5c29b2bf-b64b-4c59-acee-1997b67a3f30', 'Chisinau', 'Europe/Chisinau', 1, NULL, NULL),
('5c4b3861-761e-499f-9bff-63a5f4cfd320', 'Niue', 'Pacific/Niue', 1, NULL, NULL),
('5d309b30-f102-4cf6-9ef1-48a1aa1878b4', 'Taipei', 'Asia/Taipei', 1, NULL, NULL),
('5d8090a6-7e0e-4797-8dc9-25d8e099b348', 'Pitcairn', 'Pacific/Pitcairn', 1, NULL, NULL),
('5dc00c70-06ed-496b-9204-331a26316631', 'Tashkent', 'Asia/Tashkent', 1, NULL, NULL),
('5decd052-2f90-49e9-8bcc-3037a83469eb', 'Christmas', 'Indian/Christmas', 1, NULL, NULL),
('5f16e395-fe30-43bf-b97d-2240e4dd7581', 'Indiana - Tell City', 'America/Indiana/Tell_City', 1, NULL, NULL),
('5f260de4-95e2-4f6f-8633-bae6bb4cd2a9', 'Lindeman', 'Australia/Lindeman', 1, NULL, NULL),
('605dd990-3d6f-4bf3-bef8-52646368b666', 'Nicosia', 'Asia/Nicosia', 1, NULL, NULL),
('62c14856-b295-4916-925d-3d62551c1223', 'Mbabane', 'Africa/Mbabane', 1, NULL, NULL),
('630a331f-5f27-450b-a50a-5d0139c64af2', 'Samoa', 'Pacific/Samoa', 1, NULL, NULL),
('64bf87de-89c7-44fd-85bc-fa45b9c8744d', 'Indiana - Indianapolis', 'America/Indiana/Indianapolis', 1, NULL, NULL),
('6501b50e-0857-4820-9621-af3f4b7b96ac', 'Almaty', 'Asia/Almaty', 1, NULL, NULL),
('6533c6a7-d820-473f-91ce-d9b7d52944f2', 'Marigot', 'America/Marigot', 1, NULL, NULL),
('671b9318-cf14-4cdb-8570-d20d895ed29a', 'Bangkok', 'Asia/Bangkok', 1, NULL, NULL),
('67ac3532-c8e4-4c13-b56f-a1bb58c3c4b3', 'Bahia', 'America/Bahia', 1, NULL, NULL),
('6850bf17-c2cd-421b-8d71-e0b3f159efe0', 'Sydney', 'Australia/Sydney', 1, NULL, NULL),
('69025325-3de3-4489-8f66-16d5e3bac2d2', 'Macquarie', 'Antarctica/Macquarie', 1, NULL, NULL),
('6c86a646-a63e-440b-ba95-4d06959d7f03', 'Gaborone', 'Africa/Gaborone', 1, NULL, NULL),
('6d2a8a6e-4868-4826-a011-2b44984d04a0', 'St Vincent', 'America/St_Vincent', 1, NULL, NULL),
('6e50f51f-bd65-43ea-90fc-a4bba9f5d8eb', 'South Georgia', 'Atlantic/South_Georgia', 1, NULL, NULL),
('6e6f0f94-5f66-46a5-90d4-3d08762b1d58', 'Novokuznetsk', 'Asia/Novokuznetsk', 1, NULL, NULL),
('6ec0a689-22a8-4919-8fc2-b46719c5e1a1', 'Argentina - Jujuy', 'America/Argentina/Jujuy', 1, NULL, NULL),
('6f719092-6dae-4e50-8b3b-a0a284771a4a', 'Kiev', 'Europe/Kiev', 1, NULL, NULL),
('6f998d7d-d136-470e-84dd-e711db11b866', 'Azores', 'Atlantic/Azores', 1, NULL, NULL),
('7024b82e-7068-4415-9f01-e8dc5e9331d2', 'Moncton', 'America/Moncton', 1, NULL, NULL),
('70b1b6cc-ba36-48cf-ae2a-ef02ae288900', 'Porto Velho', 'America/Porto_Velho', 1, NULL, NULL),
('7106e91e-bde9-4abe-9100-75cb75644f90', 'Argentina - La Rioja', 'America/Argentina/La_Rioja', 1, NULL, NULL),
('724be596-b66e-4977-b0bd-043383911051', 'Qatar', 'Asia/Qatar', 1, NULL, NULL),
('727fce50-42d9-4989-b372-12f1549ca398', 'Jujuy', 'America/Jujuy', 1, NULL, NULL),
('729ff6f4-c67c-4095-99af-e0392d3791c3', 'LHI', 'Australia/LHI', 1, NULL, NULL),
('73b10a00-7512-4c3f-8111-5a3315d66fb9', 'Dar es Salaam', 'Africa/Dar_es_Salaam', 1, NULL, NULL),
('73c7298c-89fe-458d-9507-db98d65c4a71', 'Stanley', 'Atlantic/Stanley', 1, NULL, NULL),
('744e0467-75b1-460a-974f-6137015c37ca', 'Grand Turk', 'America/Grand_Turk', 1, NULL, NULL),
('74f22599-9446-41e1-8366-c1ea953bfbb0', 'Casablanca', 'Africa/Casablanca', 1, NULL, NULL),
('7580032b-ecd6-4ad3-b4c9-45a33ed370b5', 'Tbilisi', 'Asia/Tbilisi', 1, NULL, NULL),
('75b59145-31e6-49dc-abe4-aa382189121e', 'Brussels', 'Europe/Brussels', 1, NULL, NULL),
('76fc9217-b1b4-43b9-97b6-794f1788f208', 'Kaliningrad', 'Europe/Kaliningrad', 1, NULL, NULL),
('771ed549-db2a-4afc-ba6f-541378054f1c', 'Conakry', 'Africa/Conakry', 1, NULL, NULL),
('7812a91c-818c-45dd-a24a-7767c91504ea', 'Sakhalin', 'Asia/Sakhalin', 1, NULL, NULL),
('787db7e0-8a09-4bbf-aa5f-d198e0f4cb13', 'Chongqing', 'Asia/Chongqing', 1, NULL, NULL),
('78b60ef7-4122-4eba-87bf-1fd6ee918d39', 'St Barthelemy', 'America/St_Barthelemy', 1, NULL, NULL),
('78bc14a0-4e4d-479b-ac4e-41680b554435', 'Yap', 'Pacific/Yap', 1, NULL, NULL),
('79b29c05-83a0-489d-8349-8ee1a9bc2ca2', 'Indiana - Vevay', 'America/Indiana/Vevay', 1, NULL, NULL),
('7a28fa30-7a02-4e9a-95d9-94a7cf97f174', 'Maceio', 'America/Maceio', 1, NULL, NULL),
('7a74e067-2347-44b2-8551-14b4b43abd31', 'Honolulu', 'Pacific/Honolulu', 1, NULL, NULL),
('7a93bee3-3fc7-482b-bae9-0f768ab5a3f6', 'South Pole', 'Antarctica/South_Pole', 1, NULL, NULL),
('7ab61c3b-8078-418f-96bd-36b0d75f9b8e', 'Anadyr', 'Asia/Anadyr', 1, NULL, NULL),
('7c16762a-8b39-4265-a686-550979873c2a', 'Reunion', 'Indian/Reunion', 1, NULL, NULL),
('7c1caa9e-54e8-4fb7-8383-13c9ba4d1675', 'Cambridge Bay', 'America/Cambridge_Bay', 1, NULL, NULL),
('7df0173a-9004-4b78-946d-65db871d1dd0', 'Chicago (Central)', 'America/Chicago', 1, NULL, NULL),
('7ea31ea7-8ec7-41e6-9184-45c6d0f84b89', 'Knox IN', 'America/Knox_IN', 1, NULL, NULL),
('7f566a06-27ec-4dc4-9cf3-a373c90bbcc7', 'Vaduz', 'Europe/Vaduz', 1, NULL, NULL),
('7f63347c-45cb-4969-a1a0-10f0011aa979', 'Juneau', 'America/Juneau', 1, NULL, NULL),
('8338b22c-2dc8-40c9-8184-4dbf686b7a6c', 'Jakarta', 'Asia/Jakarta', 1, NULL, NULL),
('843b55c3-7483-44b1-95cd-ee5286f4c79d', 'Zaporozhye', 'Europe/Zaporozhye', 1, NULL, NULL),
('849d9e4b-b268-407c-b800-eb34fb946408', 'Mogadishu', 'Africa/Mogadishu', 1, NULL, NULL),
('85a46994-66d2-4cde-b9b8-69c7c59b6516', 'Pontianak', 'Asia/Pontianak', 1, NULL, NULL),
('86969858-c103-4371-968d-2e6d3f02e626', 'Lord Howe', 'Australia/Lord_Howe', 1, NULL, NULL),
('87823a75-8b3e-453c-a9d9-490ea852ff1b', 'Denver (Mountain)', 'America/Denver', 1, NULL, NULL),
('878da4ba-f8ff-4ce2-a217-695843df6019', 'Iqaluit', 'America/Iqaluit', 1, NULL, NULL),
('885f851d-8ca0-4f5e-9a2c-6dc58c2c75ea', 'Mazatlan', 'America/Mazatlan', 1, NULL, NULL),
('8870b5b3-9ece-4342-9c5f-40fc9955daf3', 'Omsk', 'Asia/Omsk', 1, NULL, NULL),
('88716114-281c-4856-a54b-b69becf4097d', 'Windhoek', 'Africa/Windhoek', 1, NULL, NULL),
('887fa724-1956-46b7-8793-90cc38606f9c', 'Jamaica', 'America/Jamaica', 1, NULL, NULL),
('88812496-7b4a-4fef-9da0-7eb268c2cc64', 'Argentina - Cordoba', 'America/Argentina/Cordoba', 1, NULL, NULL),
('8921b6cf-8d27-48c0-bdbc-1ab47e0c1cd0', 'Toronto', 'America/Toronto', 1, NULL, NULL),
('895da814-dd6a-4c4b-a229-80fc1c718dd3', 'Gibraltar', 'Europe/Gibraltar', 1, NULL, NULL),
('89afcb48-458b-4673-b15c-d3c412cb5642', 'Tortola', 'America/Tortola', 1, NULL, NULL),
('8a3346e8-06d1-45b9-b35a-e2c15173caba', 'Jersey', 'Europe/Jersey', 1, NULL, NULL),
('8ab1bb30-4b59-443a-9518-f8e26b204501', 'Kamchatka', 'Asia/Kamchatka', 1, NULL, NULL),
('8ace3cd2-ca6c-47a3-bfde-023ee6e7d2bf', 'New York', 'America/New_York', 1, NULL, NULL),
('8ae80d9e-012f-4ef6-8504-8ebac6aa57f8', 'Lagos', 'Africa/Lagos', 1, NULL, NULL),
('8bfc32da-83ca-4bb2-9245-80d7cd72ce20', 'ACT', 'Australia/ACT', 1, NULL, NULL),
('8c5578ef-2889-455f-a128-2722bee04c99', 'Bucharest', 'Europe/Bucharest', 1, NULL, NULL),
('8cd78530-f54b-4935-8a6c-2b4143cf7039', 'Ujung Pandang', 'Asia/Ujung_Pandang', 1, NULL, NULL),
('8d9012db-0510-4ffe-ba94-fc6832064601', 'Inuvik', 'America/Inuvik', 1, NULL, NULL),
('8e28488c-eaa1-45a4-89e0-d1ddeca69d1f', 'Martinique', 'America/Martinique', 1, NULL, NULL),
('902ffe5a-21dd-4f5e-92c5-67a623042b33', 'Argentina - Catamarca', 'America/Argentina/Catamarca', 1, NULL, NULL),
('918adb3b-9492-4345-9874-13480b2959fe', 'Kigali', 'Africa/Kigali', 1, NULL, NULL),
('923456e2-00d3-4212-aa9a-f6b91adb0e68', 'Aden', 'Asia/Aden', 1, NULL, NULL),
('9310264d-9eb8-4ebb-8392-e4f211a3d80b', 'Belgrade', 'Europe/Belgrade', 1, NULL, NULL),
('956c4273-e61a-4a24-9d87-67f3dec7a41e', 'Madrid', 'Europe/Madrid', 1, NULL, NULL),
('95f51214-14b5-4c59-ba4a-cff8a346f4b1', 'Resolute', 'America/Resolute', 1, NULL, NULL),
('960b582c-fbda-4fdc-ac0a-9424c9b36187', 'Yellowknife', 'America/Yellowknife', 1, NULL, NULL),
('96c4e8a3-0126-4dc1-a785-024cf7c81e6d', 'Noronha', 'America/Noronha', 1, NULL, NULL),
('97945c2b-1652-4e01-bfcf-a43a72b78dee', 'Bratislava', 'Europe/Bratislava', 1, NULL, NULL),
('97caa4a9-3bf2-4a90-831e-82cb801dcc77', 'Argentina - Buenos Aires', 'America/Argentina/Buenos_Aires', 1, NULL, NULL),
('97d17e49-9d15-4311-9598-7b03a71fe9e8', 'Kampala', 'Africa/Kampala', 1, NULL, NULL),
('97fdc565-e71c-458b-ad4b-a9292b0d27db', 'Mayotte', 'Indian/Mayotte', 1, NULL, NULL),
('98364ec8-6df0-402b-99a3-ac43db8f4b34', 'Indiana - Marengo', 'America/Indiana/Marengo', 1, NULL, NULL),
('9847f452-a429-41d2-8c23-fbc76b2df78c', 'Cayenne', 'America/Cayenne', 1, NULL, NULL),
('987730a8-0fb3-4bb7-b21e-fca279985c28', 'Rangoon', 'Asia/Rangoon', 1, NULL, NULL),
('987bd61b-69a5-4521-a553-83c09444a846', 'Vostok', 'Antarctica/Vostok', 1, NULL, NULL),
('99c60d2b-4dd1-4d82-b936-6289c9e18077', 'Sarajevo', 'Europe/Sarajevo', 1, NULL, NULL),
('9a6d7455-dbff-46da-8e98-f61691de04e7', 'Los Angeles', 'America/Los_Angeles', 1, NULL, NULL),
('9a965628-63d9-42a0-a34a-92671fd620c3', 'Ljubljana', 'Europe/Ljubljana', 1, NULL, NULL),
('9ae6dd7c-c8d3-4d8d-ae06-4b11ff90b29c', 'Ceuta', 'Africa/Ceuta', 1, NULL, NULL),
('9c049f43-a2dd-410b-b771-5966f43c6a07', 'Baghdad', 'Asia/Baghdad', 1, NULL, NULL),
('9c722d81-e2e6-4a3f-937b-cbf2d8a29932', 'Jayapura', 'Asia/Jayapura', 1, NULL, NULL),
('9c9d0fe1-26bb-403e-82dd-3e1564577b29', 'Port-au-Prince', 'America/Port-au-Prince', 1, NULL, NULL),
('9d0f224f-1f70-4a91-b3c8-8e8388689cd0', 'Galapagos', 'Pacific/Galapagos', 1, NULL, NULL),
('9e2dd080-ab2c-4d15-8d30-f48b2030293d', 'Yancowinna', 'Australia/Yancowinna', 1, NULL, NULL),
('9ea58dd4-e9d2-4e83-8caa-feffd8600788', 'Argentina - San Luis', 'America/Argentina/San_Luis', 1, NULL, NULL),
('9f0add57-60b4-4407-af6a-9debfeac1fd3', 'Bujumbura', 'Africa/Bujumbura', 1, NULL, NULL),
('9f9b70a1-47fb-4416-b458-de62047d4c7f', 'San Marino', 'Europe/San_Marino', 1, NULL, NULL),
('9fe42573-8065-4b50-9dac-87b78ceb6bd1', 'Guadeloupe', 'America/Guadeloupe', 1, NULL, NULL),
('a04d5a5d-9c28-4a2d-8282-a53126e49e52', 'Phnom Penh', 'Asia/Phnom_Penh', 1, NULL, NULL),
('a1634bd2-931e-4d0d-902f-9dce0b2770b3', 'Argentina - Rio Gallegos', 'America/Argentina/Rio_Gallegos', 1, NULL, NULL),
('a1f15a0d-902f-4913-854f-06007548d49b', 'Skopje', 'Europe/Skopje', 1, NULL, NULL),
('a200a25d-badb-48e1-8994-e0562bbd7eb9', 'Faroe', 'Atlantic/Faroe', 1, NULL, NULL),
('a3b577b0-efaa-4b78-8715-2eee5342ca36', 'Malta', 'Europe/Malta', 1, NULL, NULL),
('a4e58c95-c970-4e0b-982a-bfc3bb232b20', 'Marquesas', 'Pacific/Marquesas', 1, NULL, NULL),
('a5066621-ec9b-4371-b910-ae6aece486e1', 'Belize', 'America/Belize', 1, NULL, NULL),
('a57e3a8c-fe93-4eb9-9dd6-6eaccc0419b8', 'Coral Harbour', 'America/Coral_Harbour', 1, NULL, NULL),
('a595b113-4deb-452a-8242-6e2e9f16d216', 'Chatham', 'Pacific/Chatham', 1, NULL, NULL),
('a7e24034-7434-4fa6-bbda-e0f0f573d6c9', 'Chagos', 'Indian/Chagos', 1, NULL, NULL),
('a87ccb42-ca21-4ff2-9614-da140f0186e8', 'Dushanbe', 'Asia/Dushanbe', 1, NULL, NULL),
('a8902173-aebd-4315-96ad-90120ea0674e', 'Argentina - Salta', 'America/Argentina/Salta', 1, NULL, NULL),
('a917fe4e-735b-4a9e-94bb-3fb0e40cf0b4', 'Santiago', 'America/Santiago', 1, NULL, NULL),
('aa0843e6-23d8-4192-a566-7d9621bbd5b8', 'Thimbu', 'Asia/Thimbu', 1, NULL, NULL),
('aa4f50e6-2493-4f7f-90c3-a7ec127c88a3', 'Harbin', 'Asia/Harbin', 1, NULL, NULL),
('aabbeb30-6d31-480d-815d-43641afc0c9b', 'Dhaka', 'Asia/Dhaka', 1, NULL, NULL),
('ab6dcc80-ec1a-4687-9667-160a4fba3488', 'Krasnoyarsk', 'Asia/Krasnoyarsk', 1, NULL, NULL),
('ac4c892a-37e0-438b-965f-5627a5efb416', 'Ensenada', 'America/Ensenada', 1, NULL, NULL),
('ac723a70-cf4c-4ad5-92d4-e298f328719d', 'Lisbon', 'Europe/Lisbon', 1, NULL, NULL),
('ad5ae196-0b6f-4115-8ddb-2d9bb7861e92', 'Barbados', 'America/Barbados', 1, NULL, NULL),
('ad9010f6-1e61-4667-997b-e54becbfd072', 'Mendoza', 'America/Mendoza', 1, NULL, NULL),
('ae633499-7769-40a6-a851-19e3abfeb9db', 'Vilnius', 'Europe/Vilnius', 1, NULL, NULL),
('aee28730-4df1-48ce-ab50-4c328f5bb173', 'Irkutsk', 'Asia/Irkutsk', 1, NULL, NULL),
('aee6de84-3252-4516-b7cb-4fdbbf423d2d', 'Buenos Aires', 'America/Buenos_Aires', 1, NULL, NULL),
('af2e8eb0-b26f-41ae-9d00-48634f5cedd0', 'Bissau', 'Africa/Bissau', 1, NULL, NULL),
('af7ee5e4-d997-4b4e-80f6-a6fe6c61baba', 'Funafuti', 'Pacific/Funafuti', 1, NULL, NULL),
('b00b9d93-520c-45a4-919b-4bc7f1bc3793', 'St Thomas', 'America/St_Thomas', 1, NULL, NULL),
('b115b873-c998-4651-9ebd-9c9fa637c97e', 'Asmara', 'Africa/Asmara', 1, NULL, NULL),
('b17ca442-b6a4-4bc3-8da6-213e461051d2', 'Blanc-Sablon', 'America/Blanc-Sablon', 1, NULL, NULL),
('b49750fc-b695-4f8a-b8be-3e4464b9ad8b', 'Amsterdam', 'Europe/Amsterdam', 1, NULL, NULL),
('b4a32684-da1c-417b-84f4-1483d6eb1149', 'Denver', 'America/Denver', 1, NULL, NULL),
('b4bcab15-ee8e-479f-a1bc-93026d99cbde', 'Bangui', 'Africa/Bangui', 1, NULL, NULL),
('b5323723-c3ff-47f3-80f9-feac8b1fa07a', 'Tasmania', 'Australia/Tasmania', 1, NULL, NULL),
('b55e12c8-0dfc-49bb-8364-56a6432252c7', 'Oslo', 'Europe/Oslo', 1, NULL, NULL),
('b5a1e8d1-5e2d-4ccc-90e9-32dc90705a7f', 'Efate', 'Pacific/Efate', 1, NULL, NULL),
('b5a27e20-679f-487e-99f9-dda3be18fe9f', 'Montserrat', 'America/Montserrat', 1, NULL, NULL),
('b5d5120e-e611-4ae5-846e-8f17cc950391', 'Oral', 'Asia/Oral', 1, NULL, NULL),
('b6213e31-d663-496c-a7b3-41ca0c60cdc0', 'Comoro', 'Indian/Comoro', 1, NULL, NULL),
('b73b8f36-a513-48fb-83d3-5a739a6a588a', 'UTC', 'UTC', 1, NULL, NULL),
('b7a016a9-8381-4122-9451-9eb2e8819dd4', 'Ouagadougou', 'Africa/Ouagadougou', 1, NULL, NULL),
('b7d7ae80-ca73-4e62-a272-15813b7b2055', 'McMurdo', 'Antarctica/McMurdo', 1, NULL, NULL),
('b8fc1802-306b-4dfa-b715-dfb1c5ed0b50', 'Maldives', 'Indian/Maldives', 1, NULL, NULL),
('b9c9c86c-46ec-4771-8ea6-0332488ff6ea', 'Easter', 'Pacific/Easter', 1, NULL, NULL),
('ba43c226-429f-4341-8639-c94d18143d35', 'Timbuktu', 'Africa/Timbuktu', 1, NULL, NULL),
('bb34520a-04c6-431d-a135-26f0456f674e', 'Mahe', 'Indian/Mahe', 1, NULL, NULL),
('bb5dc09a-b776-414f-a8eb-bb1c3dfd0468', 'St Kitts', 'America/St_Kitts', 1, NULL, NULL),
('bb754cff-5996-4ac3-bc21-f9e7b5420d1d', 'Kinshasa', 'Africa/Kinshasa', 1, NULL, NULL),
('bb9e19d2-a68c-4a1e-a355-d8a7dc741888', 'Porto-Novo', 'Africa/Porto-Novo', 1, NULL, NULL),
('bba54147-c6d1-4e2d-ba88-a29937830a89', 'Argentina - Tucuman', 'America/Argentina/Tucuman', 1, NULL, NULL),
('bc101980-cb84-4a43-90fc-89737ce61595', 'Tehran', 'Asia/Tehran', 1, NULL, NULL),
('bc2ca8e4-9248-4fb6-be72-794f855ebe34', 'Abidjan', 'Africa/Abidjan', 1, NULL, NULL),
('bc42ddbb-0a95-440b-9467-a082092cf8e4', 'El Aaiun', 'Africa/El_Aaiun', 1, NULL, NULL),
('bccf23f1-a356-4d45-8f33-aa37e675daf5', 'Casey', 'Antarctica/Casey', 1, NULL, NULL),
('bcd5054d-630e-48ff-a0d4-9f3eff4d66a9', 'Stockholm', 'Europe/Stockholm', 1, NULL, NULL),
('bd50896c-3df6-4e80-abc4-b73b159c4647', 'Bermuda', 'Atlantic/Bermuda', 1, NULL, NULL),
('bdec5f79-d1de-4ba3-a2b3-173e7ad32013', 'Dubai', 'Asia/Dubai', 1, NULL, NULL),
('bdf3138d-f7c7-4270-9ace-929fbd762144', 'Makassar', 'Asia/Makassar', 1, NULL, NULL),
('bdfab94f-bd07-47f5-8724-02dd27237e7e', 'Tripoli', 'Africa/Tripoli', 1, NULL, NULL),
('bf67274a-335a-4bcb-bac2-729dd6aa22dc', 'Aqtobe', 'Asia/Aqtobe', 1, NULL, NULL),
('bfd03fc3-66d6-4913-b6b4-9ed167729f5d', 'Auckland', 'Pacific/Auckland', 1, NULL, NULL),
('c01dca3f-cb63-4659-ae06-d615456d5519', 'Kiritimati', 'Pacific/Kiritimati', 1, NULL, NULL),
('c0b626a4-7aaf-4a67-9d3d-f3b356b4deee', 'Montevideo', 'America/Montevideo', 1, NULL, NULL),
('c1154098-7972-4b7f-b3d6-49caa1768d63', 'Santa Isabel', 'America/Santa_Isabel', 1, NULL, NULL),
('c1609f06-f7aa-4a22-aa92-478bb0dbb1d4', 'Katmandu', 'Asia/Katmandu', 1, NULL, NULL),
('c1d06ee3-0e22-4c33-bd73-10d184f7f606', 'La Paz', 'America/La_Paz', 1, NULL, NULL),
('c2005617-2b22-48bc-8301-1ad2faecbef5', 'Lima', 'America/Lima', 1, NULL, NULL),
('c2045fc1-363f-4afb-a412-8bb577c2e8b6', 'Tel Aviv', 'Asia/Tel_Aviv', 1, NULL, NULL),
('c23682f0-90dc-4080-8b5e-4359dc6c76a2', 'Simferopol', 'Europe/Simferopol', 1, NULL, NULL),
('c294fe5e-4483-4d9e-97df-a0a7a03e6a87', 'Godthab', 'America/Godthab', 1, NULL, NULL),
('c2ef77cd-7392-4b06-b949-9e428900eb2e', 'Currie', 'Australia/Currie', 1, NULL, NULL),
('c308b126-5913-46ca-b13b-1667252a4403', 'Caracas', 'America/Caracas', 1, NULL, NULL),
('c33f42cb-28d8-46b1-9ed5-f8873833e33e', 'Los Angeles (Pacific)', 'America/Los_Angeles', 1, NULL, NULL),
('c3a0a07b-a79c-4303-8948-aca776148b67', 'Kolkata', 'Asia/Kolkata', 1, NULL, NULL),
('c3dbbd88-f663-499c-9b0b-4d95743c1e04', 'Amman', 'Asia/Amman', 1, NULL, NULL),
('c4e19dd9-3143-4d88-a98f-9b35c6bd7991', 'Monrovia', 'Africa/Monrovia', 1, NULL, NULL),
('c4e876b5-20df-4383-be2f-cadd57f99ad5', 'Brunei', 'Asia/Brunei', 1, NULL, NULL),
('c5644b90-b121-4f61-bdbf-2f410e37e610', 'Dominica', 'America/Dominica', 1, NULL, NULL),
('c61d13b2-8b5b-443a-a47f-7e47dcc7f36e', 'Zagreb', 'Europe/Zagreb', 1, NULL, NULL),
('c6340da2-2dfd-443a-a006-c5038811452f', 'Macau', 'Asia/Macau', 1, NULL, NULL),
('c755bc1e-1b4f-4972-a070-046e9f88a5d9', 'Panama', 'America/Panama', 1, NULL, NULL),
('c770f813-4e0d-4168-a1f1-b4fd096b16b5', 'Halifax', 'America/Halifax', 1, NULL, NULL),
('c7b89e1a-af3f-4527-9886-5f86ed72c4e1', 'Muscat', 'Asia/Muscat', 1, NULL, NULL),
('c830af88-0cd7-4275-9cdb-97b10f1762d5', 'Kabul', 'Asia/Kabul', 1, NULL, NULL),
('c83ac411-d19b-4d5c-aabf-de8db515c0c0', 'Ulan Bator', 'Asia/Ulan_Bator', 1, NULL, NULL),
('c849cf1f-ba41-42f5-8fb6-7db2d987e9d2', 'Brazzaville', 'Africa/Brazzaville', 1, NULL, NULL),
('c84aa14d-2bf5-477b-a925-c4a1e3dff07e', 'Brisbane', 'Australia/Brisbane', 1, NULL, NULL),
('c8854206-b37f-4cca-bea4-e90835a57464', 'Yerevan', 'Asia/Yerevan', 1, NULL, NULL),
('c8b6b008-c60e-46df-8f01-ea3a5ef4dfc4', 'Kwajalein', 'Pacific/Kwajalein', 1, NULL, NULL),
('c8fb6395-1835-4be8-bf49-b638746da4d4', 'Port of Spain', 'America/Port_of_Spain', 1, NULL, NULL),
('c99bfe0d-0c4f-408e-a578-d2da1d245aa7', 'Guadalcanal', 'Pacific/Guadalcanal', 1, NULL, NULL),
('cbd47b14-b0f6-4b79-a214-70b496b5a9a4', 'Apia', 'Pacific/Apia', 1, NULL, NULL),
('cbe60c9c-80bb-4883-9b81-9c5de0da032f', 'DumontDUrville', 'Antarctica/DumontDUrville', 1, NULL, NULL),
('cbea3175-a0c1-451b-ad6a-2128ae0df6c8', 'Manila', 'Asia/Manila', 1, NULL, NULL),
('cbffe457-46a3-493c-b04f-5524451aea1a', 'Sao Tome', 'Africa/Sao_Tome', 1, NULL, NULL),
('cc551f09-f9b5-4ad1-8caf-cd60680befae', 'Cayman', 'America/Cayman', 1, NULL, NULL),
('cd2def06-89c0-4a79-9049-eeb13dcb7263', 'Guayaquil', 'America/Guayaquil', 1, NULL, NULL),
('ce4f21f7-381d-404d-82a1-124608a66333', 'Antigua', 'America/Antigua', 1, NULL, NULL),
('ce5d2ce4-db59-4d92-8ec4-0c9e9f8fc047', 'Wake', 'Pacific/Wake', 1, NULL, NULL),
('d08341c3-2c06-4a6b-ab1f-02e55a9597de', 'Adak', 'America/Adak', 1, NULL, NULL),
('d18d58cd-bbc4-431d-8e62-1a7b5f5e41ba', 'Thimphu', 'Asia/Thimphu', 1, NULL, NULL),
('d198d999-219b-4a21-ab1e-24a9a09b8411', 'Sao Paulo', 'America/Sao_Paulo', 1, NULL, NULL),
('d1ed546d-5a4a-4ccd-9517-47930f32f1f9', 'Grenada', 'America/Grenada', 1, NULL, NULL),
('d1efc372-b4b8-4f8d-adcc-e703c91175a1', 'Guam', 'Pacific/Guam', 1, NULL, NULL),
('d2cfbb0d-bc38-4473-a746-206d8575effb', 'Nome', 'America/Nome', 1, NULL, NULL),
('d3555371-f634-4891-970f-250b5be95155', 'Beirut', 'Asia/Beirut', 1, NULL, NULL),
('d39e6bea-7ac3-49eb-b888-74b69eac0be9', 'Detroit', 'America/Detroit', 1, NULL, NULL),
('d3d61fe3-6c72-4587-a06d-124216e040b7', 'Rothera', 'Antarctica/Rothera', 1, NULL, NULL),
('d40cd4e8-8b0c-40de-a31e-66cc8e6ae003', 'Kashgar', 'Asia/Kashgar', 1, NULL, NULL),
('d41fe68f-05d6-4de9-9ed9-2449d988a5b2', 'Bahrain', 'Asia/Bahrain', 1, NULL, NULL),
('d442df7c-859f-46d2-81b3-0e12f1298951', 'Phoenix (MST)', 'America/Phoenix', 1, NULL, NULL),
('d4af61a5-ef9a-43a3-8baf-0d4f270a357b', 'Argentina - Mendoza', 'America/Argentina/Mendoza', 1, NULL, NULL),
('d63ed043-265f-4ef4-bc05-175167a6a320', 'Monterrey', 'America/Monterrey', 1, NULL, NULL),
('d66b5866-93f8-4965-8673-3c481bd2d7b0', 'Andorra', 'Europe/Andorra', 1, NULL, NULL),
('d70d342a-8058-4a8a-87fd-2365e94bf203', 'Adelaide', 'Australia/Adelaide', 1, NULL, NULL),
('d7a1ba80-4aa1-4fef-ae32-92af69dd618c', 'Canberra', 'Australia/Canberra', 1, NULL, NULL),
('da591fd8-ff71-4f14-a480-90b238eb97c7', 'Porto Acre', 'America/Porto_Acre', 1, NULL, NULL),
('dae3b98d-d465-4ef3-88e7-34715807c31d', 'Perth', 'Australia/Perth', 1, NULL, NULL),
('db1a2f20-b931-4b72-80bf-4de9b83c3c16', 'Fort Wayne', 'America/Fort_Wayne', 1, NULL, NULL),
('dbd77e51-2759-4066-b5c7-4dfa7016dcf5', 'Dacca', 'Asia/Dacca', 1, NULL, NULL),
('dc494dfd-8704-4e54-90ee-fae2b14ec972', 'Minsk', 'Europe/Minsk', 1, NULL, NULL),
('dd5a9007-babb-4201-b997-a3fa3c9aeef7', 'Bogota', 'America/Bogota', 1, NULL, NULL),
('de665d88-e589-48c6-ab9d-1a3fd11d5991', 'Samarkand', 'Asia/Samarkand', 1, NULL, NULL),
('df181b84-49b9-430c-980c-3bf07a702552', 'Dawson Creek', 'America/Dawson_Creek', 1, NULL, NULL),
('df403f6b-8c93-4300-a944-6fd7d8ac4077', 'North Dakota - Center', 'America/North_Dakota/Center', 1, NULL, NULL),
('dfda47aa-480e-40f1-9547-41a74d6cb110', 'Banjul', 'Africa/Banjul', 1, NULL, NULL),
('dfe3ad0e-964b-42c4-86de-7b3a25527382', 'Aqtau', 'Asia/Aqtau', 1, NULL, NULL),
('e1077c9f-0904-407f-869b-ff8552d2a01e', 'Kuching', 'Asia/Kuching', 1, NULL, NULL),
('e1423c0e-633b-428a-b006-dcda41cdb345', 'Rainy River', 'America/Rainy_River', 1, NULL, NULL),
('e168e5a5-63d8-4f61-9b1e-fefc959dfd94', 'Tallinn', 'Europe/Tallinn', 1, NULL, NULL),
('e2abbf56-695c-4c7a-8296-346f92018ea8', 'Tijuana', 'America/Tijuana', 1, NULL, NULL),
('e32b7bb6-9ea3-488d-ac06-2e7ddf45b99c', 'Argentina - San Juan', 'America/Argentina/San_Juan', 1, NULL, NULL),
('e44bd331-214c-4707-8dc5-6072845f4847', 'Podgorica', 'Europe/Podgorica', 1, NULL, NULL),
('e4e1e67c-c091-41a5-9b08-3d0310aec1ed', 'Matamoros', 'America/Matamoros', 1, NULL, NULL),
('e4f20b37-984f-4bb8-aafc-9115374f38c6', 'Eirunepe', 'America/Eirunepe', 1, NULL, NULL),
('e50392fd-c9e9-488c-9f76-a300a2849554', 'Tokyo', 'Asia/Tokyo', 1, NULL, NULL),
('e5b21ce4-150a-46cd-8b96-6a3910992cd8', 'Saigon', 'Asia/Saigon', 1, NULL, NULL),
('e7ba0518-569a-4616-8c1a-177b26192a92', 'Ponape', 'Pacific/Ponape', 1, NULL, NULL),
('e9439ae0-855a-41bc-bba8-40197ea4d869', 'Whitehorse', 'America/Whitehorse', 1, NULL, NULL),
('e9dd3ac0-6acc-4274-b127-47fa63b94426', 'Singapore', 'Asia/Singapore', 1, NULL, NULL),
('ea96312d-a04c-47cf-be1e-63f5e5b2d265', 'Indianapolis', 'America/Indianapolis', 1, NULL, NULL),
('ead7cbcd-79ba-4b17-bbf5-5f43b48cb607', 'Cocos', 'Indian/Cocos', 1, NULL, NULL),
('eb5cfbdf-345d-425f-8366-67ddd56c4fc4', 'Moscow', 'Europe/Moscow', 1, NULL, NULL),
('eb967bed-f6ab-4e85-aa9a-1388523f0a3e', 'Noumea', 'Pacific/Noumea', 1, NULL, NULL),
('ebc1e45e-4cdb-43cc-bd1e-4c4c568df543', 'Santarem', 'America/Santarem', 1, NULL, NULL),
('ec7ea609-df97-4db8-af35-dc6ccd5c6318', 'Mariehamn', 'Europe/Mariehamn', 1, NULL, NULL),
('ecb93ed8-45f2-484e-b34b-cd38286c8a0c', 'Anchorage', 'America/Anchorage', 1, NULL, NULL),
('ed57d86b-dec3-47a8-98f6-d9b642b4c2a4', 'Manaus', 'America/Manaus', 1, NULL, NULL),
('ed5c7c1e-ce4e-4d8c-87da-0412ca746eba', 'Prague', 'Europe/Prague', 1, NULL, NULL),
('ee3cbf12-404c-491d-ad47-913857e4e9ab', 'Boa Vista', 'America/Boa_Vista', 1, NULL, NULL),
('ee8e583c-2670-4d64-8080-b1328fd97fd1', 'Edmonton', 'America/Edmonton', 1, NULL, NULL),
('ef4744cc-028f-4549-ad14-1a648c321f4b', 'Palmer', 'Antarctica/Palmer', 1, NULL, NULL),
('f0027999-d4dd-4bfe-8b22-542fada5df1d', 'Reykjavik', 'Atlantic/Reykjavik', 1, NULL, NULL),
('f00f8405-a5c3-4990-bd29-8341fcb0f4e6', 'Tahiti', 'Pacific/Tahiti', 1, NULL, NULL),
('f05f974f-b2e3-40a7-a800-6ade14d9977e', 'Helsinki', 'Europe/Helsinki', 1, NULL, NULL),
('f086874c-f8d9-45ab-a6eb-6a2b12fb0a48', 'Hovd', 'Asia/Hovd', 1, NULL, NULL),
('f1585954-729f-4ca1-9602-7ab9ee67ad61', 'Mawson', 'Antarctica/Mawson', 1, NULL, NULL),
('f18f98fe-e84d-4034-acac-523f54233ea5', 'Cairo', 'Africa/Cairo', 1, NULL, NULL),
('f2cdc750-47df-4013-8e55-d01cf1966cfa', 'London', 'Europe/London', 1, NULL, NULL),
('f30eb932-3c0c-4155-b6a4-961dd3f89e37', 'Gambier', 'Pacific/Gambier', 1, NULL, NULL),
('f33ad636-842a-4b3f-b05b-37359183ca62', 'Khartoum', 'Africa/Khartoum', 1, NULL, NULL),
('f37a15e6-b341-4046-9463-e864ac92903d', 'Gaza', 'Asia/Gaza', 1, NULL, NULL),
('f3931a4a-2b77-4350-af2d-35a7bc8934bc', 'Yekaterinburg', 'Asia/Yekaterinburg', 1, NULL, NULL),
('f4077ff5-938c-48e7-8b28-5537b51b8a33', 'West', 'Australia/West', 1, NULL, NULL),
('f4a129f9-1457-4fad-9802-3a565de47528', 'Indiana - Winamac', 'America/Indiana/Winamac', 1, NULL, NULL),
('f4ba10d5-2a0b-4086-b82c-c15ad055314b', 'Queensland', 'Australia/Queensland', 1, NULL, NULL),
('f5a4b6f0-76d3-4bf3-ab90-72e21cc9156d', 'Kosrae', 'Pacific/Kosrae', 1, NULL, NULL),
('f7b52934-5d54-48ca-af61-7a423b0047a2', 'Argentina - ComodRivadavia', 'America/Argentina/ComodRivadavia', 1, NULL, NULL),
('f7bb6f7a-aedd-4f6a-b3d5-d31b22047015', 'Guernsey', 'Europe/Guernsey', 1, NULL, NULL),
('f899eb03-9517-49ee-a507-0208a465d9b5', 'Hermosillo', 'America/Hermosillo', 1, NULL, NULL),
('f9297f0b-ed77-4047-86fc-32a15afec1ef', 'Malabo', 'Africa/Malabo', 1, NULL, NULL),
('f955469d-68fa-4fa1-ade1-52d0c79f74c7', 'Douala', 'Africa/Douala', 1, NULL, NULL),
('f98fc06d-8a84-4c75-a38a-3dffe4b42652', 'Lome', 'Africa/Lome', 1, NULL, NULL),
('f99658bc-70e0-415f-9cad-c5158a4ab3f5', 'Cape Verde', 'Atlantic/Cape_Verde', 1, NULL, NULL),
('fa67e724-46bf-4933-bd4f-04e012009d0d', 'Bishkek', 'Asia/Bishkek', 1, NULL, NULL),
('fa8b6c8c-164f-4629-b168-c7ae95659c04', 'Kentucky - Monticello', 'America/Kentucky/Monticello', 1, NULL, NULL),
('fab6ffc3-d6c1-4071-b96b-f23fe11241e0', 'Ashkhabad', 'Asia/Ashkhabad', 1, NULL, NULL),
('fba1b601-a844-431b-9a3f-8897d8c6aa73', 'Indiana - Petersburg', 'America/Indiana/Petersburg', 1, NULL, NULL),
('fbd01740-c8c2-4083-91c6-bc723d017a85', 'Aruba', 'America/Aruba', 1, NULL, NULL),
('fbda20c7-e5a2-4fad-aee9-71113a495e79', 'Montreal', 'America/Montreal', 1, NULL, NULL),
('fca12d07-0aca-488e-afa3-44db16f555be', 'Tunis', 'Africa/Tunis', 1, NULL, NULL),
('fccd5771-1f24-412c-826b-f02d32a4d920', 'Palau', 'Pacific/Palau', 1, NULL, NULL),
('fda418ae-8cb5-4f0e-8d04-bb36d86cb2fe', 'Shiprock', 'America/Shiprock', 1, NULL, NULL),
('fe68d73c-8353-4337-8b2b-ecd1cf048a50', 'Curacao', 'America/Curacao', 1, NULL, NULL),
('fe68f817-4878-4a29-bc6a-d0f4b947857e', 'Merida', 'America/Merida', 1, NULL, NULL),
('fe729544-901d-4b8d-8657-4e5a3308ca9e', 'Monaco', 'Europe/Monaco', 1, NULL, NULL),
('ff808f7d-d31f-47ab-baa9-89353a08d676', 'Vientiane', 'Asia/Vientiane', 1, NULL, NULL);

-- --------------------------------------------------------

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

CREATE TABLE `users` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(50) NOT NULL,
  `company_key` varchar(191) DEFAULT NULL,
  `username` varchar(25) DEFAULT NULL,
  `email` varchar(150) DEFAULT NULL,
  `password` varchar(191) DEFAULT NULL,
  `mobile` varchar(14) NOT NULL,
  `profile_picture` varchar(191) DEFAULT NULL,
  `country` int(10) UNSIGNED DEFAULT NULL,
  `timezone` varchar(191) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `email_confirmed` tinyint(1) NOT NULL DEFAULT 0,
  `mobile_confirmed` tinyint(1) NOT NULL DEFAULT 0,
  `email_confirmation_token` varchar(191) DEFAULT NULL,
  `fcm_token` varchar(191) DEFAULT NULL,
  `apn_token` varchar(191) DEFAULT NULL,
  `refferal_code` varchar(191) DEFAULT NULL,
  `referred_by` int(10) UNSIGNED DEFAULT NULL,
  `rating` double(8,2) NOT NULL DEFAULT 0.00,
  `lang` varchar(191) DEFAULT NULL,
  `rating_total` double(8,2) NOT NULL DEFAULT 0.00,
  `no_of_ratings` int(11) NOT NULL DEFAULT 0,
  `login_by` enum('android','ios') DEFAULT NULL,
  `remember_token` varchar(100) DEFAULT NULL,
  `last_known_ip` varchar(45) DEFAULT NULL,
  `last_login_at` timestamp NULL DEFAULT NULL,
  `social_provider` varchar(191) DEFAULT NULL,
  `is_bid_app` tinyint(1) NOT NULL DEFAULT 0,
  `social_nickname` varchar(191) DEFAULT NULL,
  `social_id` varchar(191) DEFAULT NULL,
  `social_token` longtext DEFAULT NULL,
  `social_token_secret` longtext DEFAULT NULL,
  `social_refresh_token` longtext DEFAULT NULL,
  `social_expires_in` varchar(191) DEFAULT NULL,
  `social_avatar` varchar(191) DEFAULT NULL,
  `social_avatar_original` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `users` (`id`, `name`, `company_key`, `username`, `email`, `password`, `mobile`, `profile_picture`, `country`, `timezone`, `active`, `email_confirmed`, `mobile_confirmed`, `email_confirmation_token`, `fcm_token`, `apn_token`, `refferal_code`, `referred_by`, `rating`, `lang`, `rating_total`, `no_of_ratings`, `login_by`, `remember_token`, `last_known_ip`, `last_login_at`, `social_provider`, `is_bid_app`, `social_nickname`, `social_id`, `social_token`, `social_token_secret`, `social_refresh_token`, `social_expires_in`, `social_avatar`, `social_avatar_original`, `created_at`, `updated_at`) VALUES
(1, 'Master', NULL, NULL, 'mira@mxgrab.com', '$2y$10$q9vnVzGKs9cFOf3lP6T1fuWMVMvpwodkN1vd9KvL8dFECqluHxn7S', '9999999999', NULL, NULL, NULL, 1, 0, 1, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, 0.00, 0, NULL, NULL, '152.58.184.130', '2024-10-04 07:06:10', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-08 03:14:21', '2024-10-04 07:06:10'),
(2, 'Admin ', NULL, NULL, 'admin@demo.com', '$2y$10$TWCCTL6RBWMqzAewt/3Bju9Su24cDaGmKS.OOuYAblao6a3GpKtTm', '9999999998', NULL, 102, 'Asia/Kolkata', 1, 0, 1, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, 0.00, 0, NULL, NULL, '103.201.151.122', '2024-10-04 07:00:45', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-08 03:47:43', '2024-10-04 07:00:45'),
(3, 'Driver Demo', NULL, NULL, 'driver@demo.com', '$2y$10$eIWMJZbVYA3lS.5exp0AwOS2dx35moGtIrbjFLUSTPcwGwyF4fHmS', '9876543211', NULL, 102, NULL, 1, 0, 1, NULL, 'fHovJFkbQS-a6D4XkYPpng:APA91bFp22LceLNmZ3VFoxEwDpr9Rdvd1R3zAICPP7X487ttkemFDmSCvu1G_hDyx4aqGX0nYCYp2QC5i5QcDLECnENeqtFBGOKJ42y5KkNBgf_tUUjMaMkPbJJ07udTNFIabltfZLDG', NULL, '3zYGhF', NULL, 4.56, NULL, 41.00, 9, 'android', NULL, '27.59.76.136', '2024-08-30 14:17:53', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-08 03:57:42', '2024-08-30 14:19:06'),
(4, 'User Demo', NULL, NULL, 'user@demo.com', '$2y$10$vb5D31S5z4tXLvUK1yML3eW6CW.jKbuQMdaGfDCC99qh.aZ4WDcA2', '9876543210', NULL, 102, 'Asia/Calcutta', 1, 0, 1, NULL, 'eGyuRlRrRm2FQEOoI-5P1R:APA91bHeHLoHz_IWSAIlu8HgYDN4B261LVNIb5fAKDAXGKMSqUMnTUAE9u2i0rvrmDqPFm-VKevzeF0P4G4TAAyE4Z4IvsHN1IMsP9kqsLOEgtYjPC2X5Xa_1ZriuZzeUzQGGOs5L24c', NULL, 'z5Uk9b', NULL, 4.09, NULL, 45.00, 11, 'android', NULL, '156.221.149.240', '2024-09-01 17:01:59', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-08 04:01:01', '2024-09-01 17:10:41'),
(5, 'Taxi Dispatcher ', NULL, NULL, 'taxidispatcher@demo.com', '$2y$10$QUl2BbceJo9c2u/B5eKk1.atPy4NMMf5MAPcTrdmpeABn.2qgd3H.', '9999999991', NULL, 102, 'Asia/Calcutta', 1, 0, 1, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, 0.00, 0, NULL, NULL, '110.226.183.251', '2024-10-03 02:45:48', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-20 05:00:35', '2024-10-03 02:45:48'),
(6, 'Delivery Dispatcher ', NULL, NULL, 'deliverydispatcher@demo.com', '$2y$10$HMhp6XMs3KsBiKpCLrZ94eLvgZVzbdycRhGvPiZQRvfXl80jwXEo2', '9999999992', NULL, 102, 'Asia/Kolkata', 1, 0, 1, NULL, NULL, NULL, NULL, NULL, 0.00, NULL, 0.00, 0, NULL, NULL, '110.226.183.251', '2024-10-03 02:56:31', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-20 05:03:48', '2024-10-03 02:56:31'),
(7, 'Robert', NULL, NULL, 'rep.beta@gmx.com', NULL, '4692487254', 'BR73iMU6aMPzpJFvKE4KjpQEZnGK3Ej2ubFvuRY0.jpg', 5, NULL, 1, 0, 1, NULL, 'd4lZreY0h0yygNZhuPfE_T:APA91bHvwTOyCnSFGmnnh_1iDb1TA69HNraayR8jbHbLzQH0jTPPkvS392RJRAwCdC3zAYMDF1_Flv8yV11TUTmHmjsY5S-pT3766_kaOZu2qvJ6wpMQgG4JU9A1bpWggWgaCZ1JEb7Q', NULL, '4BYVUX', NULL, 0.00, 'en', 0.00, 0, 'ios', NULL, '76.184.215.116', '2024-02-06 01:16:37', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-06 01:16:37', '2024-02-06 01:16:37'),
(8, 'use2r', NULL, NULL, 'user43@demo.com', NULL, '9876543212', NULL, 102, 'Asia/Kolkata', 1, 0, 1, NULL, 'dJ8obCz9TnCP_gdTQFwX4N:APA91bFd1GoxusCC5PuFOZio0H4AbXl1gCFeM2jQzZQ4zDc1c3Gmn2zdZGO2Qyn4yoE_Dh_JgrhrpjGUjti9yP0Fxc-g5DaqT3zTwnAyUB2kOzVNrSUVzs-w0fxRAMyYowVM-_kiu3H2', NULL, '5fgDes', NULL, 0.00, NULL, 0.00, 0, 'android', NULL, '182.69.176.144', '2024-02-26 04:43:44', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-02-26 04:43:43', '2024-02-26 04:43:44'),
(9, 'Fleet', NULL, NULL, 'fleet@demo.com', '$2y$10$mE0eypCd1b1kVqJaOhGZ1uobqlZVWMp6JKuRhRGEZiKPxdDD.qL.q', '9696969696', NULL, NULL, NULL, 1, 0, 1, '$2y$10$l8vsSS9nW2UqQx4Tzmy01.iUceGWakHO4kpr5Cu4h5IBLJV8Z123m', NULL, NULL, NULL, NULL, 0.00, NULL, 0.00, 0, NULL, NULL, '110.226.183.251', '2024-10-03 02:52:57', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-03-18 11:12:26', '2024-10-03 02:52:57'),
(10, 'Fleet', NULL, NULL, 'fleet@demo.com', '$2y$10$aDNcUZ1tpyZEp2siaP1.Su2kzJfnDciVlulX5JPXO6L6nfM5V0b.i', '1234567898', NULL, 102, NULL, 1, 0, 1, NULL, NULL, NULL, 'WhrA84', NULL, 0.00, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-03-31 07:40:13', '2024-03-31 07:40:13'),
(11, 'Fleet', NULL, NULL, 'fleetdemo@mograb.com', '$2y$10$Rmh36/6eFEsqxcUAYKQlv.5VNerOlOtvNvANRFpSziCJMj4bQkR6q', '1234567890', NULL, NULL, NULL, 1, 0, 1, '$2y$10$iOl6GJovxUAorK30okFX3OCwIaAZu.m1OgbobWpXLch31oLQ1jpf.', NULL, NULL, NULL, NULL, 0.00, NULL, 0.00, 0, NULL, NULL, '152.58.129.224', '2024-03-31 07:51:05', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-03-31 07:49:35', '2024-03-31 07:51:05'),
(12, 'hgg', NULL, NULL, 'noor.91101@gmail.com', NULL, '925243296', NULL, 124, NULL, 1, 0, 1, NULL, 'de05XqKMSdGS3_PpX0bvBx:APA91bGk6oBl21tzre4uThsWAo4UKhgiQuib2eUz7j_0VgJr2rrI2QSNkmP61rU9fQX4cmfilkRyptB5Vh9-qKlNXKlPIyi98pY6XX42wI44xD_X4bSJ-Q2yr2SAxLgPm-aIoQlyXQeF', NULL, '1dssJV', NULL, 0.00, 'en', 0.00, 0, 'android', NULL, '102.164.97.71', '2024-04-05 20:35:49', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-04-05 20:35:49', '2024-04-05 20:35:49'),
(13, 'y', NULL, NULL, 'h@yahoo.fr', NULL, '621220475', NULL, 102, NULL, 1, 0, 1, NULL, 'dcnOx8IVRMeCEU6r80nHhv:APA91bEHvrsgW4opurF-LC1Z6RIa-opKeTWSKRBw7C6WZmDJ7DTmBQha_j14ickEQxLwO-0Vpq8-Tqr4WkN5ISM7pvzn7mr5K7xvjOx4NDj29c1XkdD5omupr_Sp1OKddXkyL2SmuXaJ', NULL, 'f84DKa', NULL, 0.00, 'fr', 0.00, 0, 'android', NULL, '93.22.39.248', '2024-04-15 19:24:43', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-04-15 19:24:43', '2024-04-15 19:24:43'),
(14, 'user demo', NULL, NULL, 'user1@demo.com', NULL, '1234567890', 'NBiMnDmGv30Pm5GJhWU0RPXJFEOu8hwcJ9BR6238.jpg', 102, 'Asia/Calcutta', 1, 0, 1, NULL, 'dG98_N6oSN2a-aR5mzxTSp:APA91bHM0HsnqSDElHljYdUjOd7XSD_ete9oY4fvivN6jjL7DvREhTOT6a8d3aIFCinJ_NQt_OgWcaq4xMxxFzY9gFZxRavDJvVOhO8GoxTiBKa9r-Q9SUy4MwtqDyX-UrS6CSPC7_9_', NULL, 'MzV98f', NULL, 4.00, 'en', 4.00, 1, 'android', NULL, '106.219.120.138', '2024-05-28 03:33:14', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-28 03:33:14', '2024-05-28 03:46:31'),
(15, 'driver test', NULL, NULL, 'driver6@demo.com', '$2y$10$EhLHN259wwb4UOzFPEXnJ.7cTgF2J0mu6e/n9lRrzoGqgJJbV/WH6', '8287093441', '4ZdOvkxhDbIjQkEeHO5QnXB7B2fm4rPboCsI79Ux.jpg', 102, 'Asia/Calcutta', 1, 0, 1, NULL, 'dQEa6g32RtqyvuuvAfyLOC:APA91bFjJBNkCEy1iaVTd-XaXr28ob5Ut0Xa6GqUwuehyIU-K4Ic2ZQ4xFZkeLDkm5c4yS7ME2pWklU0EJX8y-qRcW6yQq7oFxbOQ-Ewx6pEVE5nU9ujS4OYu5n9Jt0UFZ5ytJXPtBgh', NULL, '0PStk0', NULL, 4.00, 'en', 12.00, 3, 'android', NULL, '106.219.120.185', '2024-06-18 03:27:24', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-28 03:40:34', '2024-06-18 03:44:24'),
(16, 'abc', NULL, NULL, 'tdtraining11@gmail.com', NULL, '9154847968', 't6yOoayQZ79SJ5kQCXbgl8iLBlLOqM7ISDWJjJvk.jpg', 102, NULL, 1, 0, 1, NULL, 'e2DfygpTT32LX9QnJ4Z2-h:APA91bFTa7Yv_fiv5DuaUVKgNpTMaZRW66WcmDaKtyKcouz4G7Tb6xzTpTVD_3bKDD2nUI5I8J8QEbx15LexYum7h6HwFkscEBIG50mgt4iafsiOBkd_n2o0rmE2O1yt9mMhpoTBcnwu', NULL, 'TJA0vM', NULL, 0.00, 'en', 0.00, 0, 'android', NULL, '104.133.219.40', '2024-06-22 03:34:30', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-22 03:34:30', '2024-06-22 03:34:30'),
(17, 'neha', NULL, NULL, 'nehaaccn123@gmail.com', '$2y$10$Lo2rBJ5WKa2/3Vc0QqLBUeCqkbD4csc8IJDXqCTlBAWjJQ1RX00BC', '7019981944', NULL, 102, 'Asia/Calcutta', 1, 0, 1, NULL, 'erQTPIWwTdCNbj8orrgiZi:APA91bF498B-P3sxPne_icBXeG2fswY2bDiTiPL3t_X-IaulgLShpQUBRAZ4GnS-ASQswL4qVSp1Jp014XI3KM94FygC6D7hJ0VLrrv7XUg2yhqU7WUrS43cUPHToRux9ip1sNTJtALl', NULL, 'cryu6J', NULL, 0.00, 'en', 0.00, 0, 'android', NULL, '104.133.219.34', '2024-06-22 05:36:18', NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-22 05:36:17', '2024-06-22 05:36:18'),
(18, 'Dr. Benjamin Scott', NULL, NULL, 'user33@demo.com', '$2y$10$VtApQ6xw6ulgu3Gca6cVFupbFVFUFIxrQcse/p9lLAofU0MK9hBRe', '1234567895', NULL, 102, NULL, 1, 0, 1, NULL, NULL, NULL, '0TQnOm', NULL, 0.00, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-03 02:34:37', '2024-10-03 02:34:37'),
(19, 'Dr. Benjamin Scott2', NULL, NULL, 'user33@demo.com', '$2y$10$lkpmgLhmu7kxcLPL4bxyee80iVnrFvWjHEVxEVbCkOOKS2bVwW.Qi', '1234567866', NULL, 4, NULL, 1, 0, 1, NULL, NULL, NULL, 'ek95yY', NULL, 0.00, NULL, 0.00, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-03 02:38:17', '2024-10-03 02:38:17');

-- --------------------------------------------------------

--
-- Table structure for table `users_bank_info`
--

CREATE TABLE `users_bank_info` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `account_name` varchar(191) NOT NULL,
  `account_no` varchar(191) NOT NULL,
  `bank_code` varchar(191) NOT NULL,
  `bank_name` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `user_details`
--

CREATE TABLE `user_details` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `mobile` varchar(191) NOT NULL,
  `email` varchar(150) NOT NULL,
  `address` varchar(500) DEFAULT NULL,
  `state` varchar(50) DEFAULT NULL,
  `city` varchar(50) DEFAULT NULL,
  `country` int(10) UNSIGNED NOT NULL,
  `country_code` varchar(191) DEFAULT NULL,
  `gender` enum('male','fe-male','others') NOT NULL,
  `profile` varchar(191) DEFAULT NULL,
  `token` varchar(191) DEFAULT NULL,
  `token_expiry` timestamp NULL DEFAULT NULL,
  `device_token` varchar(191) DEFAULT NULL,
  `login_by` varchar(191) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `user_driver_notifications`
--

CREATE TABLE `user_driver_notifications` (
  `id` char(36) NOT NULL,
  `notify_id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `driver_id` int(10) UNSIGNED DEFAULT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `read_at` timestamp NULL DEFAULT NULL,
  `push_enum` varchar(191) DEFAULT NULL,
  `title` varchar(191) DEFAULT NULL,
  `body` longtext DEFAULT NULL,
  `image` varchar(191) DEFAULT NULL,
  `data` longtext DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `user_wallet`
--

CREATE TABLE `user_wallet` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `amount_added` double(10,2) NOT NULL DEFAULT 0.00,
  `amount_balance` double(10,2) NOT NULL DEFAULT 0.00,
  `amount_spent` double(10,2) NOT NULL DEFAULT 0.00,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `user_wallet`
--

INSERT INTO `user_wallet` (`id`, `user_id`, `amount_added`, `amount_balance`, `amount_spent`, `created_at`, `updated_at`) VALUES
('1a735bc7-92a6-46a9-a232-ba6d7ef31d0f', 13, 0.00, 0.00, 0.00, '2024-04-15 19:24:43', '2024-04-15 19:24:43'),
('6706a3f9-400d-497e-948f-a0c0b06606f9', 14, 0.00, 0.00, 0.00, '2024-05-28 03:33:14', '2024-05-28 03:33:14'),
('76a99326-e389-46aa-b5bf-4dadaab18b68', 12, 0.00, 0.00, 0.00, '2024-04-05 20:35:49', '2024-04-05 20:35:49'),
('780d09e3-401b-413d-b185-302f1680890d', 16, 0.00, 0.00, 0.00, '2024-06-22 03:34:30', '2024-06-22 03:34:30'),
('a8ab90a5-d0ce-4d96-9bf3-f799e244deaa', 7, 0.00, 0.00, 0.00, '2024-02-06 01:16:37', '2024-02-06 01:16:37');

-- --------------------------------------------------------

--
-- Table structure for table `user_wallet_history`
--

CREATE TABLE `user_wallet_history` (
  `id` char(36) NOT NULL,
  `user_id` int(10) UNSIGNED NOT NULL,
  `card_id` char(36) DEFAULT NULL,
  `request_id` char(36) DEFAULT NULL,
  `refferal_code` varchar(191) DEFAULT NULL,
  `transaction_id` varchar(191) DEFAULT NULL,
  `amount` double(10,2) NOT NULL DEFAULT 0.00,
  `conversion` varchar(191) DEFAULT NULL,
  `merchant` varchar(191) DEFAULT NULL,
  `remarks` varchar(191) DEFAULT NULL,
  `is_credit` tinyint(1) NOT NULL DEFAULT 0,
  `admin_id` char(36) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vehicle_types`
--

CREATE TABLE `vehicle_types` (
  `id` char(36) NOT NULL,
  `company_key` varchar(191) DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `icon` varchar(191) DEFAULT NULL,
  `icon_types_for` enum('taxi','truck','motor_bike') DEFAULT NULL,
  `trip_dispatch_type` enum('bidding','normal') DEFAULT NULL,
  `capacity` int(11) NOT NULL DEFAULT 0,
  `size` varchar(191) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `short_description` text DEFAULT NULL,
  `supported_vehicles` text DEFAULT NULL,
  `is_accept_share_ride` tinyint(1) NOT NULL DEFAULT 0,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `is_taxi` enum('taxi','delivery','both') DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `vehicle_types`
--

INSERT INTO `vehicle_types` (`id`, `company_key`, `name`, `icon`, `icon_types_for`, `trip_dispatch_type`, `capacity`, `size`, `description`, `short_description`, `supported_vehicles`, `is_accept_share_ride`, `active`, `created_at`, `updated_at`, `deleted_at`, `is_taxi`) VALUES
('55261fd7-b06b-4e64-aaf4-8bff56d00ec2', NULL, 'Van', '3GkzkJNXRKdQH4zPDqUXbN82pMdjBwXilTFZiMCM.jpg', 'taxi', 'normal', 6, NULL, 'Van', 'Van', 'Toyata', 0, 1, '2023-11-08 03:49:23', '2024-06-18 03:36:38', NULL, 'taxi'),
('9cd9db3b-74c3-41ca-850b-9b4566093ce5', NULL, 'Mini', '3xkNu4aE0o0JAi2UwhbDxXMUpGEkgoBAQBoffIXg.jpg', 'taxi', 'normal', 3, NULL, 'Mini', 'Mini', 'Alto', 0, 1, '2023-11-09 10:08:38', '2024-06-18 03:36:53', NULL, 'taxi'),
('b83fd7f3-a4ac-45a0-9772-d58dcc385a44', NULL, 'Moto', 'BI8wl7reLL2MNpQm7U8ZkLImDPupye5AEW6aWKsc.jpg', 'motor_bike', 'normal', 50, '1', 'Bike', 'Bike', 'Honda', 0, 1, '2023-11-08 03:50:21', '2024-06-18 03:37:12', NULL, 'delivery'),
('fb9233cb-8076-4bf1-bc6d-858f175cd268', NULL, 'Moto', 'XVlJmnY3U93Bzt7IigNLAdj9AxB0IfahXyFcfl44.jpg', 'motor_bike', 'normal', 1, NULL, 'Motobike', 'Motobike', 'Honda', 0, 1, '2023-11-21 02:02:27', '2024-06-18 03:37:25', NULL, 'taxi');

-- --------------------------------------------------------

--
-- Table structure for table `wallet_withdrawal_requests`
--

CREATE TABLE `wallet_withdrawal_requests` (
  `id` int(10) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `driver_id` int(10) UNSIGNED DEFAULT NULL,
  `owner_id` char(36) DEFAULT NULL,
  `requested_amount` double NOT NULL DEFAULT 0,
  `requested_currency` varchar(191) DEFAULT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `websockets_statistics_entries`
--

CREATE TABLE `websockets_statistics_entries` (
  `id` int(10) UNSIGNED NOT NULL,
  `app_id` varchar(191) NOT NULL,
  `peak_connection_count` int(11) NOT NULL,
  `websocket_message_count` int(11) NOT NULL,
  `api_message_count` int(11) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `zones`
--

CREATE TABLE `zones` (
  `id` char(36) NOT NULL,
  `company_key` varchar(191) DEFAULT NULL,
  `service_location_id` char(36) NOT NULL,
  `name` varchar(191) NOT NULL,
  `unit` tinyint(4) NOT NULL,
  `coordinates` multipolygon DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `default_vehicle_type` char(36) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `lat` double(15,8) NOT NULL DEFAULT 11.01595600,
  `lng` double(15,8) NOT NULL DEFAULT 76.96898500,
  `default_vehicle_type_for_delivery` char(36) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `zones`
--

INSERT INTO `zones` (`id`, `company_key`, `service_location_id`, `name`, `unit`, `coordinates`, `active`, `default_vehicle_type`, `created_at`, `updated_at`, `lat`, `lng`, `default_vehicle_type_for_delivery`) VALUES
('3acdd416-7aae-490e-b489-307b151d06b0', NULL, '63e81adf-18af-4aca-a644-26e3f23928a1', 'World', 1, 0x000000000106000000010000000103000000010000001100000086a671f0ef3518c0a9e3c8ae82a4544017350efebdda4fc09ed3e1dee8215540238d837f2fb564c023b3c6ad39c25140238d837f2f3c65c0f4fd1266c5014d408c1a07ff5eac54c0f1e8525ae06c33c08c1a07ff5e7153c0c954e12fbb524ec05dd438f8f7922bc09895a50716ff37c0d295e303845e3540ec7eeae7fc4444c074e5f800a186524038b89526b3f827c0dd727c8050c16240267d3a4f110948c0dd727c80d0f36440a0771117240e36c0dd727c80d0c96140e0b7f374a2323c40238d837f2f9665c0dd9f752541e74f40238d837f2f6965c091395650a2a45140dd727c8050866140bd9e98b7a28b534074e5f800a13a5340a9e3c8ae82a4544086a671f0ef3518c0a9e3c8ae82a45440, 1, '55261fd7-b06b-4e64-aaf4-8bff56d00ec2', '2024-05-28 03:32:07', '2024-05-28 03:33:49', 82.57047624, -6.05267311, 'b83fd7f3-a4ac-45a0-9772-d58dcc385a44');

-- --------------------------------------------------------

--
-- Table structure for table `zone_bounds`
--

CREATE TABLE `zone_bounds` (
  `id` char(36) NOT NULL,
  `zone_id` char(36) NOT NULL,
  `north` double(8,2) DEFAULT NULL,
  `east` double(8,2) DEFAULT NULL,
  `south` double(8,2) DEFAULT NULL,
  `west` double(8,2) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `zone_surge_prices`
--

CREATE TABLE `zone_surge_prices` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `zone_id` char(36) NOT NULL,
  `start_time` time NOT NULL,
  `end_time` time NOT NULL,
  `value` int(11) NOT NULL COMMENT 'In percentage',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `zone_types`
--

CREATE TABLE `zone_types` (
  `id` char(36) NOT NULL,
  `zone_id` char(36) NOT NULL,
  `type_id` char(36) NOT NULL,
  `bill_status` tinyint(1) NOT NULL DEFAULT 0 COMMENT '0 => Not show,1 => show bill',
  `transport_type` enum('taxi','delivery','both') DEFAULT NULL,
  `payment_type` varchar(191) NOT NULL COMMENT '1 => Card,2 => Cash,3 => Wallet',
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `zone_types`
--

INSERT INTO `zone_types` (`id`, `zone_id`, `type_id`, `bill_status`, `transport_type`, `payment_type`, `active`, `created_at`, `updated_at`, `deleted_at`) VALUES
('02e7aa91-13d9-4265-9a39-b93c13739426', '3acdd416-7aae-490e-b489-307b151d06b0', '55261fd7-b06b-4e64-aaf4-8bff56d00ec2', 1, 'taxi', 'cash,wallet', 1, '2024-05-28 03:32:42', '2024-05-28 03:32:42', NULL),
('0a4d6d64-c989-4b6f-bebd-8a347b43ba3e', '3acdd416-7aae-490e-b489-307b151d06b0', '9cd9db3b-74c3-41ca-850b-9b4566093ce5', 1, 'taxi', 'cash,wallet', 1, '2024-05-28 03:33:09', '2024-05-28 03:33:09', NULL),
('1f344f12-f698-425c-a5b2-0a02d05cd863', '94208f65-01c9-4209-9d4b-69c581be6090', '9cd9db3b-74c3-41ca-850b-9b4566093ce5', 1, 'taxi', 'cash,wallet', 1, '2023-11-09 10:23:14', '2023-11-09 10:23:14', NULL),
('41316fb9-32b2-41b8-a99b-ed0927f79d08', 'ba693951-e0a7-40ee-b0c3-ce35f26db286', '9cd9db3b-74c3-41ca-850b-9b4566093ce5', 1, 'both', 'cash,wallet', 1, '2023-11-09 10:09:54', '2023-11-09 10:09:54', NULL),
('6e6e1892-c5f6-4450-8990-2d98d20124fa', '3acdd416-7aae-490e-b489-307b151d06b0', 'fb9233cb-8076-4bf1-bc6d-858f175cd268', 1, 'taxi', 'cash,wallet', 1, '2024-05-28 03:33:29', '2024-05-28 03:33:29', NULL),
('df911667-1c1f-4c5d-9c64-63266080bb4f', '3acdd416-7aae-490e-b489-307b151d06b0', 'b83fd7f3-a4ac-45a0-9772-d58dcc385a44', 1, 'delivery', 'cash,wallet', 1, '2024-05-28 03:33:49', '2024-05-28 03:33:49', NULL),
('f9abc022-152a-46d9-9339-7ab817040cfb', '94208f65-01c9-4209-9d4b-69c581be6090', '55261fd7-b06b-4e64-aaf4-8bff56d00ec2', 1, 'taxi', 'cash,wallet', 1, '2023-11-08 03:56:19', '2023-11-08 03:56:19', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `zone_type_package_prices`
--

CREATE TABLE `zone_type_package_prices` (
  `id` char(36) NOT NULL,
  `zone_type_id` char(36) NOT NULL,
  `zone_id` char(36) DEFAULT NULL,
  `base_price` double(10,2) NOT NULL DEFAULT 0.00,
  `package_type_id` varchar(191) NOT NULL,
  `distance_price_per_km` varchar(191) NOT NULL,
  `time_price_per_min` varchar(191) NOT NULL,
  `cancellation_fee` varchar(191) NOT NULL,
  `free_distance` varchar(191) NOT NULL,
  `free_min` varchar(191) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `zone_type_package_prices`
--

INSERT INTO `zone_type_package_prices` (`id`, `zone_type_id`, `zone_id`, `base_price`, `package_type_id`, `distance_price_per_km`, `time_price_per_min`, `cancellation_fee`, `free_distance`, `free_min`, `active`, `created_at`, `updated_at`, `deleted_at`) VALUES
('2aa37a07-1d87-4297-a2fb-ead743e525b1', 'df911667-1c1f-4c5d-9c64-63266080bb4f', '3acdd416-7aae-490e-b489-307b151d06b0', 23.00, '1', '10', '23', '100', '3', '20', 1, '2024-10-01 10:29:20', '2024-10-01 10:29:26', '2024-10-01 10:29:26');

-- --------------------------------------------------------

--
-- Table structure for table `zone_type_price`
--

CREATE TABLE `zone_type_price` (
  `id` char(36) NOT NULL,
  `zone_type_id` char(36) NOT NULL,
  `price_type` int(11) DEFAULT NULL COMMENT '1 => Ridenow,2 => RideLater',
  `base_price` double(10,2) NOT NULL DEFAULT 0.00,
  `base_distance` int(11) NOT NULL,
  `price_per_distance` double(10,2) NOT NULL DEFAULT 0.00,
  `free_waiting_time_in_mins_before_trip_start` int(11) NOT NULL DEFAULT 0,
  `free_waiting_time_in_mins_after_trip_start` int(11) NOT NULL DEFAULT 0,
  `waiting_charge` double(10,2) NOT NULL DEFAULT 0.00,
  `price_per_time` double(10,2) NOT NULL DEFAULT 0.00,
  `cancellation_fee` double(10,2) NOT NULL DEFAULT 0.00,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `zone_type_price`
--

INSERT INTO `zone_type_price` (`id`, `zone_type_id`, `price_type`, `base_price`, `base_distance`, `price_per_distance`, `free_waiting_time_in_mins_before_trip_start`, `free_waiting_time_in_mins_after_trip_start`, `waiting_charge`, `price_per_time`, `cancellation_fee`, `active`, `created_at`, `updated_at`, `deleted_at`) VALUES
('0611101d-05bf-418a-a55c-83dc944b15f3', '02e7aa91-13d9-4265-9a39-b93c13739426', 1, 5.00, 5, 5.00, 5, 5, 5.00, 5.00, 5.00, 1, '2024-05-28 03:32:42', '2024-05-28 03:32:42', NULL),
('33b7918e-2438-4541-973c-fd24af81b529', '6e6e1892-c5f6-4450-8990-2d98d20124fa', 2, 5.00, 5, 5.00, 5, 5, 5.00, 5.00, 5.00, 1, '2024-05-28 03:33:29', '2024-05-28 03:33:29', NULL),
('53bca693-2d58-4822-9d44-f44fb901c0fa', '0a4d6d64-c989-4b6f-bebd-8a347b43ba3e', 1, 5.00, 5, 5.00, 5, 5, 5.00, 5.00, 5.00, 1, '2024-05-28 03:33:09', '2024-05-28 03:33:09', NULL),
('6aaf224e-193a-424d-8929-741147c6f5c4', '6e6e1892-c5f6-4450-8990-2d98d20124fa', 1, 5.00, 5, 5.00, 5, 5, 5.00, 5.00, 5.00, 1, '2024-05-28 03:33:29', '2024-05-28 03:33:29', NULL),
('81482ad2-203e-47e8-9cdb-c41cd6644852', 'df911667-1c1f-4c5d-9c64-63266080bb4f', 1, 5.00, 5, 5.00, 5, 5, 5.00, 5.00, 5.00, 1, '2024-05-28 03:33:49', '2024-05-28 03:33:49', NULL),
('8fb0925d-f01d-4a5b-82f4-af2887b70f25', '02e7aa91-13d9-4265-9a39-b93c13739426', 2, 5.00, 5, 5.00, 5, 5, 5.00, 5.00, 5.00, 1, '2024-05-28 03:32:42', '2024-05-28 03:32:42', NULL),
('bbaa0810-190c-4c9e-b1c1-5564cfea7027', 'df911667-1c1f-4c5d-9c64-63266080bb4f', 2, 5.00, 5, 5.00, 5, 5, 5.00, 5.00, 5.00, 1, '2024-05-28 03:33:49', '2024-05-28 03:33:49', NULL),
('e33e783e-3e2a-4579-ad95-df95dde6c27e', '0a4d6d64-c989-4b6f-bebd-8a347b43ba3e', 2, 5.00, 5, 5.00, 5, 5, 5.00, 5.00, 5.00, 1, '2024-05-28 03:33:09', '2024-05-28 03:33:09', NULL);

--
-- Indexes for dumped tables
--

--
-- Indexes for table `adhocs`
--
ALTER TABLE `adhocs`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `adhoc_users`
--
ALTER TABLE `adhoc_users`
  ADD PRIMARY KEY (`id`),
  ADD KEY `adhoc_users_request_id_foreign` (`request_id`);

--
-- Indexes for table `admin_details`
--
ALTER TABLE `admin_details`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `admin_details_mobile_unique` (`mobile`),
  ADD KEY `admin_details_user_id_foreign` (`user_id`),
  ADD KEY `admin_details_service_location_id_foreign` (`service_location_id`);

--
-- Indexes for table `airports`
--
ALTER TABLE `airports`
  ADD PRIMARY KEY (`id`),
  ADD KEY `airports_service_location_id_foreign` (`service_location_id`);

--
-- Indexes for table `banner_images`
--
ALTER TABLE `banner_images`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `cancellation_reasons`
--
ALTER TABLE `cancellation_reasons`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `card_info`
--
ALTER TABLE `card_info`
  ADD PRIMARY KEY (`id`),
  ADD KEY `card_info_user_id_foreign` (`user_id`);

--
-- Indexes for table `car_makes`
--
ALTER TABLE `car_makes`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `car_models`
--
ALTER TABLE `car_models`
  ADD PRIMARY KEY (`id`),
  ADD KEY `car_models_make_id_foreign` (`make_id`);

--
-- Indexes for table `chats`
--
ALTER TABLE `chats`
  ADD PRIMARY KEY (`id`),
  ADD KEY `chats_request_id_foreign` (`request_id`),
  ADD KEY `chats_user_id_foreign` (`user_id`);

--
-- Indexes for table `cities`
--
ALTER TABLE `cities`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `cities_slug_unique` (`slug`),
  ADD KEY `cities_state_id_index` (`state_id`);

--
-- Indexes for table `companies`
--
ALTER TABLE `companies`
  ADD PRIMARY KEY (`id`),
  ADD KEY `companies_admin_id_foreign` (`admin_id`),
  ADD KEY `companies_country_foreign` (`country`);

--
-- Indexes for table `complaints`
--
ALTER TABLE `complaints`
  ADD PRIMARY KEY (`id`),
  ADD KEY `complaints_user_id_foreign` (`user_id`),
  ADD KEY `complaints_driver_id_foreign` (`driver_id`),
  ADD KEY `complaints_complaint_title_id_foreign` (`complaint_title_id`),
  ADD KEY `complaints_owner_id_foreign` (`owner_id`);

--
-- Indexes for table `complaint_titles`
--
ALTER TABLE `complaint_titles`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `countries`
--
ALTER TABLE `countries`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `developers`
--
ALTER TABLE `developers`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `developers_mobile_unique` (`mobile`),
  ADD KEY `developers_user_id_foreign` (`user_id`);

--
-- Indexes for table `distance_matrixes`
--
ALTER TABLE `distance_matrixes`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `drivers`
--
ALTER TABLE `drivers`
  ADD PRIMARY KEY (`id`),
  ADD KEY `drivers_user_id_foreign` (`user_id`),
  ADD KEY `drivers_car_make_foreign` (`car_make`),
  ADD KEY `drivers_car_model_foreign` (`car_model`),
  ADD KEY `drivers_country_foreign` (`country`),
  ADD KEY `drivers_vehicle_type_foreign` (`vehicle_type`),
  ADD KEY `drivers_service_location_id_foreign` (`service_location_id`),
  ADD KEY `drivers_owner_id_foreign` (`owner_id`),
  ADD KEY `drivers_fleet_id_foreign` (`fleet_id`);

--
-- Indexes for table `driver_availabilities`
--
ALTER TABLE `driver_availabilities`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `driver_details`
--
ALTER TABLE `driver_details`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_details_company_foreign` (`company`),
  ADD KEY `driver_details_current_zone_foreign` (`current_zone`),
  ADD KEY `driver_details_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `driver_documents`
--
ALTER TABLE `driver_documents`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_documents_driver_id_foreign` (`driver_id`),
  ADD KEY `driver_documents_document_id_foreign` (`document_id`);

--
-- Indexes for table `driver_enabled_routes`
--
ALTER TABLE `driver_enabled_routes`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_enabled_routes_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `driver_needed_documents`
--
ALTER TABLE `driver_needed_documents`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `driver_privileged_vehicles`
--
ALTER TABLE `driver_privileged_vehicles`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_privileged_vehicles_owner_id_foreign` (`owner_id`),
  ADD KEY `driver_privileged_vehicles_driver_id_foreign` (`driver_id`),
  ADD KEY `driver_privileged_vehicles_fleet_id_foreign` (`fleet_id`);

--
-- Indexes for table `driver_rejected_requests`
--
ALTER TABLE `driver_rejected_requests`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_rejected_requests_request_id_foreign` (`request_id`),
  ADD KEY `driver_rejected_requests_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `driver_subscriptions`
--
ALTER TABLE `driver_subscriptions`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_subscriptions_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `driver_vehicle_types`
--
ALTER TABLE `driver_vehicle_types`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_vehicle_types_vehicle_type_foreign` (`vehicle_type`),
  ADD KEY `driver_vehicle_types_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `driver_wallet`
--
ALTER TABLE `driver_wallet`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_wallet_user_id_foreign` (`user_id`);

--
-- Indexes for table `driver_wallet_history`
--
ALTER TABLE `driver_wallet_history`
  ADD PRIMARY KEY (`id`),
  ADD KEY `driver_wallet_history_card_id_foreign` (`card_id`),
  ADD KEY `driver_wallet_history_user_id_foreign` (`user_id`),
  ADD KEY `driver_wallet_history_admin_id_foreign` (`admin_id`),
  ADD KEY `driver_wallet_history_request_id_foreign` (`request_id`);

--
-- Indexes for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `faqs`
--
ALTER TABLE `faqs`
  ADD PRIMARY KEY (`id`),
  ADD KEY `faqs_service_location_id_foreign` (`service_location_id`);

--
-- Indexes for table `favorite_places`
--
ALTER TABLE `favorite_places`
  ADD PRIMARY KEY (`id`),
  ADD KEY `favorite_places_user_id_foreign` (`user_id`);

--
-- Indexes for table `favourite_locations`
--
ALTER TABLE `favourite_locations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `favourite_locations_user_id_foreign` (`user_id`);

--
-- Indexes for table `fleets`
--
ALTER TABLE `fleets`
  ADD PRIMARY KEY (`id`),
  ADD KEY `fleets_owner_id_foreign` (`owner_id`),
  ADD KEY `fleets_vehicle_type_foreign` (`vehicle_type`),
  ADD KEY `fleets_brand_foreign` (`brand`),
  ADD KEY `fleets_model_foreign` (`model`),
  ADD KEY `fleets_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `fleet_documents`
--
ALTER TABLE `fleet_documents`
  ADD PRIMARY KEY (`id`),
  ADD KEY `fleet_documents_fleet_id_foreign` (`fleet_id`),
  ADD KEY `fleet_documents_document_id_foreign` (`document_id`);

--
-- Indexes for table `fleet_needed_documents`
--
ALTER TABLE `fleet_needed_documents`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `goods_types`
--
ALTER TABLE `goods_types`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `jobs`
--
ALTER TABLE `jobs`
  ADD PRIMARY KEY (`id`),
  ADD KEY `jobs_queue_reserved_at_index` (`queue`,`reserved_at`);

--
-- Indexes for table `landingpagecms`
--
ALTER TABLE `landingpagecms`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `linked_social_accounts`
--
ALTER TABLE `linked_social_accounts`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `linked_social_accounts_provider_id_unique` (`provider_id`);

--
-- Indexes for table `ltm_translations`
--
ALTER TABLE `ltm_translations`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `mail_otp_verifications`
--
ALTER TABLE `mail_otp_verifications`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `mail_otp_verifications_email_unique` (`email`);

--
-- Indexes for table `mail_templates`
--
ALTER TABLE `mail_templates`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `mobile_builds`
--
ALTER TABLE `mobile_builds`
  ADD PRIMARY KEY (`id`),
  ADD KEY `mobile_builds_project_id_foreign` (`project_id`),
  ADD KEY `mobile_builds_flavour_id_foreign` (`flavour_id`);

--
-- Indexes for table `mobile_otp_verifications`
--
ALTER TABLE `mobile_otp_verifications`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `mobile_otp_verifications_mobile_unique` (`mobile`);

--
-- Indexes for table `notifications`
--
ALTER TABLE `notifications`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `oauth_access_tokens`
--
ALTER TABLE `oauth_access_tokens`
  ADD PRIMARY KEY (`id`),
  ADD KEY `oauth_access_tokens_user_id_index` (`user_id`);

--
-- Indexes for table `oauth_auth_codes`
--
ALTER TABLE `oauth_auth_codes`
  ADD PRIMARY KEY (`id`),
  ADD KEY `oauth_auth_codes_user_id_index` (`user_id`);

--
-- Indexes for table `oauth_clients`
--
ALTER TABLE `oauth_clients`
  ADD PRIMARY KEY (`id`),
  ADD KEY `oauth_clients_user_id_index` (`user_id`);

--
-- Indexes for table `oauth_personal_access_clients`
--
ALTER TABLE `oauth_personal_access_clients`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `oauth_refresh_tokens`
--
ALTER TABLE `oauth_refresh_tokens`
  ADD PRIMARY KEY (`id`),
  ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`);

--
-- Indexes for table `owners`
--
ALTER TABLE `owners`
  ADD PRIMARY KEY (`id`),
  ADD KEY `owners_user_id_foreign` (`user_id`),
  ADD KEY `owners_service_location_id_foreign` (`service_location_id`);

--
-- Indexes for table `owner_documents`
--
ALTER TABLE `owner_documents`
  ADD PRIMARY KEY (`id`),
  ADD KEY `owner_documents_owner_id_foreign` (`owner_id`),
  ADD KEY `owner_documents_document_id_foreign` (`document_id`);

--
-- Indexes for table `owner_hired_drivers`
--
ALTER TABLE `owner_hired_drivers`
  ADD PRIMARY KEY (`id`),
  ADD KEY `owner_hired_drivers_owner_id_foreign` (`owner_id`),
  ADD KEY `owner_hired_drivers_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `owner_needed_documents`
--
ALTER TABLE `owner_needed_documents`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `owner_wallets`
--
ALTER TABLE `owner_wallets`
  ADD PRIMARY KEY (`id`),
  ADD KEY `owner_wallets_user_id_foreign` (`user_id`);

--
-- Indexes for table `owner_wallet_histories`
--
ALTER TABLE `owner_wallet_histories`
  ADD PRIMARY KEY (`id`),
  ADD KEY `owner_wallet_histories_card_id_foreign` (`card_id`),
  ADD KEY `owner_wallet_histories_user_id_foreign` (`user_id`),
  ADD KEY `owner_wallet_histories_admin_id_foreign` (`admin_id`),
  ADD KEY `owner_wallet_histories_request_id_foreign` (`request_id`);

--
-- Indexes for table `package_types`
--
ALTER TABLE `package_types`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
  ADD UNIQUE KEY `password_resets_email_unique` (`email`);

--
-- Indexes for table `permissions`
--
ALTER TABLE `permissions`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `permissions_slug_unique` (`slug`);

--
-- Indexes for table `permission_role`
--
ALTER TABLE `permission_role`
  ADD PRIMARY KEY (`role_id`,`permission_id`),
  ADD KEY `permission_role_permission_id_foreign` (`permission_id`);

--
-- Indexes for table `personal_access_tokens`
--
ALTER TABLE `personal_access_tokens`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`),
  ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`);

--
-- Indexes for table `poc_clients`
--
ALTER TABLE `poc_clients`
  ADD PRIMARY KEY (`id`),
  ADD KEY `poc_clients_user_id_foreign` (`user_id`),
  ADD KEY `poc_clients_project_id_foreign` (`project_id`);

--
-- Indexes for table `projects`
--
ALTER TABLE `projects`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `project_flavours`
--
ALTER TABLE `project_flavours`
  ADD PRIMARY KEY (`id`),
  ADD KEY `project_flavours_project_id_foreign` (`project_id`);

--
-- Indexes for table `promo`
--
ALTER TABLE `promo`
  ADD PRIMARY KEY (`id`),
  ADD KEY `promo_service_location_id_foreign` (`service_location_id`);

--
-- Indexes for table `promo_users`
--
ALTER TABLE `promo_users`
  ADD PRIMARY KEY (`id`),
  ADD KEY `promo_users_promo_code_id_foreign` (`promo_code_id`),
  ADD KEY `promo_users_user_id_foreign` (`user_id`),
  ADD KEY `promo_users_request_id_foreign` (`request_id`);

--
-- Indexes for table `requests`
--
ALTER TABLE `requests`
  ADD PRIMARY KEY (`id`),
  ADD KEY `requests_user_id_foreign` (`user_id`),
  ADD KEY `requests_promo_id_foreign` (`promo_id`),
  ADD KEY `requests_dispatcher_id_foreign` (`dispatcher_id`),
  ADD KEY `requests_zone_type_id_foreign` (`zone_type_id`),
  ADD KEY `requests_driver_id_foreign` (`driver_id`),
  ADD KEY `requests_service_location_id_foreign` (`service_location_id`),
  ADD KEY `requests_rental_package_id_foreign` (`rental_package_id`),
  ADD KEY `requests_owner_id_foreign` (`owner_id`),
  ADD KEY `requests_fleet_id_foreign` (`fleet_id`),
  ADD KEY `requests_goods_type_id_foreign` (`goods_type_id`);

--
-- Indexes for table `requests_meta`
--
ALTER TABLE `requests_meta`
  ADD PRIMARY KEY (`id`),
  ADD KEY `requests_meta_request_id_foreign` (`request_id`),
  ADD KEY `requests_meta_user_id_foreign` (`user_id`),
  ADD KEY `requests_meta_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `request_bills`
--
ALTER TABLE `request_bills`
  ADD PRIMARY KEY (`id`),
  ADD KEY `request_bills_request_id_foreign` (`request_id`);

--
-- Indexes for table `request_cancellation_fees`
--
ALTER TABLE `request_cancellation_fees`
  ADD PRIMARY KEY (`id`),
  ADD KEY `request_cancellation_fees_paid_request_id_foreign` (`paid_request_id`),
  ADD KEY `request_cancellation_fees_request_id_foreign` (`request_id`),
  ADD KEY `request_cancellation_fees_user_id_foreign` (`user_id`),
  ADD KEY `request_cancellation_fees_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `request_delivery_proofs`
--
ALTER TABLE `request_delivery_proofs`
  ADD PRIMARY KEY (`id`),
  ADD KEY `request_delivery_proofs_request_id_foreign` (`request_id`);

--
-- Indexes for table `request_places`
--
ALTER TABLE `request_places`
  ADD PRIMARY KEY (`id`),
  ADD KEY `request_places_request_id_foreign` (`request_id`);

--
-- Indexes for table `request_ratings`
--
ALTER TABLE `request_ratings`
  ADD PRIMARY KEY (`id`),
  ADD KEY `request_ratings_request_id_foreign` (`request_id`),
  ADD KEY `request_ratings_user_id_foreign` (`user_id`),
  ADD KEY `request_ratings_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `request_stops`
--
ALTER TABLE `request_stops`
  ADD PRIMARY KEY (`id`),
  ADD KEY `request_stops_request_id_foreign` (`request_id`);

--
-- Indexes for table `roles`
--
ALTER TABLE `roles`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `roles_slug_unique` (`slug`);

--
-- Indexes for table `role_user`
--
ALTER TABLE `role_user`
  ADD PRIMARY KEY (`user_id`,`role_id`),
  ADD KEY `role_user_role_id_foreign` (`role_id`);

--
-- Indexes for table `service_locations`
--
ALTER TABLE `service_locations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `service_locations_country_foreign` (`country`);

--
-- Indexes for table `settings`
--
ALTER TABLE `settings`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `sos`
--
ALTER TABLE `sos`
  ADD PRIMARY KEY (`id`),
  ADD KEY `sos_service_location_id_foreign` (`service_location_id`),
  ADD KEY `sos_created_by_foreign` (`created_by`);

--
-- Indexes for table `states`
--
ALTER TABLE `states`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `states_slug_unique` (`slug`);

--
-- Indexes for table `time_zones`
--
ALTER TABLE `time_zones`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `users`
--
ALTER TABLE `users`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `users_username_unique` (`username`),
  ADD KEY `users_country_foreign` (`country`);

--
-- Indexes for table `users_bank_info`
--
ALTER TABLE `users_bank_info`
  ADD PRIMARY KEY (`id`),
  ADD KEY `users_bank_info_user_id_foreign` (`user_id`);

--
-- Indexes for table `user_details`
--
ALTER TABLE `user_details`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_details_user_id_foreign` (`user_id`),
  ADD KEY `user_details_country_foreign` (`country`);

--
-- Indexes for table `user_driver_notifications`
--
ALTER TABLE `user_driver_notifications`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_driver_notifications_notify_id_foreign` (`notify_id`),
  ADD KEY `user_driver_notifications_user_id_foreign` (`user_id`),
  ADD KEY `user_driver_notifications_driver_id_foreign` (`driver_id`);

--
-- Indexes for table `user_wallet`
--
ALTER TABLE `user_wallet`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_wallet_user_id_foreign` (`user_id`);

--
-- Indexes for table `user_wallet_history`
--
ALTER TABLE `user_wallet_history`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_wallet_history_card_id_foreign` (`card_id`),
  ADD KEY `user_wallet_history_user_id_foreign` (`user_id`),
  ADD KEY `user_wallet_history_admin_id_foreign` (`admin_id`),
  ADD KEY `user_wallet_history_request_id_foreign` (`request_id`);

--
-- Indexes for table `vehicle_types`
--
ALTER TABLE `vehicle_types`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `wallet_withdrawal_requests`
--
ALTER TABLE `wallet_withdrawal_requests`
  ADD PRIMARY KEY (`id`),
  ADD KEY `wallet_withdrawal_requests_driver_id_foreign` (`driver_id`),
  ADD KEY `wallet_withdrawal_requests_user_id_foreign` (`user_id`),
  ADD KEY `wallet_withdrawal_requests_owner_id_foreign` (`owner_id`);

--
-- Indexes for table `websockets_statistics_entries`
--
ALTER TABLE `websockets_statistics_entries`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `zones`
--
ALTER TABLE `zones`
  ADD PRIMARY KEY (`id`),
  ADD KEY `zones_service_location_id_foreign` (`service_location_id`);

--
-- Indexes for table `zone_bounds`
--
ALTER TABLE `zone_bounds`
  ADD PRIMARY KEY (`id`),
  ADD KEY `zone_bounds_zone_id_foreign` (`zone_id`);

--
-- Indexes for table `zone_surge_prices`
--
ALTER TABLE `zone_surge_prices`
  ADD PRIMARY KEY (`id`),
  ADD KEY `zone_surge_prices_zone_id_foreign` (`zone_id`);

--
-- Indexes for table `zone_types`
--
ALTER TABLE `zone_types`
  ADD PRIMARY KEY (`id`),
  ADD KEY `zone_types_zone_id_foreign` (`zone_id`),
  ADD KEY `zone_types_type_id_foreign` (`type_id`);

--
-- Indexes for table `zone_type_package_prices`
--
ALTER TABLE `zone_type_package_prices`
  ADD PRIMARY KEY (`id`),
  ADD KEY `zone_type_package_prices_zone_type_id_foreign` (`zone_type_id`),
  ADD KEY `zone_type_package_prices_zone_id_foreign` (`zone_id`);

--
-- Indexes for table `zone_type_price`
--
ALTER TABLE `zone_type_price`
  ADD PRIMARY KEY (`id`),
  ADD KEY `zone_type_price_zone_type_id_foreign` (`zone_type_id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `adhocs`
--
ALTER TABLE `adhocs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `adhoc_users`
--
ALTER TABLE `adhoc_users`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `car_makes`
--
ALTER TABLE `car_makes`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=56;

--
-- AUTO_INCREMENT for table `car_models`
--
ALTER TABLE `car_models`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=835;

--
-- AUTO_INCREMENT for table `countries`
--
ALTER TABLE `countries`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=247;

--
-- AUTO_INCREMENT for table `distance_matrixes`
--
ALTER TABLE `distance_matrixes`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=37;

--
-- AUTO_INCREMENT for table `drivers`
--
ALTER TABLE `drivers`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `driver_availabilities`
--
ALTER TABLE `driver_availabilities`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `driver_enabled_routes`
--
ALTER TABLE `driver_enabled_routes`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `driver_needed_documents`
--
ALTER TABLE `driver_needed_documents`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `driver_privileged_vehicles`
--
ALTER TABLE `driver_privileged_vehicles`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `driver_rejected_requests`
--
ALTER TABLE `driver_rejected_requests`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `driver_vehicle_types`
--
ALTER TABLE `driver_vehicle_types`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `favorite_places`
--
ALTER TABLE `favorite_places`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `favourite_locations`
--
ALTER TABLE `favourite_locations`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `fleet_needed_documents`
--
ALTER TABLE `fleet_needed_documents`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `goods_types`
--
ALTER TABLE `goods_types`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;

--
-- AUTO_INCREMENT for table `jobs`
--
ALTER TABLE `jobs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `landingpagecms`
--
ALTER TABLE `landingpagecms`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20;

--
-- AUTO_INCREMENT for table `linked_social_accounts`
--
ALTER TABLE `linked_social_accounts`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `ltm_translations`
--
ALTER TABLE `ltm_translations`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=181;

--
-- AUTO_INCREMENT for table `mobile_builds`
--
ALTER TABLE `mobile_builds`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `oauth_clients`
--
ALTER TABLE `oauth_clients`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `oauth_personal_access_clients`
--
ALTER TABLE `oauth_personal_access_clients`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `owner_hired_drivers`
--
ALTER TABLE `owner_hired_drivers`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `owner_needed_documents`
--
ALTER TABLE `owner_needed_documents`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `package_types`
--
ALTER TABLE `package_types`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `permissions`
--
ALTER TABLE `permissions`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=195;

--
-- AUTO_INCREMENT for table `personal_access_tokens`
--
ALTER TABLE `personal_access_tokens`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `projects`
--
ALTER TABLE `projects`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `project_flavours`
--
ALTER TABLE `project_flavours`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `promo_users`
--
ALTER TABLE `promo_users`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `requests_meta`
--
ALTER TABLE `requests_meta`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;

--
-- AUTO_INCREMENT for table `request_bills`
--
ALTER TABLE `request_bills`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;

--
-- AUTO_INCREMENT for table `request_cancellation_fees`
--
ALTER TABLE `request_cancellation_fees`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `request_delivery_proofs`
--
ALTER TABLE `request_delivery_proofs`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `request_places`
--
ALTER TABLE `request_places`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31;

--
-- AUTO_INCREMENT for table `request_ratings`
--
ALTER TABLE `request_ratings`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25;

--
-- AUTO_INCREMENT for table `request_stops`
--
ALTER TABLE `request_stops`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `roles`
--
ALTER TABLE `roles`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `settings`
--
ALTER TABLE `settings`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=89;

--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20;

--
-- AUTO_INCREMENT for table `wallet_withdrawal_requests`
--
ALTER TABLE `wallet_withdrawal_requests`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `websockets_statistics_entries`
--
ALTER TABLE `websockets_statistics_entries`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `zone_surge_prices`
--
ALTER TABLE `zone_surge_prices`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- Constraints for dumped tables
--

--
-- Constraints for table `adhoc_users`
--
ALTER TABLE `adhoc_users`
  ADD CONSTRAINT `adhoc_users_request_id_foreign` FOREIGN KEY (`request_id`) REFERENCES `requests` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `airports`
--
ALTER TABLE `airports`
  ADD CONSTRAINT `airports_service_location_id_foreign` FOREIGN KEY (`service_location_id`) REFERENCES `service_locations` (`id`) ON DELETE CASCADE;
COMMIT;

/*!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 */;
